From 8da57b069919dfccbc48c06d79be84f83293af54 Mon Sep 17 00:00:00 2001 From: Vincent Biret Date: Tue, 16 Apr 2024 14:16:51 -0400 Subject: [PATCH 01/25] - fixes extraneous new lines being added when incrementing version --- Scripts/incrementMinorVersion.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Scripts/incrementMinorVersion.ps1 b/Scripts/incrementMinorVersion.ps1 index c064199fb94..e7dbaf4cc1a 100644 --- a/Scripts/incrementMinorVersion.ps1 +++ b/Scripts/incrementMinorVersion.ps1 @@ -21,13 +21,13 @@ function Update-ReadmeVersion([string]$readmeFilePath, [version]$version) { $readmeLines = $readmeFileContent -split "`n" $readmeLines[$gradleLineNumber] = $readmeLines[$gradleLineNumber] -replace "\d{1,}\.\d{1,}\.\d{1,}", $version.ToString() $readmeFileContent = $readmeLines -join "`n" - Set-Content -Path $readmeFilePath $readmeFileContent + Set-Content -Path $readmeFilePath $readmeFileContent -NoNewline } function Update-TelemetryVersion([string]$telemetryFilePath, [version]$version) { $telemetryFileContent = Get-Content -Path $telemetryFilePath -Raw $telemetryFileContent = $telemetryFileContent -replace "\d{1,}\.\d{1,}\.\d{1,}", $version.ToString() - Set-Content -Path $telemetryFilePath $telemetryFileContent + Set-Content -Path $telemetryFilePath $telemetryFileContent -NoNewline } function Update-PackageVersion([string]$propertiesFilePath, [version]$version) { @@ -35,7 +35,7 @@ function Update-PackageVersion([string]$propertiesFilePath, [version]$version) { $propertiesFileContent = $propertiesFileContent -replace "mavenMajorVersion\s+=\s+\d{1,}", "mavenMajorVersion = $($version.Major)" $propertiesFileContent = $propertiesFileContent -replace "mavenMinorVersion\s+=\s+\d{1,}", "mavenMinorVersion = $($version.Minor)" $propertiesFileContent = $propertiesFileContent -replace "mavenPatchVersion\s+=\s+\d{1,}", "mavenPatchVersion = $($version.Build)" - Set-Content -Path $propertiesFilePath $propertiesFileContent + Set-Content -Path $propertiesFilePath $propertiesFileContent -NoNewline } function Get-CurrentTelemetryVersion([string]$telemetryFilePath) { $telemetryFileContent = Get-Content -Path $telemetryFilePath -Raw From 2fb3098cde7e74e373c7f9293634b3ade7dc172e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Apr 2024 05:15:25 +0000 Subject: [PATCH 02/25] Bump com.gradle:gradle-enterprise-gradle-plugin in /android Bumps com.gradle:gradle-enterprise-gradle-plugin from 3.17.1 to 3.17.2. --- updated-dependencies: - dependency-name: com.gradle:gradle-enterprise-gradle-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- android/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/build.gradle b/android/build.gradle index e6a7eebd80e..c2904c811e3 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -6,7 +6,7 @@ buildscript { } dependencies { - classpath "com.gradle:gradle-enterprise-gradle-plugin:3.17.1" + classpath "com.gradle:gradle-enterprise-gradle-plugin:3.17.2" classpath "gradle.plugin.com.github.viswaramamoorthy:gradle-util-plugins:0.1.0-RELEASE" classpath "com.github.ben-manes:gradle-versions-plugin:0.51.0" classpath "com.android.tools.build:gradle:8.3.2" From 79c65196cab7a5e297a150902833422bbfb97445 Mon Sep 17 00:00:00 2001 From: Caleb Kiage <747955+calebkiage@users.noreply.github.com> Date: Wed, 17 Apr 2024 23:51:50 +0300 Subject: [PATCH 03/25] ci: add release please bot --- .github/workflows/release-please.yml | 21 +++++++++++++++++++ .release-please-manifest.json | 3 +++ CHANGELOG.md | 9 -------- CONTRIBUTING.md | 31 ++++++++++++++++++++++++++++ gradle.properties | 6 ++++++ release-please-config.json | 29 ++++++++++++++++++++++++++ 6 files changed, 90 insertions(+), 9 deletions(-) create mode 100644 .github/workflows/release-please.yml create mode 100644 .release-please-manifest.json create mode 100644 release-please-config.json diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml new file mode 100644 index 00000000000..eb9f6d6006c --- /dev/null +++ b/.github/workflows/release-please.yml @@ -0,0 +1,21 @@ +on: + push: + branches: + - main + +permissions: + contents: write + pull-requests: write + +name: release-please + +jobs: + release-please: + runs-on: ubuntu-latest + steps: + - uses: google-github-actions/release-please-action@v4 + with: + token: ${{ secrets.RELEASE_PLEASE_TOKEN }} # TODO: Create this token with repo + config-file: release-please-config.json # Set to update gradle.properties & pom.xml + manifest-file: .release-please-manifest.json + target-branch: main diff --git a/.release-please-manifest.json b/.release-please-manifest.json new file mode 100644 index 00000000000..e3d38e8f1f7 --- /dev/null +++ b/.release-please-manifest.json @@ -0,0 +1,3 @@ +{ + ".": "6.6.0" +} diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a39488cf8b..d98af2b77dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,15 +2,6 @@ All notable changes to this project will be documented in this file. -The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), -and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). - -## [Unreleased] - -### Added - -### Changed - ## [6.6.0] - 2024-04-16 ### Added diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index b7a45fba211..8827dbcb773 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -25,6 +25,37 @@ Revisions of this nature will result in a 0.X.X change of the version number. All the code of the current repository is being generated automatically by the [SDK generator](https://github.com/microsoftgraph/MSGraph-SDK-Code-Generator/) in which any change must be reflected. +## Commit message format + +To support our automated release process, pull requests are required to follow the [Conventional Commit](https://www.conventionalcommits.org/en/v1.0.0/) +format. + +Each commit message consists of a **header**, an optional **body** and an optional **footer**. The header is the first line of the commit and +MUST have a **type** (see below for a list of types) and a **description**. An optional **scope** can be added to the header to give extra context. + +``` +[optional scope]: + + + + +``` + +The recommended commit types used are: + + - **feat** for feature updates (increments the _minor_ version) + - **fix** for bug fixes (increments the _patch_ version) + - **perf** for performance related changes e.g. optimizing an algorithm + - **refactor** for code refactoring changes + - **test** for test suite updates e.g. adding a test or fixing a test + - **style** for changes that don't affect the meaning of code. e.g. formatting changes + - **docs** for documentation updates e.g. ReadMe update or code documentation updates + - **build** for build system changes (gradle updates, external dependency updates) + - **ci** for CI configuration file changes e.g. updating a pipeline + - **chore** for miscallaneous non-sdk changesin the repo e.g. removing an unused file + +Adding a footer with the prefix **BREAKING CHANGE:** will cause an increment of the _major_ version. + ## Add yourself as a contributor This project follows the [all contributors](https://github.com/kentcdodds/all-contributors) specification. When making a contribution, please add yourself to the table of contributors: diff --git a/gradle.properties b/gradle.properties index f623aef1a3d..3cb5da81c90 100644 --- a/gradle.properties +++ b/gradle.properties @@ -25,9 +25,15 @@ org.gradle.caching=true mavenGroupId = com.microsoft.graph mavenArtifactId = microsoft-graph +# x-release-please-start-major mavenMajorVersion = 6 +# x-release-please-end +# x-release-please-start-minor mavenMinorVersion = 6 +# x-release-please-end +# x-release-please-start-patch mavenPatchVersion = 0 +# x-release-please-end mavenArtifactSuffix = #These values are used to run functional tests diff --git a/release-please-config.json b/release-please-config.json new file mode 100644 index 00000000000..da68c63e2f3 --- /dev/null +++ b/release-please-config.json @@ -0,0 +1,29 @@ +{ + "bootstrap-sha": "TODO: Update this value", + "exclude-paths": [ + ".git", + ".idea", + ".github", + ".vscode" + ], + "release-type": "java", + "include-component-in-tag": false, + "include-v-in-tag": true, + "packages": { + ".": { + "package-name": "com.microsoft.graph.microsoft-graph", + "changelog-path": "CHANGELOG.md", + "extra-files": [ + { + "type": "generic", + "path": "gradle.properties" + }, + { + "type": "pom", + "path": "pom.xml" + } + ] + } + }, + "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json" +} From 11b7c3eac043c10bf4219fafcd29ce1a7428d662 Mon Sep 17 00:00:00 2001 From: Caleb Kiage <747955+calebkiage@users.noreply.github.com> Date: Thu, 18 Apr 2024 00:05:50 +0300 Subject: [PATCH 04/25] ci: fix branch name for the release bot github action --- .github/workflows/release-please.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index eb9f6d6006c..b9728b5c0ab 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -1,7 +1,7 @@ on: push: branches: - - main + - dev permissions: contents: write @@ -18,4 +18,4 @@ jobs: token: ${{ secrets.RELEASE_PLEASE_TOKEN }} # TODO: Create this token with repo config-file: release-please-config.json # Set to update gradle.properties & pom.xml manifest-file: .release-please-manifest.json - target-branch: main + target-branch: dev From eee06798099975f5ce77dfbcd4521b12973471cb Mon Sep 17 00:00:00 2001 From: Caleb Kiage <747955+calebkiage@users.noreply.github.com> Date: Thu, 18 Apr 2024 01:18:14 +0300 Subject: [PATCH 05/25] ci: set release bot scanning start SHA --- release-please-config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release-please-config.json b/release-please-config.json index da68c63e2f3..4086660a2f0 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -1,5 +1,5 @@ { - "bootstrap-sha": "TODO: Update this value", + "bootstrap-sha": "6342ecd17b3c26f5d27b33ff49a2ceedc206f140", "exclude-paths": [ ".git", ".idea", From aad22fe88cb46cf0335a20f4509b39db4590f528 Mon Sep 17 00:00:00 2001 From: Caleb Kiage <747955+calebkiage@users.noreply.github.com> Date: Thu, 18 Apr 2024 01:59:04 +0300 Subject: [PATCH 06/25] ci: update release github action --- .github/workflows/git-release.yml | 28 +++++++++++++++++++--------- .github/workflows/release-please.yml | 6 +++--- 2 files changed, 22 insertions(+), 12 deletions(-) diff --git a/.github/workflows/git-release.yml b/.github/workflows/git-release.yml index 60f5ad8fc86..32ecd3f462b 100644 --- a/.github/workflows/git-release.yml +++ b/.github/workflows/git-release.yml @@ -22,14 +22,24 @@ jobs: event: push name: drop path: drop - - name: Github Release - uses: anton-yurchenko/git-release@v6.0 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - DRAFT_RELEASE: "false" - PRE_RELEASE: "false" - CHANGELOG_FILE: "CHANGELOG.md" - ALLOW_EMPTY_CHANGELOG: "true" + ## TODO: Confirm that the old action can update an existing release. + # - name: Github Release + # uses: anton-yurchenko/git-release@v6.0 + # env: + # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + # DRAFT_RELEASE: "false" + # PRE_RELEASE: "false" + # CHANGELOG_FILE: "CHANGELOG.md" + # ALLOW_EMPTY_CHANGELOG: "true" + # with: + # args: | + # drop/build/**/*.jar + # This action works with an existing release (created by the release bot) and uploads the build artifacts + - name: GitHub Release + uses: softprops/action-gh-release@v2 + if: startsWith(github.ref, 'refs/tags/') with: - args: | + token: ${{ secrets.GITHUB_TOKEN }} + fail_on_unmatched_files: true + files: | drop/build/**/*.jar diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index b9728b5c0ab..eabcf949edc 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -7,7 +7,7 @@ permissions: contents: write pull-requests: write -name: release-please +name: release-bot jobs: release-please: @@ -15,7 +15,7 @@ jobs: steps: - uses: google-github-actions/release-please-action@v4 with: - token: ${{ secrets.RELEASE_PLEASE_TOKEN }} # TODO: Create this token with repo - config-file: release-please-config.json # Set to update gradle.properties & pom.xml + token: ${{ secrets.RELEASE_PLEASE_TOKEN }} + config-file: release-please-config.json # Set to update gradle.properties, pom.xml & CHANGELOG.md manifest-file: .release-please-manifest.json target-branch: dev From 0feafc972b9d95f3f9d5c350904da66c48289fd2 Mon Sep 17 00:00:00 2001 From: Caleb Kiage <747955+calebkiage@users.noreply.github.com> Date: Thu, 18 Apr 2024 02:12:20 +0300 Subject: [PATCH 07/25] ci: remove conflicting create_Tag job --- .github/workflows/preview-and-release.yml | 47 +++++++++-------- Scripts/incrementMinorVersion.ps1 | 64 ----------------------- 2 files changed, 24 insertions(+), 87 deletions(-) delete mode 100644 Scripts/incrementMinorVersion.ps1 diff --git a/.github/workflows/preview-and-release.yml b/.github/workflows/preview-and-release.yml index 32162dae2ba..72b7b4b3d40 100644 --- a/.github/workflows/preview-and-release.yml +++ b/.github/workflows/preview-and-release.yml @@ -95,26 +95,27 @@ jobs: **/gradle/** Scripts/** - create_Tag: - needs: maven_Release - runs-on: ubuntu-latest - permissions: - contents: write - env: - RELEASE_TAG: "" - steps: - - uses: actions/checkout@v4 - - name: Get Version - id: GetVersion - run: .\Scripts\getLatestVersion.ps1 - shell: pwsh - - name: Create tag - uses: rickstaa/action-create-tag@v1.7.2 - with: - tag: ${{ steps.GetVersion.outputs.tag }} - - name: Queue Git Release - uses: benc-uk/workflow-dispatch@v1 - with: - workflow: Git Release - token: ${{ secrets.PERSONAL_TOKEN }} - ref: ${{ steps.GetVersion.outputs.tag }} + # release-please creates tags + # create_Tag: + # needs: maven_Release + # runs-on: ubuntu-latest + # permissions: + # contents: write + # env: + # RELEASE_TAG: "" + # steps: + # - uses: actions/checkout@v4 + # - name: Get Version + # id: GetVersion + # run: .\Scripts\getLatestVersion.ps1 + # shell: pwsh + # - name: Create tag + # uses: rickstaa/action-create-tag@v1.7.2 + # with: + # tag: ${{ steps.GetVersion.outputs.tag }} + # - name: Queue Git Release + # uses: benc-uk/workflow-dispatch@v1 + # with: + # workflow: Git Release + # token: ${{ secrets.PERSONAL_TOKEN }} + # ref: ${{ steps.GetVersion.outputs.tag }} diff --git a/Scripts/incrementMinorVersion.ps1 b/Scripts/incrementMinorVersion.ps1 deleted file mode 100644 index e7dbaf4cc1a..00000000000 --- a/Scripts/incrementMinorVersion.ps1 +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. - -<# -.Synopsis - Increment the minor version string in the gradle.properties if the major, - minor, or patch version hasn't been manually updated. -.Description - Assumptions: - Targets Gradle.properties - This script assumes it is run from the repo root. - Minor version is typically auto-incremented. - -#> - -function Update-ReadmeVersion([string]$readmeFilePath, [version]$version) { - $readmeFileContent = Get-Content -Path $readmeFilePath -Raw - $readmeFileContent = $readmeFileContent -replace "graph(\-beta)?:\d{1,}\.\d{1,}\.\d{1,}", "graph`$1:$($version.ToString())" - $gradleLineNumber = Select-String -Path $readmeFilePath -Pattern "```xml" | Select-Object -First 1 -ExpandProperty LineNumber; - $gradleLineNumber+= 4 # skipping triple tick, block open, comment, groupid, artifactid - $readmeLines = $readmeFileContent -split "`n" - $readmeLines[$gradleLineNumber] = $readmeLines[$gradleLineNumber] -replace "\d{1,}\.\d{1,}\.\d{1,}", $version.ToString() - $readmeFileContent = $readmeLines -join "`n" - Set-Content -Path $readmeFilePath $readmeFileContent -NoNewline -} - -function Update-TelemetryVersion([string]$telemetryFilePath, [version]$version) { - $telemetryFileContent = Get-Content -Path $telemetryFilePath -Raw - $telemetryFileContent = $telemetryFileContent -replace "\d{1,}\.\d{1,}\.\d{1,}", $version.ToString() - Set-Content -Path $telemetryFilePath $telemetryFileContent -NoNewline -} - -function Update-PackageVersion([string]$propertiesFilePath, [version]$version) { - $propertiesFileContent = Get-Content -Path $propertiesFilePath -Raw - $propertiesFileContent = $propertiesFileContent -replace "mavenMajorVersion\s+=\s+\d{1,}", "mavenMajorVersion = $($version.Major)" - $propertiesFileContent = $propertiesFileContent -replace "mavenMinorVersion\s+=\s+\d{1,}", "mavenMinorVersion = $($version.Minor)" - $propertiesFileContent = $propertiesFileContent -replace "mavenPatchVersion\s+=\s+\d{1,}", "mavenPatchVersion = $($version.Build)" - Set-Content -Path $propertiesFilePath $propertiesFileContent -NoNewline -} -function Get-CurrentTelemetryVersion([string]$telemetryFilePath) { - $telemetryFileContent = Get-Content -Path $telemetryFilePath -Raw - if($telemetryFileContent -match "(\d{1,}\.\d{1,}\.\d{1,})") { - return [version]::Parse($Matches[1]) - } else { - Write-Error "Invalid version number format" - return $null; - } -} - -function Update-MinorVersionNumber([version]$currentVersion) { - return [version]::new($currentVersion.Major, $currentVersion.Minor + 1, 0); -} - -function Update-MinorVersion() { - $readmeFilePath = Join-Path -Path $PWD.ToString() -ChildPath "../README.md" - $propertiesFilePath = Join-Path -Path $PWD.ToString() -ChildPath "../gradle.properties" - $telemetryFilePath = Join-Path -Path $PWD.ToString() -ChildPath "../src/main/java/com/microsoft/graph/info/Constants.java" - $currentVersion = Get-CurrentTelemetryVersion -telemetryFilePath $telemetryFilePath - $nextVersion = Update-MinorVersionNumber -currentVersion $currentVersion - Update-ReadmeVersion -version $nextVersion -readmeFilePath $readmeFilePath - Update-TelemetryVersion -version $nextVersion -telemetryFilePath $telemetryFilePath - Update-PackageVersion -version $nextVersion -propertiesFilePath $propertiesFilePath -} -Update-MinorVersion \ No newline at end of file From 281b3cd5514b83c7e278ea9d29103a823c747a51 Mon Sep 17 00:00:00 2001 From: Caleb Kiage <747955+calebkiage@users.noreply.github.com> Date: Thu, 18 Apr 2024 05:27:06 +0300 Subject: [PATCH 08/25] ci: use simpler xml updater --- release-please-config.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/release-please-config.json b/release-please-config.json index 4086660a2f0..883bfd5403d 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -19,8 +19,9 @@ "path": "gradle.properties" }, { - "type": "pom", - "path": "pom.xml" + "type": "xml", + "path": "pom.xml", + "xpath": "//project/version" } ] } From e3683f39357729baefbe83417bbce7d22fac4e22 Mon Sep 17 00:00:00 2001 From: Caleb Kiage <747955+calebkiage@users.noreply.github.com> Date: Thu, 18 Apr 2024 16:07:51 +0300 Subject: [PATCH 09/25] ci: update version numbers in README & java Constants --- README.md | 4 ++++ release-please-config.json | 8 ++++++++ src/main/java/com/microsoft/graph/info/Constants.java | 2 ++ 3 files changed, 14 insertions(+) diff --git a/README.md b/README.md index 9a6e299c35c..1116305e892 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,9 @@ repositories { dependencies { // Include the sdk as a dependency + // x-release-please-start-version implementation 'com.microsoft.graph:microsoft-graph:6.6.0' + // x-release-please-end // This dependency is only needed if you are using a TokenCredential object for authentication implementation 'com.azure:azure-identity:1.11.0' } @@ -35,7 +37,9 @@ Add the dependency in `dependencies` in pom.xml com.microsoft.graph microsoft-graph + 6.6.0 + diff --git a/release-please-config.json b/release-please-config.json index 883bfd5403d..5b1f7c5fb62 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -18,6 +18,14 @@ "type": "generic", "path": "gradle.properties" }, + { + "type": "generic", + "path": "README.md" + }, + { + "type": "generic", + "path": "src/main/java/com/microsoft/graph/info/Constants.java" + }, { "type": "xml", "path": "pom.xml", diff --git a/src/main/java/com/microsoft/graph/info/Constants.java b/src/main/java/com/microsoft/graph/info/Constants.java index f67c288036e..62059f7adad 100644 --- a/src/main/java/com/microsoft/graph/info/Constants.java +++ b/src/main/java/com/microsoft/graph/info/Constants.java @@ -3,6 +3,8 @@ /** Multi-purpose constants holder used accross the SDK */ public final class Constants { /** The SDK version */ + // x-release-please-start-version public static final String VERSION_NAME = "6.6.0"; + // x-release-please-end } From cef573d78ac530dfe10cb88a3464ce7586084ec0 Mon Sep 17 00:00:00 2001 From: Caleb Kiage <747955+calebkiage@users.noreply.github.com> Date: Thu, 18 Apr 2024 16:10:15 +0300 Subject: [PATCH 10/25] ci: cleanup commented out code --- .github/workflows/git-release.yml | 12 ----------- .github/workflows/preview-and-release.yml | 25 ----------------------- 2 files changed, 37 deletions(-) diff --git a/.github/workflows/git-release.yml b/.github/workflows/git-release.yml index 32ecd3f462b..ec3b0ecb87f 100644 --- a/.github/workflows/git-release.yml +++ b/.github/workflows/git-release.yml @@ -22,18 +22,6 @@ jobs: event: push name: drop path: drop - ## TODO: Confirm that the old action can update an existing release. - # - name: Github Release - # uses: anton-yurchenko/git-release@v6.0 - # env: - # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - # DRAFT_RELEASE: "false" - # PRE_RELEASE: "false" - # CHANGELOG_FILE: "CHANGELOG.md" - # ALLOW_EMPTY_CHANGELOG: "true" - # with: - # args: | - # drop/build/**/*.jar # This action works with an existing release (created by the release bot) and uploads the build artifacts - name: GitHub Release uses: softprops/action-gh-release@v2 diff --git a/.github/workflows/preview-and-release.yml b/.github/workflows/preview-and-release.yml index 72b7b4b3d40..61f1afdff2b 100644 --- a/.github/workflows/preview-and-release.yml +++ b/.github/workflows/preview-and-release.yml @@ -94,28 +94,3 @@ jobs: gradle.properties **/gradle/** Scripts/** - - # release-please creates tags - # create_Tag: - # needs: maven_Release - # runs-on: ubuntu-latest - # permissions: - # contents: write - # env: - # RELEASE_TAG: "" - # steps: - # - uses: actions/checkout@v4 - # - name: Get Version - # id: GetVersion - # run: .\Scripts\getLatestVersion.ps1 - # shell: pwsh - # - name: Create tag - # uses: rickstaa/action-create-tag@v1.7.2 - # with: - # tag: ${{ steps.GetVersion.outputs.tag }} - # - name: Queue Git Release - # uses: benc-uk/workflow-dispatch@v1 - # with: - # workflow: Git Release - # token: ${{ secrets.PERSONAL_TOKEN }} - # ref: ${{ steps.GetVersion.outputs.tag }} From 7a74d8b68e000481a2837daf1005828e4322c270 Mon Sep 17 00:00:00 2001 From: Philip Gichuhi Date: Thu, 18 Apr 2024 23:50:09 +0300 Subject: [PATCH 11/25] Use tested docs samples in upgrade guide --- docs/upgrade-to-v6.md | 46 +------------------------------------------ 1 file changed, 1 insertion(+), 45 deletions(-) diff --git a/docs/upgrade-to-v6.md b/docs/upgrade-to-v6.md index a7aca708a52..5391352c2ad 100644 --- a/docs/upgrade-to-v6.md +++ b/docs/upgrade-to-v6.md @@ -431,52 +431,8 @@ Using batched requests can make your code a lot faster, if you need to query sev ### Large File Upload Enhancements In v6 we have enhanced our large file upload experience by adding the ability to pause and resume large file uploads. This functionality is described in detail [here](https://learn.microsoft.com/en-us/graph/api/driveitem-createuploadsession?view=graph-rest-1.0&preserve-view=true). -The sytax for uploading a large file has changed in v6, use the following example to get you started using the new LargeFileUpload task. -Large File Upload example: -```java -//Initialize the file input stream and get the file size -InputStream file = new FileInputStream("File-Path"); -long fileSize = file.available(); - -// Set the DriveItemUploadableProperties -// This is used to populate the request to create an upload session -DriveItemUploadableProperties driveItemUploadableProperties = new DriveItemUploadableProperties(); -driveItemUploadableProperties.setName("HelloWorld.txt"); -driveItemUploadableProperties.setFileSize(fileSize); -Map additionalData = new HashMap<>(); -additionalData.put("@microsoft.graph.conflictBehavior", "replace"); -driveItemUploadableProperties.setAdditionalData(additionalData); - -// Finish setting up the request body -CreateUploadSessionPostRequestBody uploadSessionPostRequestBody = new CreateUploadSessionPostRequestBody(); -uploadSessionPostRequestBody.setItem(driveItemUploadableProperties); - -// Create the upload session -String myDriveId = graphClient.me().drive().get().getId(); -UploadSession uploadSession = graphClient.drives() - .byDriveId(myDriveId) - .items() - .byDriveItemId("root/Folder/HelloWorld.txt") - .createUploadSession().post(uploadSessionPostRequestBody); -// Create the large file upload task -LargeFileUploadTask uploadTask = - new LargeFileUploadTask(graphClient.getRequestAdapter(), - uploadSession, - file, - fileSize, - DriveItemUploadableProperties::createFromDiscriminatorValue); -try{ - UploadResult uploadResult = uploadTask.upload(); -} catch(ApiException | InterruptedException exception) { - System.out.println(exception.getMessage()); - -} - -// If your application encounters a connection interruption or a 5.x.x HTTP status during upload, you can resume the upload. -// Handle logic -uploadTask.resume(); -``` +See the [docs](https://learn.microsoft.com/en-us/graph/sdks/large-file-upload?view=graph-rest-1.0&tabs=java) for Large File Upload examples. ### Per-Request Options From 58757f9ecdf8a86e8c4debb2972da02bf29f257c Mon Sep 17 00:00:00 2001 From: Caleb Kiage <747955+calebkiage@users.noreply.github.com> Date: Fri, 19 Apr 2024 20:12:29 +0300 Subject: [PATCH 12/25] ci: move to using github app over github action (#1944) * ci: update extra-files * ci: move to using github app over gh action * ci: remove github action to use github app --- .github/release-please.yml | 3 +++ .github/workflows/release-please.yml | 21 --------------------- release-please-config.json | 15 +++------------ 3 files changed, 6 insertions(+), 33 deletions(-) create mode 100644 .github/release-please.yml delete mode 100644 .github/workflows/release-please.yml diff --git a/.github/release-please.yml b/.github/release-please.yml new file mode 100644 index 00000000000..7ada481f9e4 --- /dev/null +++ b/.github/release-please.yml @@ -0,0 +1,3 @@ +manifest: true +primaryBranch: dev +handleGHRelease: true diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml deleted file mode 100644 index eabcf949edc..00000000000 --- a/.github/workflows/release-please.yml +++ /dev/null @@ -1,21 +0,0 @@ -on: - push: - branches: - - dev - -permissions: - contents: write - pull-requests: write - -name: release-bot - -jobs: - release-please: - runs-on: ubuntu-latest - steps: - - uses: google-github-actions/release-please-action@v4 - with: - token: ${{ secrets.RELEASE_PLEASE_TOKEN }} - config-file: release-please-config.json # Set to update gradle.properties, pom.xml & CHANGELOG.md - manifest-file: .release-please-manifest.json - target-branch: dev diff --git a/release-please-config.json b/release-please-config.json index 5b1f7c5fb62..054078e9cd4 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -14,18 +14,9 @@ "package-name": "com.microsoft.graph.microsoft-graph", "changelog-path": "CHANGELOG.md", "extra-files": [ - { - "type": "generic", - "path": "gradle.properties" - }, - { - "type": "generic", - "path": "README.md" - }, - { - "type": "generic", - "path": "src/main/java/com/microsoft/graph/info/Constants.java" - }, + "gradle.properties", + "README.md", + "src/main/java/com/microsoft/graph/info/Constants.java", { "type": "xml", "path": "pom.xml", From d7b9fe6f2a600d371a58bb0bbc242df931b5d888 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Apr 2024 05:07:22 +0000 Subject: [PATCH 13/25] build(deps): bump the kiota-dependencies group with 6 updates Bumps the kiota-dependencies group with 6 updates: | Package | From | To | | --- | --- | --- | | [com.microsoft.kiota:microsoft-kiota-authentication-azure](https://github.com/microsoft/kiota-java) | `1.1.4` | `1.1.6` | | [com.microsoft.kiota:microsoft-kiota-http-okHttp](https://github.com/microsoft/kiota-java) | `1.1.4` | `1.1.6` | | [com.microsoft.kiota:microsoft-kiota-serialization-json](https://github.com/microsoft/kiota-java) | `1.1.4` | `1.1.6` | | [com.microsoft.kiota:microsoft-kiota-serialization-text](https://github.com/microsoft/kiota-java) | `1.1.4` | `1.1.6` | | [com.microsoft.kiota:microsoft-kiota-serialization-form](https://github.com/microsoft/kiota-java) | `1.1.4` | `1.1.6` | | [com.microsoft.kiota:microsoft-kiota-serialization-multipart](https://github.com/microsoft/kiota-java) | `1.1.4` | `1.1.6` | Updates `com.microsoft.kiota:microsoft-kiota-authentication-azure` from 1.1.4 to 1.1.6 - [Release notes](https://github.com/microsoft/kiota-java/releases) - [Changelog](https://github.com/microsoft/kiota-java/blob/main/CHANGELOG.md) - [Commits](https://github.com/microsoft/kiota-java/compare/v1.1.4...v1.1.6) Updates `com.microsoft.kiota:microsoft-kiota-http-okHttp` from 1.1.4 to 1.1.6 - [Release notes](https://github.com/microsoft/kiota-java/releases) - [Changelog](https://github.com/microsoft/kiota-java/blob/main/CHANGELOG.md) - [Commits](https://github.com/microsoft/kiota-java/compare/v1.1.4...v1.1.6) Updates `com.microsoft.kiota:microsoft-kiota-serialization-json` from 1.1.4 to 1.1.6 - [Release notes](https://github.com/microsoft/kiota-java/releases) - [Changelog](https://github.com/microsoft/kiota-java/blob/main/CHANGELOG.md) - [Commits](https://github.com/microsoft/kiota-java/compare/v1.1.4...v1.1.6) Updates `com.microsoft.kiota:microsoft-kiota-serialization-text` from 1.1.4 to 1.1.6 - [Release notes](https://github.com/microsoft/kiota-java/releases) - [Changelog](https://github.com/microsoft/kiota-java/blob/main/CHANGELOG.md) - [Commits](https://github.com/microsoft/kiota-java/compare/v1.1.4...v1.1.6) Updates `com.microsoft.kiota:microsoft-kiota-serialization-form` from 1.1.4 to 1.1.6 - [Release notes](https://github.com/microsoft/kiota-java/releases) - [Changelog](https://github.com/microsoft/kiota-java/blob/main/CHANGELOG.md) - [Commits](https://github.com/microsoft/kiota-java/compare/v1.1.4...v1.1.6) Updates `com.microsoft.kiota:microsoft-kiota-serialization-multipart` from 1.1.4 to 1.1.6 - [Release notes](https://github.com/microsoft/kiota-java/releases) - [Changelog](https://github.com/microsoft/kiota-java/blob/main/CHANGELOG.md) - [Commits](https://github.com/microsoft/kiota-java/compare/v1.1.4...v1.1.6) --- updated-dependencies: - dependency-name: com.microsoft.kiota:microsoft-kiota-authentication-azure dependency-type: direct:production update-type: version-update:semver-patch dependency-group: kiota-dependencies - dependency-name: com.microsoft.kiota:microsoft-kiota-http-okHttp dependency-type: direct:production update-type: version-update:semver-patch dependency-group: kiota-dependencies - dependency-name: com.microsoft.kiota:microsoft-kiota-serialization-json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: kiota-dependencies - dependency-name: com.microsoft.kiota:microsoft-kiota-serialization-text dependency-type: direct:production update-type: version-update:semver-patch dependency-group: kiota-dependencies - dependency-name: com.microsoft.kiota:microsoft-kiota-serialization-form dependency-type: direct:production update-type: version-update:semver-patch dependency-group: kiota-dependencies - dependency-name: com.microsoft.kiota:microsoft-kiota-serialization-multipart dependency-type: direct:production update-type: version-update:semver-patch dependency-group: kiota-dependencies ... Signed-off-by: dependabot[bot] --- gradle/dependencies.gradle | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/gradle/dependencies.gradle b/gradle/dependencies.gradle index ca7127a6779..789f0ee015e 100644 --- a/gradle/dependencies.gradle +++ b/gradle/dependencies.gradle @@ -9,10 +9,10 @@ dependencies { // Core Http library api 'com.microsoft.graph:microsoft-graph-core:3.1.7' - implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.1.4' - implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.1.4' - implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.1.4' - implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.1.4' - implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.1.4' - implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.1.4' + implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.1.6' + implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.1.6' + implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.1.6' + implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.1.6' + implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.1.6' + implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.1.6' } From f8bfae9396f05762c0f4dc106de655416650cbb2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Apr 2024 05:34:28 +0000 Subject: [PATCH 14/25] build(deps): bump the kiota-dependencies group Bumps the kiota-dependencies group in /android with 6 updates: | Package | From | To | | --- | --- | --- | | [com.microsoft.kiota:microsoft-kiota-authentication-azure](https://github.com/microsoft/kiota-java) | `1.1.4` | `1.1.6` | | [com.microsoft.kiota:microsoft-kiota-http-okHttp](https://github.com/microsoft/kiota-java) | `1.1.4` | `1.1.6` | | [com.microsoft.kiota:microsoft-kiota-serialization-json](https://github.com/microsoft/kiota-java) | `1.1.4` | `1.1.6` | | [com.microsoft.kiota:microsoft-kiota-serialization-text](https://github.com/microsoft/kiota-java) | `1.1.4` | `1.1.6` | | [com.microsoft.kiota:microsoft-kiota-serialization-form](https://github.com/microsoft/kiota-java) | `1.1.4` | `1.1.6` | | [com.microsoft.kiota:microsoft-kiota-serialization-multipart](https://github.com/microsoft/kiota-java) | `1.1.4` | `1.1.6` | Updates `com.microsoft.kiota:microsoft-kiota-authentication-azure` from 1.1.4 to 1.1.6 - [Release notes](https://github.com/microsoft/kiota-java/releases) - [Changelog](https://github.com/microsoft/kiota-java/blob/main/CHANGELOG.md) - [Commits](https://github.com/microsoft/kiota-java/compare/v1.1.4...v1.1.6) Updates `com.microsoft.kiota:microsoft-kiota-http-okHttp` from 1.1.4 to 1.1.6 - [Release notes](https://github.com/microsoft/kiota-java/releases) - [Changelog](https://github.com/microsoft/kiota-java/blob/main/CHANGELOG.md) - [Commits](https://github.com/microsoft/kiota-java/compare/v1.1.4...v1.1.6) Updates `com.microsoft.kiota:microsoft-kiota-serialization-json` from 1.1.4 to 1.1.6 - [Release notes](https://github.com/microsoft/kiota-java/releases) - [Changelog](https://github.com/microsoft/kiota-java/blob/main/CHANGELOG.md) - [Commits](https://github.com/microsoft/kiota-java/compare/v1.1.4...v1.1.6) Updates `com.microsoft.kiota:microsoft-kiota-serialization-text` from 1.1.4 to 1.1.6 - [Release notes](https://github.com/microsoft/kiota-java/releases) - [Changelog](https://github.com/microsoft/kiota-java/blob/main/CHANGELOG.md) - [Commits](https://github.com/microsoft/kiota-java/compare/v1.1.4...v1.1.6) Updates `com.microsoft.kiota:microsoft-kiota-serialization-form` from 1.1.4 to 1.1.6 - [Release notes](https://github.com/microsoft/kiota-java/releases) - [Changelog](https://github.com/microsoft/kiota-java/blob/main/CHANGELOG.md) - [Commits](https://github.com/microsoft/kiota-java/compare/v1.1.4...v1.1.6) Updates `com.microsoft.kiota:microsoft-kiota-serialization-multipart` from 1.1.4 to 1.1.6 - [Release notes](https://github.com/microsoft/kiota-java/releases) - [Changelog](https://github.com/microsoft/kiota-java/blob/main/CHANGELOG.md) - [Commits](https://github.com/microsoft/kiota-java/compare/v1.1.4...v1.1.6) --- updated-dependencies: - dependency-name: com.microsoft.kiota:microsoft-kiota-authentication-azure dependency-type: direct:production update-type: version-update:semver-patch dependency-group: kiota-dependencies - dependency-name: com.microsoft.kiota:microsoft-kiota-http-okHttp dependency-type: direct:production update-type: version-update:semver-patch dependency-group: kiota-dependencies - dependency-name: com.microsoft.kiota:microsoft-kiota-serialization-json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: kiota-dependencies - dependency-name: com.microsoft.kiota:microsoft-kiota-serialization-text dependency-type: direct:production update-type: version-update:semver-patch dependency-group: kiota-dependencies - dependency-name: com.microsoft.kiota:microsoft-kiota-serialization-form dependency-type: direct:production update-type: version-update:semver-patch dependency-group: kiota-dependencies - dependency-name: com.microsoft.kiota:microsoft-kiota-serialization-multipart dependency-type: direct:production update-type: version-update:semver-patch dependency-group: kiota-dependencies ... Signed-off-by: dependabot[bot] --- gradle/dependencies.gradle | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/gradle/dependencies.gradle b/gradle/dependencies.gradle index ca7127a6779..789f0ee015e 100644 --- a/gradle/dependencies.gradle +++ b/gradle/dependencies.gradle @@ -9,10 +9,10 @@ dependencies { // Core Http library api 'com.microsoft.graph:microsoft-graph-core:3.1.7' - implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.1.4' - implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.1.4' - implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.1.4' - implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.1.4' - implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.1.4' - implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.1.4' + implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.1.6' + implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.1.6' + implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.1.6' + implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.1.6' + implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.1.6' + implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.1.6' } From b6945d589276cc887b34d5f3a7cbc7ef271f0ad3 Mon Sep 17 00:00:00 2001 From: Caleb Kiage <747955+calebkiage@users.noreply.github.com> Date: Mon, 22 Apr 2024 17:19:36 +0300 Subject: [PATCH 15/25] ci: switch to using simple release strategy to avoid extra SNAPSHOT PR. (#1946) ci: update bootstrap SHA --- release-please-config.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/release-please-config.json b/release-please-config.json index 054078e9cd4..651bc2137e3 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -1,12 +1,12 @@ { - "bootstrap-sha": "6342ecd17b3c26f5d27b33ff49a2ceedc206f140", + "bootstrap-sha": "ec09380911904bc7e58bf31bdb17e59a8e355b6c", "exclude-paths": [ ".git", ".idea", ".github", ".vscode" ], - "release-type": "java", + "release-type": "simple", "include-component-in-tag": false, "include-v-in-tag": true, "packages": { From c7b8867dc00f0a3b2392f527cf197af08e506449 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 23 Apr 2024 05:51:38 +0000 Subject: [PATCH 16/25] build(deps): bump com.microsoft.graph:microsoft-graph-core Bumps [com.microsoft.graph:microsoft-graph-core](https://github.com/microsoftgraph/msgraph-sdk-java-core) from 3.1.7 to 3.1.8. - [Release notes](https://github.com/microsoftgraph/msgraph-sdk-java-core/releases) - [Changelog](https://github.com/microsoftgraph/msgraph-sdk-java-core/blob/dev/CHANGELOG.md) - [Commits](https://github.com/microsoftgraph/msgraph-sdk-java-core/compare/v3.1.7...v3.1.8) --- updated-dependencies: - dependency-name: com.microsoft.graph:microsoft-graph-core dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8455701be4e..67176e1cf80 100644 --- a/pom.xml +++ b/pom.xml @@ -30,7 +30,7 @@ com.microsoft.graph microsoft-graph-core - 3.1.7 + 3.1.8 org.junit.jupiter From c19529d61c1db69f3320e867f2aa33066f3fdab0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 23 Apr 2024 06:28:32 +0000 Subject: [PATCH 17/25] build(deps): bump com.microsoft.graph:microsoft-graph-core Bumps [com.microsoft.graph:microsoft-graph-core](https://github.com/microsoftgraph/msgraph-sdk-java-core) from 3.1.7 to 3.1.8. - [Release notes](https://github.com/microsoftgraph/msgraph-sdk-java-core/releases) - [Changelog](https://github.com/microsoftgraph/msgraph-sdk-java-core/blob/dev/CHANGELOG.md) - [Commits](https://github.com/microsoftgraph/msgraph-sdk-java-core/compare/v3.1.7...v3.1.8) --- updated-dependencies: - dependency-name: com.microsoft.graph:microsoft-graph-core dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- gradle/dependencies.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/dependencies.gradle b/gradle/dependencies.gradle index 789f0ee015e..120ed2f6c4d 100644 --- a/gradle/dependencies.gradle +++ b/gradle/dependencies.gradle @@ -8,7 +8,7 @@ dependencies { implementation 'jakarta.annotation:jakarta.annotation-api:3.0.0' // Core Http library - api 'com.microsoft.graph:microsoft-graph-core:3.1.7' + api 'com.microsoft.graph:microsoft-graph-core:3.1.8' implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.1.6' implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.1.6' implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.1.6' From 747366caad0281a03f49fda86b9be0dde6b49d65 Mon Sep 17 00:00:00 2001 From: Microsoft Graph DevX Tooling Date: Tue, 23 Apr 2024 21:33:27 +0000 Subject: [PATCH 18/25] feat(generation): update request builders and models Update generated files with build 144821 --- .../sitelists/SiteListsRequestBuilder.java | 22 +++--- .../BrowserSiteListItemRequestBuilder.java | 32 ++++----- .../SharedCookiesRequestBuilder.java | 22 +++--- ...BrowserSharedCookieItemRequestBuilder.java | 32 ++++----- .../item/sites/SitesRequestBuilder.java | 22 +++--- .../item/BrowserSiteItemRequestBuilder.java | 32 ++++----- .../InstallationOptionsRequestBuilder.java | 22 +++--- .../admin/people/PeopleRequestBuilder.java | 12 ++-- .../ProfileCardPropertiesRequestBuilder.java | 22 +++--- ...ProfileCardPropertyItemRequestBuilder.java | 32 ++++----- .../pronouns/PronounsRequestBuilder.java | 22 +++--- .../HealthOverviewsRequestBuilder.java | 12 ++-- .../item/ServiceHealthItemRequestBuilder.java | 12 ++-- .../IncidentReportRequestBuilder.java | 10 +-- .../issues/IssuesRequestBuilder.java | 12 ++-- .../ServiceHealthIssueItemRequestBuilder.java | 12 ++-- .../IncidentReportRequestBuilder.java | 10 +-- .../messages/MessagesRequestBuilder.java | 12 ++-- ...erviceUpdateMessageItemRequestBuilder.java | 12 ++-- .../AttachmentsRequestBuilder.java | 12 ++-- ...ouncementAttachmentItemRequestBuilder.java | 12 ++-- .../item/content/ContentRequestBuilder.java | 2 - .../AttachmentsArchiveRequestBuilder.java | 2 - .../settings/SettingsRequestBuilder.java | 22 +++--- .../AcceptancesRequestBuilder.java | 12 ++-- .../item/file/FileRequestBuilder.java | 12 ++-- .../LocalizationsRequestBuilder.java | 12 ++-- .../item/files/FilesRequestBuilder.java | 10 ++- .../teamsapps/TeamsAppsRequestBuilder.java | 22 +++--- .../item/TeamsAppItemRequestBuilder.java | 10 ++- .../AppDefinitionsRequestBuilder.java | 10 ++- .../TeamsAppDefinitionItemRequestBuilder.java | 10 ++- .../item/bot/BotRequestBuilder.java | 12 ++-- .../delta/DeltaRequestBuilder.java | 12 ++-- .../item/ref/RefRequestBuilder.java | 10 ++- .../ref/RefRequestBuilder.java | 22 +++--- .../ExtensionPropertiesRequestBuilder.java | 22 +++--- .../ExtensionPropertyItemRequestBuilder.java | 22 +++--- ...atedIdentityCredentialsRequestBuilder.java | 22 +++--- ...dIdentityCredentialItemRequestBuilder.java | 32 ++++----- ...tityCredentialsWithNameRequestBuilder.java | 32 ++++----- .../item/owners/OwnersRequestBuilder.java | 2 - .../owners/item/ref/RefRequestBuilder.java | 10 ++- .../item/owners/ref/RefRequestBuilder.java | 24 +++---- .../jobs/JobsRequestBuilder.java | 22 +++--- .../SynchronizationJobItemRequestBuilder.java | 22 +++--- .../item/schema/SchemaRequestBuilder.java | 22 +++--- .../FilterOperatorsRequestBuilder.java | 12 ++-- .../functions/FunctionsRequestBuilder.java | 12 ++-- .../templates/TemplatesRequestBuilder.java | 12 ++-- ...hronizationTemplateItemRequestBuilder.java | 10 ++- .../FilterOperatorsRequestBuilder.java | 12 ++-- .../functions/FunctionsRequestBuilder.java | 12 ++-- .../TokenIssuancePoliciesRequestBuilder.java | 12 ++-- .../item/ref/RefRequestBuilder.java | 10 ++- .../ref/RefRequestBuilder.java | 34 ++++------ .../TokenLifetimePoliciesRequestBuilder.java | 12 ++-- .../item/ref/RefRequestBuilder.java | 10 ++- .../ref/RefRequestBuilder.java | 34 ++++------ .../DirectoryAuditsRequestBuilder.java | 12 ++-- .../DirectoryAuditItemRequestBuilder.java | 12 ++-- .../ProvisioningRequestBuilder.java | 12 ++-- .../signins/SignInsRequestBuilder.java | 12 ++-- .../item/SignInItemRequestBuilder.java | 12 ++-- .../GetAllMessagesRequestBuilder.java | 12 ++-- .../InstalledAppsRequestBuilder.java | 22 +++--- ...eamsAppInstallationItemRequestBuilder.java | 22 +++--- .../item/members/MembersRequestBuilder.java | 22 +++--- .../ConversationMemberItemRequestBuilder.java | 22 +++--- .../item/messages/MessagesRequestBuilder.java | 22 +++--- .../messages/delta/DeltaRequestBuilder.java | 12 ++-- .../item/ChatMessageItemRequestBuilder.java | 12 ++-- .../HostedContentsRequestBuilder.java | 12 ++-- ...essageHostedContentItemRequestBuilder.java | 12 ++-- .../item/value/ContentRequestBuilder.java | 2 - .../item/replies/RepliesRequestBuilder.java | 22 +++--- .../replies/delta/DeltaRequestBuilder.java | 12 ++-- .../item/ChatMessageItemRequestBuilder.java | 12 ++-- .../HostedContentsRequestBuilder.java | 12 ++-- ...essageHostedContentItemRequestBuilder.java | 12 ++-- .../item/value/ContentRequestBuilder.java | 2 - .../PermissionGrantsRequestBuilder.java | 12 ++-- .../PinnedMessagesRequestBuilder.java | 22 +++--- ...nnedChatMessageInfoItemRequestBuilder.java | 10 ++- .../chats/item/tabs/TabsRequestBuilder.java | 22 +++--- .../tabs/item/TeamsTabItemRequestBuilder.java | 32 ++++----- .../CallRecordsRequestBuilder.java | 10 +-- .../item/CallRecordItemRequestBuilder.java | 12 ++-- .../item/sessions/SessionsRequestBuilder.java | 12 ++-- .../calls/CallsRequestBuilder.java | 20 +++--- .../calls/item/CallItemRequestBuilder.java | 22 +++--- .../AudioRoutingGroupsRequestBuilder.java | 22 +++--- .../AudioRoutingGroupItemRequestBuilder.java | 32 ++++----- .../ContentSharingSessionsRequestBuilder.java | 12 ++-- ...ntentSharingSessionItemRequestBuilder.java | 12 ++-- .../operations/OperationsRequestBuilder.java | 10 +-- .../CommsOperationItemRequestBuilder.java | 12 ++-- .../ParticipantsRequestBuilder.java | 12 ++-- .../invite/InviteRequestBuilder.java | 12 ++-- .../item/ParticipantItemRequestBuilder.java | 22 +++--- .../OnlineMeetingsRequestBuilder.java | 12 ++-- .../AttendanceRecordsRequestBuilder.java | 12 ++-- .../AttendeeReportRequestBuilder.java | 2 - ...alAppointmentJoinWebUrlRequestBuilder.java | 10 +-- .../recordings/RecordingsRequestBuilder.java | 10 +-- .../item/CallRecordingItemRequestBuilder.java | 12 ++-- .../TranscriptsRequestBuilder.java | 12 ++-- .../CallTranscriptItemRequestBuilder.java | 12 ++-- .../item/content/ContentRequestBuilder.java | 2 - .../MetadataContentRequestBuilder.java | 2 - .../presences/PresencesRequestBuilder.java | 10 +-- .../item/PresenceItemRequestBuilder.java | 12 ++-- .../item/groups/GroupsRequestBuilder.java | 20 +++--- .../item/ExternalGroupItemRequestBuilder.java | 32 ++++----- .../item/members/MembersRequestBuilder.java | 10 ++- .../item/IdentityItemRequestBuilder.java | 10 ++- .../item/items/ItemsRequestBuilder.java | 10 +-- .../item/ExternalItemItemRequestBuilder.java | 22 +++--- .../operations/OperationsRequestBuilder.java | 10 +-- ...ConnectionOperationItemRequestBuilder.java | 12 ++-- .../item/schema/SchemaRequestBuilder.java | 22 +++--- .../contacts/delta/DeltaRequestBuilder.java | 12 ++-- .../DirectReportsRequestBuilder.java | 2 - .../item/manager/ManagerRequestBuilder.java | 12 ++-- .../item/memberof/MemberOfRequestBuilder.java | 2 - .../TransitiveMemberOfRequestBuilder.java | 2 - .../contracts/delta/DeltaRequestBuilder.java | 12 ++-- .../DeviceAppManagementRequestBuilder.java | 4 +- ...idManagedAppProtectionsRequestBuilder.java | 22 +++--- ...anagedAppProtectionItemRequestBuilder.java | 32 ++++----- ...ltManagedAppProtectionsRequestBuilder.java | 22 +++--- ...anagedAppProtectionItemRequestBuilder.java | 32 ++++----- ...osManagedAppProtectionsRequestBuilder.java | 22 +++--- ...anagedAppProtectionItemRequestBuilder.java | 32 ++++----- .../item/apps/AppsRequestBuilder.java | 22 +++--- .../ManagedMobileAppItemRequestBuilder.java | 32 ++++----- .../DeploymentSummaryRequestBuilder.java | 22 +++--- .../ManagedAppPoliciesRequestBuilder.java | 12 ++-- .../ManagedAppPolicyItemRequestBuilder.java | 12 ++-- ...ManagedAppRegistrationsRequestBuilder.java | 22 +++--- ...hFlaggedAppRegistrationRequestBuilder.java | 12 ++-- ...agedAppRegistrationItemRequestBuilder.java | 12 ++-- .../operations/OperationsRequestBuilder.java | 22 +++--- ...ManagedAppOperationItemRequestBuilder.java | 32 ++++----- .../ManagedAppStatusesRequestBuilder.java | 12 ++-- .../ManagedAppStatusItemRequestBuilder.java | 12 ++-- .../ManagedEBooksRequestBuilder.java | 22 +++--- .../item/ManagedEBookItemRequestBuilder.java | 32 ++++----- .../AssignmentsRequestBuilder.java | 22 +++--- ...agedEBookAssignmentItemRequestBuilder.java | 32 ++++----- .../DeviceStatesRequestBuilder.java | 22 +++--- .../DeviceInstallStateItemRequestBuilder.java | 32 ++++----- .../InstallSummaryRequestBuilder.java | 22 +++--- .../UserStateSummaryRequestBuilder.java | 22 +++--- ...InstallStateSummaryItemRequestBuilder.java | 32 ++++----- ...ationProtectionPoliciesRequestBuilder.java | 22 +++--- ...ionProtectionPolicyItemRequestBuilder.java | 32 ++++----- .../MobileAppCategoriesRequestBuilder.java | 22 +++--- .../MobileAppCategoryItemRequestBuilder.java | 32 ++++----- ...MobileAppConfigurationsRequestBuilder.java | 22 +++--- ...ileAppConfigurationItemRequestBuilder.java | 32 ++++----- .../AssignmentsRequestBuilder.java | 22 +++--- ...igurationAssignmentItemRequestBuilder.java | 32 ++++----- .../DeviceStatusesRequestBuilder.java | 22 +++--- ...urationDeviceStatusItemRequestBuilder.java | 32 ++++----- .../DeviceStatusSummaryRequestBuilder.java | 22 +++--- .../UserStatusesRequestBuilder.java | 22 +++--- ...igurationUserStatusItemRequestBuilder.java | 32 ++++----- .../UserStatusSummaryRequestBuilder.java | 22 +++--- .../mobileapps/MobileAppsRequestBuilder.java | 22 +++--- .../item/MobileAppItemRequestBuilder.java | 32 ++++----- .../AssignmentsRequestBuilder.java | 22 +++--- ...MobileAppAssignmentItemRequestBuilder.java | 32 ++++----- .../AssignmentsRequestBuilder.java | 22 +++--- ...MobileAppAssignmentItemRequestBuilder.java | 32 ++++----- .../AssignmentsRequestBuilder.java | 22 +++--- ...MobileAppAssignmentItemRequestBuilder.java | 32 ++++----- .../AssignmentsRequestBuilder.java | 22 +++--- ...MobileAppAssignmentItemRequestBuilder.java | 32 ++++----- .../AssignmentsRequestBuilder.java | 22 +++--- ...MobileAppAssignmentItemRequestBuilder.java | 32 ++++----- .../AssignmentsRequestBuilder.java | 22 +++--- ...MobileAppAssignmentItemRequestBuilder.java | 32 ++++----- .../AssignmentsRequestBuilder.java | 22 +++--- ...MobileAppAssignmentItemRequestBuilder.java | 32 ++++----- .../AssignmentsRequestBuilder.java | 22 +++--- ...MobileAppAssignmentItemRequestBuilder.java | 32 ++++----- .../AssignmentsRequestBuilder.java | 22 +++--- ...MobileAppAssignmentItemRequestBuilder.java | 32 ++++----- .../AssignmentsRequestBuilder.java | 22 +++--- ...MobileAppAssignmentItemRequestBuilder.java | 32 ++++----- .../AssignmentsRequestBuilder.java | 22 +++--- ...MobileAppAssignmentItemRequestBuilder.java | 32 ++++----- .../AssignmentsRequestBuilder.java | 22 +++--- ...MobileAppAssignmentItemRequestBuilder.java | 32 ++++----- .../AssignmentsRequestBuilder.java | 22 +++--- ...MobileAppAssignmentItemRequestBuilder.java | 32 ++++----- .../AssignmentsRequestBuilder.java | 22 +++--- ...MobileAppAssignmentItemRequestBuilder.java | 32 ++++----- .../AssignmentsRequestBuilder.java | 22 +++--- ...MobileAppAssignmentItemRequestBuilder.java | 32 ++++----- .../AssignmentsRequestBuilder.java | 22 +++--- ...MobileAppAssignmentItemRequestBuilder.java | 32 ++++----- .../AssignmentsRequestBuilder.java | 22 +++--- ...MobileAppAssignmentItemRequestBuilder.java | 32 ++++----- ...anagedAppConfigurationsRequestBuilder.java | 22 +++--- ...gedAppConfigurationItemRequestBuilder.java | 32 ++++----- .../vpptokens/VppTokensRequestBuilder.java | 22 +++--- .../item/VppTokenItemRequestBuilder.java | 32 ++++----- ...ationProtectionPoliciesRequestBuilder.java | 22 +++--- ...ionProtectionPolicyItemRequestBuilder.java | 32 ++++----- .../DeviceManagementRequestBuilder.java | 8 +-- ...NotificationCertificateRequestBuilder.java | 22 +++--- ...rtificateSigningRequestRequestBuilder.java | 2 + .../AuditEventsRequestBuilder.java | 22 +++--- .../GetAuditCategoriesRequestBuilder.java | 12 ++-- .../item/AuditEventItemRequestBuilder.java | 32 ++++----- ...ianceManagementPartnersRequestBuilder.java | 22 +++--- ...ceManagementPartnerItemRequestBuilder.java | 32 ++++----- ...nditionalAccessSettingsRequestBuilder.java | 22 +++--- .../DetectedAppsRequestBuilder.java | 22 +++--- .../item/DetectedAppItemRequestBuilder.java | 32 ++++----- .../DeviceCategoriesRequestBuilder.java | 22 +++--- .../DeviceCategoryItemRequestBuilder.java | 32 ++++----- ...eviceCompliancePoliciesRequestBuilder.java | 22 +++--- ...iceCompliancePolicyItemRequestBuilder.java | 32 ++++----- .../AssignmentsRequestBuilder.java | 22 +++--- ...ncePolicyAssignmentItemRequestBuilder.java | 32 ++++----- .../DeviceStatusesRequestBuilder.java | 22 +++--- ...plianceDeviceStatusItemRequestBuilder.java | 32 ++++----- .../DeviceStatusOverviewRequestBuilder.java | 22 +++--- ...ScheduledActionsForRuleRequestBuilder.java | 22 +++--- ...eduledActionForRuleItemRequestBuilder.java | 32 ++++----- ...ledActionConfigurationsRequestBuilder.java | 22 +++--- ...omplianceActionItemItemRequestBuilder.java | 32 ++++----- .../UserStatusesRequestBuilder.java | 22 +++--- ...omplianceUserStatusItemRequestBuilder.java | 32 ++++----- .../UserStatusOverviewRequestBuilder.java | 22 +++--- ...olicyDeviceStateSummaryRequestBuilder.java | 22 +++--- ...cySettingStateSummariesRequestBuilder.java | 22 +++--- ...SettingStateSummaryItemRequestBuilder.java | 32 ++++----- ...ComplianceSettingStatesRequestBuilder.java | 22 +++--- ...plianceSettingStateItemRequestBuilder.java | 32 ++++----- ...ionDeviceStateSummariesRequestBuilder.java | 22 +++--- .../DeviceConfigurationsRequestBuilder.java | 22 +++--- ...DeviceConfigurationItemRequestBuilder.java | 32 ++++----- .../AssignmentsRequestBuilder.java | 22 +++--- ...igurationAssignmentItemRequestBuilder.java | 32 ++++----- ...ceSettingStateSummariesRequestBuilder.java | 22 +++--- ...gStateDeviceSummaryItemRequestBuilder.java | 32 ++++----- .../DeviceStatusesRequestBuilder.java | 22 +++--- ...urationDeviceStatusItemRequestBuilder.java | 32 ++++----- .../DeviceStatusOverviewRequestBuilder.java | 22 +++--- .../UserStatusesRequestBuilder.java | 22 +++--- ...igurationUserStatusItemRequestBuilder.java | 32 ++++----- .../UserStatusOverviewRequestBuilder.java | 22 +++--- ...nrollmentConfigurationsRequestBuilder.java | 22 +++--- ...llmentConfigurationItemRequestBuilder.java | 32 ++++----- .../AssignmentsRequestBuilder.java | 22 +++--- ...igurationAssignmentItemRequestBuilder.java | 32 ++++----- ...eviceManagementPartnersRequestBuilder.java | 22 +++--- ...ceManagementPartnerItemRequestBuilder.java | 32 ++++----- .../ExchangeConnectorsRequestBuilder.java | 22 +++--- ...ntExchangeConnectorItemRequestBuilder.java | 32 ++++----- ...ivePermissionsWithScopeRequestBuilder.java | 2 + ...topilotDeviceIdentitiesRequestBuilder.java | 22 +++--- ...pilotDeviceIdentityItemRequestBuilder.java | 22 +++--- .../IosUpdateStatusesRequestBuilder.java | 22 +++--- ...sUpdateDeviceStatusItemRequestBuilder.java | 32 ++++----- .../ManagedDeviceOverviewRequestBuilder.java | 12 ++-- .../ManagedDevicesRequestBuilder.java | 22 +++--- .../item/ManagedDeviceItemRequestBuilder.java | 32 ++++----- .../DeviceCategoryRequestBuilder.java | 22 +++--- .../item/users/UsersRequestBuilder.java | 12 ++-- .../WindowsProtectionStateRequestBuilder.java | 22 +++--- .../DetectedMalwareStateRequestBuilder.java | 22 +++--- ...sDeviceMalwareStateItemRequestBuilder.java | 32 ++++----- ...ppTroubleshootingEventsRequestBuilder.java | 22 +++--- ...roubleshootingEventItemRequestBuilder.java | 32 ++++----- ...ppLogCollectionRequestsRequestBuilder.java | 22 +++--- ...ogCollectionRequestItemRequestBuilder.java | 32 ++++----- ...ThreatDefenseConnectorsRequestBuilder.java | 22 +++--- ...eatDefenseConnectorItemRequestBuilder.java | 32 ++++----- ...icationMessageTemplatesRequestBuilder.java | 22 +++--- ...tionMessageTemplateItemRequestBuilder.java | 32 ++++----- ...zedNotificationMessagesRequestBuilder.java | 22 +++--- ...NotificationMessageItemRequestBuilder.java | 32 ++++----- ...emoteAssistancePartnersRequestBuilder.java | 22 +++--- ...teAssistancePartnerItemRequestBuilder.java | 32 ++++----- .../reports/ReportsRequestBuilder.java | 22 +++--- .../exportjobs/ExportJobsRequestBuilder.java | 22 +++--- ...ManagementExportJobItemRequestBuilder.java | 32 ++++----- .../ResourceOperationsRequestBuilder.java | 22 +++--- .../ResourceOperationItemRequestBuilder.java | 32 ++++----- .../RoleAssignmentsRequestBuilder.java | 22 +++--- ...ementRoleAssignmentItemRequestBuilder.java | 32 ++++----- .../RoleDefinitionsRequestBuilder.java | 22 +++--- .../RoleDefinitionItemRequestBuilder.java | 32 ++++----- .../RoleAssignmentsRequestBuilder.java | 22 +++--- .../RoleAssignmentItemRequestBuilder.java | 32 ++++----- ...wareUpdateStatusSummaryRequestBuilder.java | 12 ++-- ...penseManagementPartnersRequestBuilder.java | 22 +++--- ...seManagementPartnerItemRequestBuilder.java | 32 ++++----- .../TermsAndConditionsRequestBuilder.java | 22 +++--- .../TermsAndConditionsItemRequestBuilder.java | 32 ++++----- .../AcceptanceStatusesRequestBuilder.java | 22 +++--- ...onsAcceptanceStatusItemRequestBuilder.java | 32 ++++----- .../AssignmentsRequestBuilder.java | 22 +++--- ...onditionsAssignmentItemRequestBuilder.java | 32 ++++----- .../AuditEventsRequestBuilder.java | 12 ++-- .../GetAuditActivityTypesRequestBuilder.java | 12 ++-- .../CloudPcAuditEventItemRequestBuilder.java | 12 ++-- .../cloudpcs/CloudPCsRequestBuilder.java | 12 ++-- .../item/CloudPCItemRequestBuilder.java | 12 ++-- .../DeviceImagesRequestBuilder.java | 22 +++--- .../GetSourceImagesRequestBuilder.java | 12 ++-- .../CloudPcDeviceImageItemRequestBuilder.java | 22 +++--- .../GalleryImagesRequestBuilder.java | 12 ++-- ...CloudPcGalleryImageItemRequestBuilder.java | 12 ++-- .../OnPremisesConnectionsRequestBuilder.java | 22 +++--- ...nPremisesConnectionItemRequestBuilder.java | 32 ++++----- .../ProvisioningPoliciesRequestBuilder.java | 22 +++--- ...cProvisioningPolicyItemRequestBuilder.java | 32 ++++----- .../UserSettingsRequestBuilder.java | 22 +++--- .../CloudPcUserSettingItemRequestBuilder.java | 32 ++++----- ...topilotDeviceIdentitiesRequestBuilder.java | 22 +++--- ...pilotDeviceIdentityItemRequestBuilder.java | 22 +++--- ...ionAppLearningSummariesRequestBuilder.java | 22 +++--- ...nAppLearningSummaryItemRequestBuilder.java | 32 ++++----- ...etworkLearningSummariesRequestBuilder.java | 22 +++--- ...workLearningSummaryItemRequestBuilder.java | 32 ++++----- ...ndowsMalwareInformationRequestBuilder.java | 22 +++--- ...sMalwareInformationItemRequestBuilder.java | 32 ++++----- .../DeviceMalwareStatesRequestBuilder.java | 22 +++--- ...ateForWindowsDeviceItemRequestBuilder.java | 32 ++++----- .../devices/delta/DeltaRequestBuilder.java | 12 ++-- .../item/memberof/MemberOfRequestBuilder.java | 2 - .../RegisteredOwnersRequestBuilder.java | 2 - .../item/ref/RefRequestBuilder.java | 10 ++- .../ref/RefRequestBuilder.java | 24 +++---- .../RegisteredUsersRequestBuilder.java | 2 - .../item/ref/RefRequestBuilder.java | 10 ++- .../ref/RefRequestBuilder.java | 24 +++---- .../TransitiveMemberOfRequestBuilder.java | 2 - .../AdministrativeUnitsRequestBuilder.java | 22 +++--- .../AdministrativeUnitItemRequestBuilder.java | 32 ++++----- .../item/members/MembersRequestBuilder.java | 4 -- .../members/item/ref/RefRequestBuilder.java | 10 ++- .../item/members/ref/RefRequestBuilder.java | 16 ++--- .../ScopedRoleMembersRequestBuilder.java | 22 +++--- ...copedRoleMembershipItemRequestBuilder.java | 22 +++--- .../AttributeSetsRequestBuilder.java | 22 +++--- .../item/AttributeSetItemRequestBuilder.java | 22 +++--- ...ityAttributeDefinitionsRequestBuilder.java | 22 +++--- ...AttributeDefinitionItemRequestBuilder.java | 22 +++--- .../AllowedValuesRequestBuilder.java | 22 +++--- .../item/AllowedValueItemRequestBuilder.java | 22 +++--- .../DeletedItemsRequestBuilder.java | 10 +-- .../DirectoryObjectItemRequestBuilder.java | 14 ++-- .../DeviceLocalCredentialsRequestBuilder.java | 12 ++-- ...LocalCredentialInfoItemRequestBuilder.java | 12 ++-- .../AvailableProviderTypesRequestBuilder.java | 12 ++-- ...dentityProviderBaseItemRequestBuilder.java | 10 ++- ...PremisesSynchronizationRequestBuilder.java | 10 +-- ...torySynchronizationItemRequestBuilder.java | 22 +++--- .../delta/DeltaRequestBuilder.java | 12 ++-- .../delta/DeltaRequestBuilder.java | 12 ++-- .../item/members/MembersRequestBuilder.java | 2 - .../members/item/ref/RefRequestBuilder.java | 10 ++- .../item/members/ref/RefRequestBuilder.java | 24 +++---- .../ScopedMembersRequestBuilder.java | 12 ++-- .../delta/DeltaRequestBuilder.java | 12 ++-- .../DomainNameReferencesRequestBuilder.java | 12 ++-- ...FederationConfigurationRequestBuilder.java | 22 +++--- ...nalDomainFederationItemRequestBuilder.java | 32 ++++----- ...iceConfigurationRecordsRequestBuilder.java | 12 ++-- .../VerificationDnsRecordsRequestBuilder.java | 12 ++-- .../item/bundles/BundlesRequestBuilder.java | 10 +-- .../item/DriveItemItemRequestBuilder.java | 10 +-- .../following/FollowingRequestBuilder.java | 12 ++-- .../item/content/ContentRequestBuilder.java | 2 - .../item/DriveItemItemRequestBuilder.java | 20 +++--- .../alltime/AllTimeRequestBuilder.java | 12 ++-- .../item/children/ChildrenRequestBuilder.java | 14 ++-- .../item/content/ContentRequestBuilder.java | 2 - .../items/item/copy/CopyRequestBuilder.java | 8 +-- .../items/item/delta/DeltaRequestBuilder.java | 12 ++-- ...GetActivitiesByIntervalRequestBuilder.java | 12 ++-- .../item/invite/InviteRequestBuilder.java | 8 +-- .../PermissionsRequestBuilder.java | 12 ++-- .../item/PermissionItemRequestBuilder.java | 32 ++++----- .../item/grant/GrantRequestBuilder.java | 8 +-- .../RetentionLabelRequestBuilder.java | 20 +++--- .../SearchWithQRequestBuilder.java | 12 ++-- .../thumbnails/ThumbnailsRequestBuilder.java | 12 ++-- .../item/ThumbnailSetItemRequestBuilder.java | 10 +-- .../item/versions/VersionsRequestBuilder.java | 12 ++-- .../DriveItemVersionItemRequestBuilder.java | 12 ++-- .../item/content/ContentRequestBuilder.java | 2 - .../ApplicationRequestBuilder.java | 12 ++-- .../item/replies/RepliesRequestBuilder.java | 10 +-- ...orkbookCommentReplyItemRequestBuilder.java | 12 ++-- .../workbook/names/NamesRequestBuilder.java | 12 ++-- .../WorkbookNamedItemItemRequestBuilder.java | 22 +++--- .../operations/OperationsRequestBuilder.java | 10 +-- .../WorkbookOperationItemRequestBuilder.java | 12 ++-- ...wOperationResultWithKeyRequestBuilder.java | 10 +-- .../workbook/tables/TablesRequestBuilder.java | 12 ++-- .../tables/add/AddRequestBuilder.java | 12 ++-- .../item/WorkbookTableItemRequestBuilder.java | 32 ++++----- .../item/columns/ColumnsRequestBuilder.java | 22 +++--- ...WorkbookTableColumnItemRequestBuilder.java | 32 ++++----- .../ItemAtWithIndexRequestBuilder.java | 10 +-- .../tables/item/rows/RowsRequestBuilder.java | 22 +++--- .../WorkbookTableRowItemRequestBuilder.java | 32 ++++----- .../ItemAtWithIndexRequestBuilder.java | 10 +-- .../tables/item/sort/SortRequestBuilder.java | 12 ++-- .../columns/ColumnsRequestBuilder.java | 22 +++--- .../rows/RowsRequestBuilder.java | 22 +++--- .../sort/SortRequestBuilder.java | 12 ++-- .../worksheets/WorksheetsRequestBuilder.java | 12 ++-- .../WorkbookWorksheetItemRequestBuilder.java | 32 ++++----- .../CellWithRowWithColumnRequestBuilder.java | 10 +-- .../item/charts/ChartsRequestBuilder.java | 22 +++--- .../item/WorkbookChartItemRequestBuilder.java | 32 ++++----- .../format/font/FontRequestBuilder.java | 22 +++--- .../format/line/LineRequestBuilder.java | 22 +++--- .../MinorGridlinesRequestBuilder.java | 22 +++--- .../title/TitleRequestBuilder.java | 22 +++--- .../format/font/FontRequestBuilder.java | 22 +++--- .../format/line/LineRequestBuilder.java | 22 +++--- .../MinorGridlinesRequestBuilder.java | 22 +++--- .../seriesaxis/title/TitleRequestBuilder.java | 22 +++--- .../valueaxis/ValueAxisRequestBuilder.java | 22 +++--- .../format/font/FontRequestBuilder.java | 22 +++--- .../format/line/LineRequestBuilder.java | 22 +++--- .../MinorGridlinesRequestBuilder.java | 22 +++--- .../valueaxis/title/TitleRequestBuilder.java | 22 +++--- .../datalabels/DataLabelsRequestBuilder.java | 22 +++--- .../item/legend/LegendRequestBuilder.java | 22 +++--- .../item/series/SeriesRequestBuilder.java | 22 +++--- ...WorkbookChartSeriesItemRequestBuilder.java | 22 +++--- .../item/points/PointsRequestBuilder.java | 22 +++--- .../WorkbookChartPointItemRequestBuilder.java | 12 ++-- .../ItemAtWithIndexRequestBuilder.java | 10 +-- .../ItemAtWithIndexRequestBuilder.java | 10 +-- .../points/PointsRequestBuilder.java | 22 +++--- .../item/title/TitleRequestBuilder.java | 22 +++--- .../ItemAtWithIndexRequestBuilder.java | 10 +-- .../datalabels/DataLabelsRequestBuilder.java | 22 +++--- .../legend/LegendRequestBuilder.java | 22 +++--- .../series/SeriesRequestBuilder.java | 22 +++--- .../title/TitleRequestBuilder.java | 22 +++--- .../datalabels/DataLabelsRequestBuilder.java | 22 +++--- .../legend/LegendRequestBuilder.java | 22 +++--- .../series/SeriesRequestBuilder.java | 22 +++--- .../title/TitleRequestBuilder.java | 22 +++--- .../item/names/NamesRequestBuilder.java | 12 ++-- .../PivotTablesRequestBuilder.java | 12 ++-- .../WorkbookPivotTableItemRequestBuilder.java | 12 ++-- .../protection/ProtectionRequestBuilder.java | 12 ++-- .../item/tables/TablesRequestBuilder.java | 12 ++-- .../item/tables/add/AddRequestBuilder.java | 12 ++-- .../item/columns/ColumnsRequestBuilder.java | 22 +++--- ...WorkbookTableColumnItemRequestBuilder.java | 32 ++++----- .../ItemAtWithIndexRequestBuilder.java | 10 +-- .../tables/item/rows/RowsRequestBuilder.java | 22 +++--- .../WorkbookTableRowItemRequestBuilder.java | 32 ++++----- .../ItemAtWithIndexRequestBuilder.java | 10 +-- .../tables/item/sort/SortRequestBuilder.java | 12 ++-- .../columns/ColumnsRequestBuilder.java | 22 +++--- .../rows/RowsRequestBuilder.java | 22 +++--- .../sort/SortRequestBuilder.java | 12 ++-- .../list/columns/ColumnsRequestBuilder.java | 22 +++--- .../ContentTypesRequestBuilder.java | 12 ++-- .../addcopy/AddCopyRequestBuilder.java | 8 +-- ...mpatibleHubContentTypesRequestBuilder.java | 12 ++-- .../AssociateWithHubSitesRequestBuilder.java | 8 +-- .../item/columns/ColumnsRequestBuilder.java | 22 +++--- .../ColumnDefinitionItemRequestBuilder.java | 32 ++++----- ...oDefaultContentLocationRequestBuilder.java | 8 +-- .../IsPublishedRequestBuilder.java | 10 +-- .../item/publish/PublishRequestBuilder.java | 8 +-- .../unpublish/UnpublishRequestBuilder.java | 8 +-- .../item/list/items/ItemsRequestBuilder.java | 22 +++--- .../list/items/delta/DeltaRequestBuilder.java | 12 ++-- .../item/ListItemItemRequestBuilder.java | 22 +++--- .../DocumentSetVersionsRequestBuilder.java | 22 +++--- .../DocumentSetVersionItemRequestBuilder.java | 22 +++--- .../driveitem/DriveItemRequestBuilder.java | 10 +-- .../item/fields/FieldsRequestBuilder.java | 10 ++- .../item/versions/VersionsRequestBuilder.java | 12 ++-- .../ListItemVersionItemRequestBuilder.java | 12 ++-- .../item/recent/RecentRequestBuilder.java | 12 ++-- .../drives/item/root/RootRequestBuilder.java | 12 ++-- .../root/content/ContentRequestBuilder.java | 2 - .../SearchWithQRequestBuilder.java | 12 ++-- .../SharedWithMeRequestBuilder.java | 12 ++-- .../item/special/SpecialRequestBuilder.java | 10 +-- .../item/DriveItemItemRequestBuilder.java | 12 ++-- .../classes/ClassesRequestBuilder.java | 22 +++--- .../classes/delta/DeltaRequestBuilder.java | 12 ++-- .../EducationClassItemRequestBuilder.java | 32 ++++----- .../AssignmentCategoriesRequestBuilder.java | 22 +++--- .../delta/DeltaRequestBuilder.java | 12 ++-- .../EducationCategoryItemRequestBuilder.java | 22 +++--- .../AssignmentDefaultsRequestBuilder.java | 22 +++--- .../AssignmentsRequestBuilder.java | 22 +++--- .../delta/DeltaRequestBuilder.java | 12 ++-- ...EducationAssignmentItemRequestBuilder.java | 32 ++++----- .../categories/CategoriesRequestBuilder.java | 22 +++--- .../categories/delta/DeltaRequestBuilder.java | 12 ++-- .../item/ref/RefRequestBuilder.java | 10 ++- .../categories/ref/RefRequestBuilder.java | 34 ++++------ .../resources/ResourcesRequestBuilder.java | 22 +++--- ...nAssignmentResourceItemRequestBuilder.java | 22 +++--- .../item/rubric/RubricRequestBuilder.java | 32 ++++----- .../item/rubric/ref/RefRequestBuilder.java | 30 ++++---- .../SubmissionsRequestBuilder.java | 12 ++-- ...EducationSubmissionItemRequestBuilder.java | 12 ++-- .../item/outcomes/OutcomesRequestBuilder.java | 22 +++--- .../EducationOutcomeItemRequestBuilder.java | 20 +++--- .../resources/ResourcesRequestBuilder.java | 22 +++--- ...nSubmissionResourceItemRequestBuilder.java | 22 +++--- .../SubmittedResourcesRequestBuilder.java | 12 ++-- ...nSubmissionResourceItemRequestBuilder.java | 12 ++-- .../AssignmentSettingsRequestBuilder.java | 10 ++- ...tionGradingCategoryItemRequestBuilder.java | 10 ++- .../item/members/MembersRequestBuilder.java | 12 ++-- .../members/item/ref/RefRequestBuilder.java | 10 ++- .../item/members/ref/RefRequestBuilder.java | 34 ++++------ .../item/modules/ModulesRequestBuilder.java | 22 +++--- .../EducationModuleItemRequestBuilder.java | 32 ++++----- .../resources/ResourcesRequestBuilder.java | 22 +++--- ...ationModuleResourceItemRequestBuilder.java | 32 ++++----- .../item/schools/SchoolsRequestBuilder.java | 12 ++-- .../item/teachers/TeachersRequestBuilder.java | 12 ++-- .../teachers/item/ref/RefRequestBuilder.java | 10 ++- .../item/teachers/ref/RefRequestBuilder.java | 34 ++++------ .../AssignmentsRequestBuilder.java | 12 ++-- .../delta/DeltaRequestBuilder.java | 12 ++-- .../categories/CategoriesRequestBuilder.java | 22 +++--- .../categories/delta/DeltaRequestBuilder.java | 12 ++-- .../item/ref/RefRequestBuilder.java | 10 ++- .../categories/ref/RefRequestBuilder.java | 34 ++++------ .../resources/ResourcesRequestBuilder.java | 22 +++--- ...nAssignmentResourceItemRequestBuilder.java | 22 +++--- .../item/rubric/RubricRequestBuilder.java | 32 ++++----- .../item/rubric/ref/RefRequestBuilder.java | 30 ++++---- .../SubmissionsRequestBuilder.java | 12 ++-- ...EducationSubmissionItemRequestBuilder.java | 12 ++-- .../item/outcomes/OutcomesRequestBuilder.java | 22 +++--- .../EducationOutcomeItemRequestBuilder.java | 20 +++--- .../resources/ResourcesRequestBuilder.java | 22 +++--- ...nSubmissionResourceItemRequestBuilder.java | 22 +++--- .../SubmittedResourcesRequestBuilder.java | 12 ++-- ...nSubmissionResourceItemRequestBuilder.java | 12 ++-- .../me/classes/ClassesRequestBuilder.java | 12 ++-- .../me/rubrics/RubricsRequestBuilder.java | 22 +++--- .../EducationRubricItemRequestBuilder.java | 32 ++++----- .../me/schools/SchoolsRequestBuilder.java | 12 ++-- .../TaughtClassesRequestBuilder.java | 12 ++-- .../education/me/user/UserRequestBuilder.java | 12 ++-- .../schools/SchoolsRequestBuilder.java | 22 +++--- .../schools/delta/DeltaRequestBuilder.java | 12 ++-- .../EducationSchoolItemRequestBuilder.java | 32 ++++----- .../AdministrativeUnitRequestBuilder.java | 12 ++-- .../item/classes/ClassesRequestBuilder.java | 12 ++-- .../classes/item/ref/RefRequestBuilder.java | 10 ++- .../item/classes/ref/RefRequestBuilder.java | 34 ++++------ .../item/users/UsersRequestBuilder.java | 12 ++-- .../users/item/ref/RefRequestBuilder.java | 10 ++- .../item/users/ref/RefRequestBuilder.java | 34 ++++------ .../education/users/UsersRequestBuilder.java | 22 +++--- .../users/delta/DeltaRequestBuilder.java | 12 ++-- .../item/EducationUserItemRequestBuilder.java | 32 ++++----- .../AssignmentsRequestBuilder.java | 12 ++-- .../delta/DeltaRequestBuilder.java | 12 ++-- .../categories/CategoriesRequestBuilder.java | 22 +++--- .../categories/delta/DeltaRequestBuilder.java | 12 ++-- .../item/ref/RefRequestBuilder.java | 10 ++- .../categories/ref/RefRequestBuilder.java | 34 ++++------ .../resources/ResourcesRequestBuilder.java | 22 +++--- ...nAssignmentResourceItemRequestBuilder.java | 22 +++--- .../item/rubric/RubricRequestBuilder.java | 32 ++++----- .../item/rubric/ref/RefRequestBuilder.java | 30 ++++---- .../SubmissionsRequestBuilder.java | 12 ++-- ...EducationSubmissionItemRequestBuilder.java | 12 ++-- .../item/outcomes/OutcomesRequestBuilder.java | 22 +++--- .../EducationOutcomeItemRequestBuilder.java | 20 +++--- .../resources/ResourcesRequestBuilder.java | 22 +++--- ...nSubmissionResourceItemRequestBuilder.java | 22 +++--- .../SubmittedResourcesRequestBuilder.java | 12 ++-- ...nSubmissionResourceItemRequestBuilder.java | 12 ++-- .../item/classes/ClassesRequestBuilder.java | 12 ++-- .../item/rubrics/RubricsRequestBuilder.java | 22 +++--- .../EducationRubricItemRequestBuilder.java | 32 ++++----- .../item/schools/SchoolsRequestBuilder.java | 12 ++-- .../TaughtClassesRequestBuilder.java | 12 ++-- .../users/item/user/UserRequestBuilder.java | 12 ++-- ...earningCourseActivitiesRequestBuilder.java | 10 +-- ...rningCourseActivityItemRequestBuilder.java | 12 ++-- ...xternalcourseActivityIdRequestBuilder.java | 12 ++-- .../LearningProvidersRequestBuilder.java | 22 +++--- .../LearningProviderItemRequestBuilder.java | 32 ++++----- .../LearningContentsRequestBuilder.java | 12 ++-- .../LearningContentItemRequestBuilder.java | 22 +++--- ...gContentsWithExternalIdRequestBuilder.java | 22 +++--- ...earningCourseActivitiesRequestBuilder.java | 10 ++- ...rningCourseActivityItemRequestBuilder.java | 20 +++--- ...xternalcourseActivityIdRequestBuilder.java | 20 +++--- .../ConnectionsRequestBuilder.java | 22 +++--- .../ExternalConnectionItemRequestBuilder.java | 32 ++++----- .../item/groups/GroupsRequestBuilder.java | 20 +++--- .../item/ExternalGroupItemRequestBuilder.java | 32 ++++----- .../item/members/MembersRequestBuilder.java | 10 ++- .../item/IdentityItemRequestBuilder.java | 10 ++- .../item/items/ItemsRequestBuilder.java | 10 +-- .../item/ExternalItemItemRequestBuilder.java | 22 +++--- .../operations/OperationsRequestBuilder.java | 10 +-- ...ConnectionOperationItemRequestBuilder.java | 12 ++-- .../item/schema/SchemaRequestBuilder.java | 22 +++--- .../groups/delta/DeltaRequestBuilder.java | 12 ++-- .../AcceptedSendersRequestBuilder.java | 12 ++-- .../item/ref/RefRequestBuilder.java | 10 ++- .../ref/RefRequestBuilder.java | 34 ++++------ .../AppRoleAssignmentsRequestBuilder.java | 12 ++-- .../AppRoleAssignmentItemRequestBuilder.java | 10 ++- .../CalendarPermissionsRequestBuilder.java | 22 +++--- .../CalendarPermissionItemRequestBuilder.java | 32 ++++----- .../CalendarViewRequestBuilder.java | 2 - .../AttachmentsRequestBuilder.java | 22 +++--- .../item/AttachmentItemRequestBuilder.java | 10 ++- .../extensions/ExtensionsRequestBuilder.java | 20 +++--- .../item/ExtensionItemRequestBuilder.java | 12 ++-- .../instances/InstancesRequestBuilder.java | 2 - .../AttachmentsRequestBuilder.java | 22 +++--- .../item/AttachmentItemRequestBuilder.java | 10 ++- .../extensions/ExtensionsRequestBuilder.java | 20 +++--- .../item/ExtensionItemRequestBuilder.java | 12 ++-- .../calendar/events/EventsRequestBuilder.java | 22 +++--- .../events/item/EventItemRequestBuilder.java | 10 ++- .../AttachmentsRequestBuilder.java | 22 +++--- .../item/AttachmentItemRequestBuilder.java | 10 ++- .../extensions/ExtensionsRequestBuilder.java | 20 +++--- .../item/ExtensionItemRequestBuilder.java | 12 ++-- .../instances/InstancesRequestBuilder.java | 2 - .../AttachmentsRequestBuilder.java | 22 +++--- .../item/AttachmentItemRequestBuilder.java | 10 ++- .../extensions/ExtensionsRequestBuilder.java | 20 +++--- .../item/ExtensionItemRequestBuilder.java | 12 ++-- .../CalendarViewRequestBuilder.java | 2 - .../AttachmentsRequestBuilder.java | 22 +++--- .../item/AttachmentItemRequestBuilder.java | 10 ++- .../extensions/ExtensionsRequestBuilder.java | 20 +++--- .../item/ExtensionItemRequestBuilder.java | 12 ++-- .../instances/InstancesRequestBuilder.java | 2 - .../AttachmentsRequestBuilder.java | 22 +++--- .../item/AttachmentItemRequestBuilder.java | 10 ++- .../extensions/ExtensionsRequestBuilder.java | 20 +++--- .../item/ExtensionItemRequestBuilder.java | 12 ++-- .../ConversationsRequestBuilder.java | 22 +++--- .../item/ConversationItemRequestBuilder.java | 22 +++--- .../item/threads/ThreadsRequestBuilder.java | 22 +++--- .../item/posts/PostsRequestBuilder.java | 12 ++-- .../AttachmentsRequestBuilder.java | 12 ++-- .../extensions/ExtensionsRequestBuilder.java | 10 +-- .../item/ExtensionItemRequestBuilder.java | 22 +++--- .../AttachmentsRequestBuilder.java | 12 ++-- .../extensions/ExtensionsRequestBuilder.java | 10 +-- .../item/ExtensionItemRequestBuilder.java | 22 +++--- .../item/events/EventsRequestBuilder.java | 22 +++--- .../events/item/EventItemRequestBuilder.java | 22 +++--- .../AttachmentsRequestBuilder.java | 22 +++--- .../item/AttachmentItemRequestBuilder.java | 10 ++- .../extensions/ExtensionsRequestBuilder.java | 20 +++--- .../item/ExtensionItemRequestBuilder.java | 12 ++-- .../instances/InstancesRequestBuilder.java | 2 - .../AttachmentsRequestBuilder.java | 22 +++--- .../item/AttachmentItemRequestBuilder.java | 10 ++- .../extensions/ExtensionsRequestBuilder.java | 20 +++--- .../item/ExtensionItemRequestBuilder.java | 12 ++-- .../GroupLifecyclePoliciesRequestBuilder.java | 12 ++-- .../item/memberof/MemberOfRequestBuilder.java | 2 - .../item/members/MembersRequestBuilder.java | 2 - .../members/item/ref/RefRequestBuilder.java | 10 ++- .../item/members/ref/RefRequestBuilder.java | 24 +++---- .../notebooks/NotebooksRequestBuilder.java | 22 +++--- ...ncludePersonalNotebooksRequestBuilder.java | 12 ++-- .../item/NotebookItemRequestBuilder.java | 12 ++-- .../SectionGroupsRequestBuilder.java | 22 +++--- .../SectionGroupsRequestBuilder.java | 12 ++-- .../item/sections/SectionsRequestBuilder.java | 22 +++--- .../item/pages/PagesRequestBuilder.java | 22 +++--- .../item/content/ContentRequestBuilder.java | 2 - .../item/sections/SectionsRequestBuilder.java | 22 +++--- .../item/pages/PagesRequestBuilder.java | 22 +++--- .../item/content/ContentRequestBuilder.java | 2 - .../operations/OperationsRequestBuilder.java | 10 +-- .../OnenoteOperationItemRequestBuilder.java | 12 ++-- .../onenote/pages/PagesRequestBuilder.java | 22 +++--- .../item/OnenotePageItemRequestBuilder.java | 22 +++--- .../item/content/ContentRequestBuilder.java | 2 - .../SectionGroupsRequestBuilder.java | 12 ++-- .../item/SectionGroupItemRequestBuilder.java | 12 ++-- .../SectionGroupsRequestBuilder.java | 12 ++-- .../item/sections/SectionsRequestBuilder.java | 22 +++--- .../item/pages/PagesRequestBuilder.java | 22 +++--- .../item/content/ContentRequestBuilder.java | 2 - .../sections/SectionsRequestBuilder.java | 12 ++-- .../OnenoteSectionItemRequestBuilder.java | 12 ++-- .../item/pages/PagesRequestBuilder.java | 22 +++--- .../item/content/ContentRequestBuilder.java | 2 - .../item/owners/OwnersRequestBuilder.java | 2 - .../owners/item/ref/RefRequestBuilder.java | 10 ++- .../item/owners/ref/RefRequestBuilder.java | 24 +++---- .../PermissionGrantsRequestBuilder.java | 12 ++-- .../item/photos/PhotosRequestBuilder.java | 12 ++-- .../item/value/ContentRequestBuilder.java | 2 - .../planner/plans/PlansRequestBuilder.java | 12 ++-- .../item/buckets/BucketsRequestBuilder.java | 12 ++-- .../item/tasks/TasksRequestBuilder.java | 12 ++-- ...signedToTaskBoardFormatRequestBuilder.java | 14 ++-- .../BucketTaskBoardFormatRequestBuilder.java | 14 ++-- .../item/details/DetailsRequestBuilder.java | 14 ++-- ...ProgressTaskBoardFormatRequestBuilder.java | 14 ++-- .../item/details/DetailsRequestBuilder.java | 14 ++-- .../plans/item/tasks/TasksRequestBuilder.java | 12 ++-- ...signedToTaskBoardFormatRequestBuilder.java | 14 ++-- .../BucketTaskBoardFormatRequestBuilder.java | 14 ++-- .../item/details/DetailsRequestBuilder.java | 14 ++-- ...ProgressTaskBoardFormatRequestBuilder.java | 14 ++-- .../RejectedSendersRequestBuilder.java | 12 ++-- .../item/ref/RefRequestBuilder.java | 10 ++- .../ref/RefRequestBuilder.java | 34 ++++------ .../item/settings/SettingsRequestBuilder.java | 22 +++--- .../item/GroupSettingItemRequestBuilder.java | 22 +++--- .../item/sites/delta/DeltaRequestBuilder.java | 12 ++-- .../GetAllSitesRequestBuilder.java | 12 ++-- .../alltime/AllTimeRequestBuilder.java | 12 ++-- .../item/columns/ColumnsRequestBuilder.java | 22 +++--- .../ContentTypesRequestBuilder.java | 22 +++--- .../addcopy/AddCopyRequestBuilder.java | 8 +-- ...mpatibleHubContentTypesRequestBuilder.java | 12 ++-- .../item/ContentTypeItemRequestBuilder.java | 32 ++++----- .../AssociateWithHubSitesRequestBuilder.java | 8 +-- .../item/columns/ColumnsRequestBuilder.java | 22 +++--- .../ColumnDefinitionItemRequestBuilder.java | 32 ++++----- ...oDefaultContentLocationRequestBuilder.java | 8 +-- .../IsPublishedRequestBuilder.java | 10 +-- .../item/publish/PublishRequestBuilder.java | 8 +-- .../unpublish/UnpublishRequestBuilder.java | 8 +-- ...tTypesForListWithListIdRequestBuilder.java | 12 ++-- .../columns/ColumnsRequestBuilder.java | 22 +++--- .../ContentTypesRequestBuilder.java | 22 +++--- ...tTypesForListWithListIdRequestBuilder.java | 12 ++-- .../columns/ColumnsRequestBuilder.java | 22 +++--- .../ContentTypesRequestBuilder.java | 22 +++--- .../lists/ListsRequestBuilder.java | 22 +++--- .../operations/OperationsRequestBuilder.java | 12 ++-- .../pages/PagesRequestBuilder.java | 22 +++--- .../PermissionsRequestBuilder.java | 22 +++--- .../sites/SitesRequestBuilder.java | 12 ++-- .../termstore/TermStoreRequestBuilder.java | 22 +++--- .../lists/ListsRequestBuilder.java | 22 +++--- .../operations/OperationsRequestBuilder.java | 12 ++-- .../pages/PagesRequestBuilder.java | 22 +++--- .../PermissionsRequestBuilder.java | 22 +++--- .../sites/SitesRequestBuilder.java | 12 ++-- .../termstore/TermStoreRequestBuilder.java | 22 +++--- .../sites/item/lists/ListsRequestBuilder.java | 22 +++--- .../lists/item/ListItemRequestBuilder.java | 12 ++-- .../item/columns/ColumnsRequestBuilder.java | 22 +++--- .../ContentTypesRequestBuilder.java | 12 ++-- .../addcopy/AddCopyRequestBuilder.java | 8 +-- ...mpatibleHubContentTypesRequestBuilder.java | 12 ++-- .../AssociateWithHubSitesRequestBuilder.java | 8 +-- .../item/columns/ColumnsRequestBuilder.java | 22 +++--- .../ColumnDefinitionItemRequestBuilder.java | 32 ++++----- ...oDefaultContentLocationRequestBuilder.java | 8 +-- .../IsPublishedRequestBuilder.java | 10 +-- .../item/publish/PublishRequestBuilder.java | 8 +-- .../unpublish/UnpublishRequestBuilder.java | 8 +-- .../lists/item/items/ItemsRequestBuilder.java | 22 +++--- .../item/items/delta/DeltaRequestBuilder.java | 12 ++-- .../item/ListItemItemRequestBuilder.java | 22 +++--- .../DocumentSetVersionsRequestBuilder.java | 22 +++--- .../DocumentSetVersionItemRequestBuilder.java | 22 +++--- .../driveitem/DriveItemRequestBuilder.java | 10 +-- .../item/fields/FieldsRequestBuilder.java | 10 ++- .../item/versions/VersionsRequestBuilder.java | 12 ++-- .../ListItemVersionItemRequestBuilder.java | 12 ++-- .../notebooks/NotebooksRequestBuilder.java | 22 +++--- ...ncludePersonalNotebooksRequestBuilder.java | 12 ++-- .../item/NotebookItemRequestBuilder.java | 12 ++-- .../SectionGroupsRequestBuilder.java | 22 +++--- .../SectionGroupsRequestBuilder.java | 12 ++-- .../item/sections/SectionsRequestBuilder.java | 22 +++--- .../item/pages/PagesRequestBuilder.java | 22 +++--- .../item/content/ContentRequestBuilder.java | 2 - .../item/sections/SectionsRequestBuilder.java | 22 +++--- .../item/pages/PagesRequestBuilder.java | 22 +++--- .../item/content/ContentRequestBuilder.java | 2 - .../operations/OperationsRequestBuilder.java | 10 +-- .../OnenoteOperationItemRequestBuilder.java | 12 ++-- .../onenote/pages/PagesRequestBuilder.java | 22 +++--- .../item/OnenotePageItemRequestBuilder.java | 22 +++--- .../item/content/ContentRequestBuilder.java | 2 - .../SectionGroupsRequestBuilder.java | 12 ++-- .../item/SectionGroupItemRequestBuilder.java | 12 ++-- .../SectionGroupsRequestBuilder.java | 12 ++-- .../item/sections/SectionsRequestBuilder.java | 22 +++--- .../item/pages/PagesRequestBuilder.java | 22 +++--- .../item/content/ContentRequestBuilder.java | 2 - .../sections/SectionsRequestBuilder.java | 12 ++-- .../OnenoteSectionItemRequestBuilder.java | 12 ++-- .../item/pages/PagesRequestBuilder.java | 22 +++--- .../item/content/ContentRequestBuilder.java | 2 - .../operations/OperationsRequestBuilder.java | 12 ++-- ...ongRunningOperationItemRequestBuilder.java | 12 ++-- .../sites/item/pages/PagesRequestBuilder.java | 22 +++--- .../item/BaseSitePageItemRequestBuilder.java | 22 +++--- .../PermissionsRequestBuilder.java | 22 +++--- .../item/PermissionItemRequestBuilder.java | 32 ++++----- .../item/grant/GrantRequestBuilder.java | 8 +-- .../sites/item/sites/SitesRequestBuilder.java | 12 ++-- .../termstore/TermStoreRequestBuilder.java | 22 +++--- .../groups/GroupsRequestBuilder.java | 22 +++--- .../groups/item/GroupItemRequestBuilder.java | 22 +++--- .../groups/item/sets/SetsRequestBuilder.java | 12 ++-- .../item/children/ChildrenRequestBuilder.java | 22 +++--- .../relations/RelationsRequestBuilder.java | 12 ++-- .../sets/item/terms/TermsRequestBuilder.java | 10 +-- .../terms/item/TermItemRequestBuilder.java | 32 ++++----- .../termstore/sets/SetsRequestBuilder.java | 20 +++--- .../sets/item/SetItemRequestBuilder.java | 32 ++++----- .../item/children/ChildrenRequestBuilder.java | 22 +++--- .../parentgroup/sets/SetsRequestBuilder.java | 12 ++-- .../item/children/ChildrenRequestBuilder.java | 22 +++--- .../relations/RelationsRequestBuilder.java | 12 ++-- .../sets/item/terms/TermsRequestBuilder.java | 10 +-- .../terms/item/TermItemRequestBuilder.java | 32 ++++----- .../relations/RelationsRequestBuilder.java | 12 ++-- .../sets/item/terms/TermsRequestBuilder.java | 10 +-- .../terms/item/TermItemRequestBuilder.java | 32 ++++----- .../item/groups/GroupsRequestBuilder.java | 22 +++--- .../groups/item/GroupItemRequestBuilder.java | 22 +++--- .../groups/item/sets/SetsRequestBuilder.java | 12 ++-- .../item/children/ChildrenRequestBuilder.java | 22 +++--- .../relations/RelationsRequestBuilder.java | 12 ++-- .../sets/item/terms/TermsRequestBuilder.java | 10 +-- .../terms/item/TermItemRequestBuilder.java | 32 ++++----- .../item/sets/SetsRequestBuilder.java | 20 +++--- .../item/sets/item/SetItemRequestBuilder.java | 32 ++++----- .../item/children/ChildrenRequestBuilder.java | 22 +++--- .../parentgroup/sets/SetsRequestBuilder.java | 12 ++-- .../item/children/ChildrenRequestBuilder.java | 22 +++--- .../relations/RelationsRequestBuilder.java | 12 ++-- .../sets/item/terms/TermsRequestBuilder.java | 10 +-- .../terms/item/TermItemRequestBuilder.java | 32 ++++----- .../relations/RelationsRequestBuilder.java | 12 ++-- .../sets/item/terms/TermsRequestBuilder.java | 10 +-- .../terms/item/TermItemRequestBuilder.java | 32 ++++----- .../AllChannelsRequestBuilder.java | 12 ++-- .../team/channels/ChannelsRequestBuilder.java | 22 +++--- .../GetAllMessagesRequestBuilder.java | 12 ++-- .../item/ChannelItemRequestBuilder.java | 32 ++++----- ...alNameUserPrincipalNameRequestBuilder.java | 12 ++-- .../FilesFolderRequestBuilder.java | 12 ++-- .../content/ContentRequestBuilder.java | 2 - .../item/members/MembersRequestBuilder.java | 22 +++--- .../ConversationMemberItemRequestBuilder.java | 32 ++++----- .../item/messages/MessagesRequestBuilder.java | 22 +++--- .../messages/delta/DeltaRequestBuilder.java | 12 ++-- .../item/ChatMessageItemRequestBuilder.java | 22 +++--- .../HostedContentsRequestBuilder.java | 12 ++-- ...essageHostedContentItemRequestBuilder.java | 12 ++-- .../item/value/ContentRequestBuilder.java | 2 - .../item/replies/RepliesRequestBuilder.java | 22 +++--- .../replies/delta/DeltaRequestBuilder.java | 12 ++-- .../item/ChatMessageItemRequestBuilder.java | 12 ++-- .../HostedContentsRequestBuilder.java | 12 ++-- ...essageHostedContentItemRequestBuilder.java | 12 ++-- .../item/value/ContentRequestBuilder.java | 2 - .../SharedWithTeamsRequestBuilder.java | 12 ++-- ...WithChannelTeamInfoItemRequestBuilder.java | 22 +++--- .../AllowedMembersRequestBuilder.java | 12 ++-- .../item/tabs/TabsRequestBuilder.java | 22 +++--- .../tabs/item/TeamsTabItemRequestBuilder.java | 32 ++++----- .../item/team/clone/CloneRequestBuilder.java | 8 +-- .../IncomingChannelsRequestBuilder.java | 12 ++-- .../InstalledAppsRequestBuilder.java | 22 +++--- ...eamsAppInstallationItemRequestBuilder.java | 22 +++--- .../team/members/MembersRequestBuilder.java | 22 +++--- .../ConversationMemberItemRequestBuilder.java | 32 ++++----- .../PermissionGrantsRequestBuilder.java | 12 ++-- .../item/team/photo/PhotoRequestBuilder.java | 12 ++-- .../photo/value/ContentRequestBuilder.java | 2 - .../PrimaryChannelRequestBuilder.java | 12 ++-- ...alNameUserPrincipalNameRequestBuilder.java | 12 ++-- .../FilesFolderRequestBuilder.java | 12 ++-- .../content/ContentRequestBuilder.java | 2 - .../members/MembersRequestBuilder.java | 22 +++--- .../ConversationMemberItemRequestBuilder.java | 32 ++++----- .../messages/MessagesRequestBuilder.java | 22 +++--- .../messages/delta/DeltaRequestBuilder.java | 12 ++-- .../item/ChatMessageItemRequestBuilder.java | 22 +++--- .../HostedContentsRequestBuilder.java | 12 ++-- ...essageHostedContentItemRequestBuilder.java | 12 ++-- .../item/value/ContentRequestBuilder.java | 2 - .../item/replies/RepliesRequestBuilder.java | 22 +++--- .../replies/delta/DeltaRequestBuilder.java | 12 ++-- .../item/ChatMessageItemRequestBuilder.java | 12 ++-- .../HostedContentsRequestBuilder.java | 12 ++-- ...essageHostedContentItemRequestBuilder.java | 12 ++-- .../item/value/ContentRequestBuilder.java | 2 - .../SharedWithTeamsRequestBuilder.java | 12 ++-- ...WithChannelTeamInfoItemRequestBuilder.java | 22 +++--- .../AllowedMembersRequestBuilder.java | 12 ++-- .../tabs/TabsRequestBuilder.java | 22 +++--- .../tabs/item/TeamsTabItemRequestBuilder.java | 32 ++++----- .../team/schedule/ScheduleRequestBuilder.java | 12 ++-- .../OfferShiftRequestsRequestBuilder.java | 22 +++--- .../OfferShiftRequestItemRequestBuilder.java | 12 ++-- ...OpenShiftChangeRequestsRequestBuilder.java | 22 +++--- ...nShiftChangeRequestItemRequestBuilder.java | 12 ++-- .../openshifts/OpenShiftsRequestBuilder.java | 22 +++--- .../item/OpenShiftItemRequestBuilder.java | 32 ++++----- .../SchedulingGroupsRequestBuilder.java | 22 +++--- .../SchedulingGroupItemRequestBuilder.java | 32 ++++----- .../schedule/shifts/ShiftsRequestBuilder.java | 22 +++--- .../shifts/item/ShiftItemRequestBuilder.java | 32 ++++----- ...wapShiftsChangeRequestsRequestBuilder.java | 22 +++--- ...ShiftsChangeRequestItemRequestBuilder.java | 12 ++-- .../TimeOffReasonsRequestBuilder.java | 22 +++--- .../item/TimeOffReasonItemRequestBuilder.java | 32 ++++----- .../TimeOffRequestsRequestBuilder.java | 12 ++-- .../TimeOffRequestItemRequestBuilder.java | 22 +++--- .../timesoff/TimesOffRequestBuilder.java | 22 +++--- .../item/TimeOffItemRequestBuilder.java | 32 ++++----- .../item/team/tags/TagsRequestBuilder.java | 22 +++--- .../item/TeamworkTagItemRequestBuilder.java | 32 ++++----- .../item/members/MembersRequestBuilder.java | 22 +++--- .../TeamworkTagMemberItemRequestBuilder.java | 22 +++--- .../item/threads/ThreadsRequestBuilder.java | 22 +++--- .../ConversationThreadItemRequestBuilder.java | 32 ++++----- .../item/posts/PostsRequestBuilder.java | 12 ++-- .../AttachmentsRequestBuilder.java | 12 ++-- .../extensions/ExtensionsRequestBuilder.java | 10 +-- .../item/ExtensionItemRequestBuilder.java | 22 +++--- .../AttachmentsRequestBuilder.java | 12 ++-- .../extensions/ExtensionsRequestBuilder.java | 10 +-- .../item/ExtensionItemRequestBuilder.java | 22 +++--- .../TransitiveMemberOfRequestBuilder.java | 2 - .../TransitiveMembersRequestBuilder.java | 2 - .../delta/DeltaRequestBuilder.java | 12 ++-- .../ApiConnectorsRequestBuilder.java | 22 +++--- ...dentityApiConnectorItemRequestBuilder.java | 32 ++++----- .../B2xUserFlowsRequestBuilder.java | 22 +++--- ...B2xIdentityUserFlowItemRequestBuilder.java | 22 +++--- .../IdentityProvidersRequestBuilder.java | 12 ++-- .../languages/LanguagesRequestBuilder.java | 12 ++-- ...nguageConfigurationItemRequestBuilder.java | 12 ++-- .../OverridesPagesRequestBuilder.java | 12 ++-- .../item/value/ContentRequestBuilder.java | 2 - ...serAttributeAssignmentsRequestBuilder.java | 22 +++--- .../getorder/GetOrderRequestBuilder.java | 10 +-- ...AttributeAssignmentItemRequestBuilder.java | 32 ++++----- ...nContextClassReferencesRequestBuilder.java | 12 ++-- ...ntextClassReferenceItemRequestBuilder.java | 32 ++++----- ...thenticationMethodModesRequestBuilder.java | 12 ++-- ...mbinationConfigurationsRequestBuilder.java | 22 +++--- ...nationConfigurationItemRequestBuilder.java | 32 ++++----- .../item/usage/UsageRequestBuilder.java | 10 +-- .../NamedLocationsRequestBuilder.java | 22 +++--- .../item/NamedLocationItemRequestBuilder.java | 32 ++++----- .../policies/PoliciesRequestBuilder.java | 22 +++--- ...itionalAccessPolicyItemRequestBuilder.java | 32 ++++----- .../templates/TemplatesRequestBuilder.java | 12 ++-- ...ionalAccessTemplateItemRequestBuilder.java | 12 ++-- .../IdentityProvidersRequestBuilder.java | 22 +++--- .../AvailableProviderTypesRequestBuilder.java | 12 ++-- ...dentityProviderBaseItemRequestBuilder.java | 32 ++++----- .../UserFlowAttributesRequestBuilder.java | 22 +++--- ...tyUserFlowAttributeItemRequestBuilder.java | 32 ++++----- .../DefinitionsRequestBuilder.java | 22 +++--- ...lterByCurrentUserWithOnRequestBuilder.java | 12 ++-- ...wScheduleDefinitionItemRequestBuilder.java | 22 +++--- .../instances/InstancesRequestBuilder.java | 12 ++-- ...lterByCurrentUserWithOnRequestBuilder.java | 12 ++-- ...ccessReviewInstanceItemRequestBuilder.java | 22 +++--- .../ContactedReviewersRequestBuilder.java | 12 ++-- .../decisions/DecisionsRequestBuilder.java | 12 ++-- ...lterByCurrentUserWithOnRequestBuilder.java | 12 ++-- ...nstanceDecisionItemItemRequestBuilder.java | 12 ++-- .../item/stages/StagesRequestBuilder.java | 12 ++-- ...lterByCurrentUserWithOnRequestBuilder.java | 12 ++-- .../AccessReviewStageItemRequestBuilder.java | 22 +++--- .../decisions/DecisionsRequestBuilder.java | 12 ++-- ...lterByCurrentUserWithOnRequestBuilder.java | 12 ++-- ...nstanceDecisionItemItemRequestBuilder.java | 22 +++--- .../HistoryDefinitionsRequestBuilder.java | 22 +++--- ...ewHistoryDefinitionItemRequestBuilder.java | 12 ++-- .../instances/InstancesRequestBuilder.java | 12 ++-- .../AppConsentRequestsRequestBuilder.java | 12 ++-- ...lterByCurrentUserWithOnRequestBuilder.java | 12 ++-- .../AppConsentRequestItemRequestBuilder.java | 12 ++-- .../UserConsentRequestsRequestBuilder.java | 12 ++-- ...lterByCurrentUserWithOnRequestBuilder.java | 12 ++-- .../UserConsentRequestItemRequestBuilder.java | 12 ++-- .../approval/stages/StagesRequestBuilder.java | 12 ++-- .../item/ApprovalStageItemRequestBuilder.java | 22 +++--- ...kageAssignmentApprovalsRequestBuilder.java | 10 +-- ...lterByCurrentUserWithOnRequestBuilder.java | 12 ++-- .../item/ApprovalItemRequestBuilder.java | 12 ++-- .../item/stages/StagesRequestBuilder.java | 12 ++-- .../item/ApprovalStageItemRequestBuilder.java | 22 +++--- .../AccessPackagesRequestBuilder.java | 22 +++--- ...lterByCurrentUserWithOnRequestBuilder.java | 12 ++-- .../item/AccessPackageItemRequestBuilder.java | 32 ++++----- ...ackagesIncompatibleWithRequestBuilder.java | 12 ++-- ...ompatibleAccessPackagesRequestBuilder.java | 12 ++-- .../item/ref/RefRequestBuilder.java | 10 ++- .../ref/RefRequestBuilder.java | 34 ++++------ .../IncompatibleGroupsRequestBuilder.java | 12 ++-- .../item/ref/RefRequestBuilder.java | 10 ++- .../ref/RefRequestBuilder.java | 34 ++++------ .../ResourceRoleScopesRequestBuilder.java | 10 ++- ...geResourceRoleScopeItemRequestBuilder.java | 10 ++- .../AssignmentPoliciesRequestBuilder.java | 22 +++--- ...ageAssignmentPolicyItemRequestBuilder.java | 22 +++--- .../AssignmentRequestsRequestBuilder.java | 22 +++--- ...lterByCurrentUserWithOnRequestBuilder.java | 12 ++-- ...geAssignmentRequestItemRequestBuilder.java | 22 +++--- .../AssignmentsRequestBuilder.java | 12 ++-- .../AdditionalAccessRequestBuilder.java | 12 ++-- ...lterByCurrentUserWithOnRequestBuilder.java | 12 ++-- ...ssPackageAssignmentItemRequestBuilder.java | 12 ++-- .../catalogs/CatalogsRequestBuilder.java | 22 +++--- ...ccessPackageCatalogItemRequestBuilder.java | 32 ++++----- ...ustomWorkflowExtensionsRequestBuilder.java | 22 +++--- ...tomCalloutExtensionItemRequestBuilder.java | 32 ++++----- .../ResourceRolesRequestBuilder.java | 12 ++-- .../resources/ResourcesRequestBuilder.java | 12 ++-- .../ConnectedOrganizationsRequestBuilder.java | 22 +++--- ...nnectedOrganizationItemRequestBuilder.java | 32 ++++----- .../ExternalSponsorsRequestBuilder.java | 12 ++-- .../item/ref/RefRequestBuilder.java | 10 ++- .../ref/RefRequestBuilder.java | 34 ++++------ .../InternalSponsorsRequestBuilder.java | 12 ++-- .../item/ref/RefRequestBuilder.java | 10 ++- .../ref/RefRequestBuilder.java | 34 ++++------ .../ResourceEnvironmentsRequestBuilder.java | 12 ++-- .../ResourceRequestsRequestBuilder.java | 22 +++--- ...ustomWorkflowExtensionsRequestBuilder.java | 22 +++--- ...tomCalloutExtensionItemRequestBuilder.java | 32 ++++----- .../ResourceRolesRequestBuilder.java | 12 ++-- .../resources/ResourcesRequestBuilder.java | 12 ++-- .../settings/SettingsRequestBuilder.java | 22 +++--- .../CustomTaskExtensionsRequestBuilder.java | 22 +++--- ...CustomTaskExtensionItemRequestBuilder.java | 32 ++++----- .../workflows/WorkflowsRequestBuilder.java | 12 ++-- .../item/WorkflowItemRequestBuilder.java | 22 +++--- .../item/runs/RunsRequestBuilder.java | 12 ++-- .../item/runs/item/RunItemRequestBuilder.java | 12 ++-- .../TaskProcessingResultsRequestBuilder.java | 12 ++-- .../UserProcessingResultsRequestBuilder.java | 12 ++-- ...serProcessingResultItemRequestBuilder.java | 12 ++-- .../TaskProcessingResultsRequestBuilder.java | 12 ++-- .../TaskReportsRequestBuilder.java | 12 ++-- .../TaskProcessingResultsRequestBuilder.java | 12 ++-- .../UserProcessingResultsRequestBuilder.java | 12 ++-- .../TaskProcessingResultsRequestBuilder.java | 12 ++-- .../item/versions/VersionsRequestBuilder.java | 12 ++-- ...ersionVersionNumberItemRequestBuilder.java | 12 ++-- .../settings/SettingsRequestBuilder.java | 22 +++--- .../TaskDefinitionsRequestBuilder.java | 12 ++-- .../TaskDefinitionItemRequestBuilder.java | 12 ++-- .../workflows/WorkflowsRequestBuilder.java | 22 +++--- .../item/WorkflowItemRequestBuilder.java | 32 ++++----- .../item/runs/RunsRequestBuilder.java | 12 ++-- .../item/runs/item/RunItemRequestBuilder.java | 12 ++-- .../TaskProcessingResultsRequestBuilder.java | 12 ++-- .../UserProcessingResultsRequestBuilder.java | 12 ++-- ...serProcessingResultItemRequestBuilder.java | 12 ++-- .../TaskProcessingResultsRequestBuilder.java | 12 ++-- .../TaskReportsRequestBuilder.java | 12 ++-- .../TaskProcessingResultsRequestBuilder.java | 12 ++-- .../UserProcessingResultsRequestBuilder.java | 12 ++-- .../TaskProcessingResultsRequestBuilder.java | 12 ++-- .../item/versions/VersionsRequestBuilder.java | 12 ++-- ...ersionVersionNumberItemRequestBuilder.java | 12 ++-- .../WorkflowTemplatesRequestBuilder.java | 12 ++-- .../WorkflowTemplateItemRequestBuilder.java | 12 ++-- ...lterByCurrentUserWithOnRequestBuilder.java | 12 ++-- .../item/stages/StagesRequestBuilder.java | 12 ++-- .../item/ApprovalStageItemRequestBuilder.java | 22 +++--- ...gnmentScheduleInstancesRequestBuilder.java | 12 ++-- ...lterByCurrentUserWithOnRequestBuilder.java | 12 ++-- ...entScheduleInstanceItemRequestBuilder.java | 12 ++-- ...ignmentScheduleRequestsRequestBuilder.java | 22 +++--- ...lterByCurrentUserWithOnRequestBuilder.java | 12 ++-- ...mentScheduleRequestItemRequestBuilder.java | 12 ++-- .../AssignmentSchedulesRequestBuilder.java | 12 ++-- ...lterByCurrentUserWithOnRequestBuilder.java | 12 ++-- ...pAssignmentScheduleItemRequestBuilder.java | 12 ++-- ...bilityScheduleInstancesRequestBuilder.java | 12 ++-- ...lterByCurrentUserWithOnRequestBuilder.java | 12 ++-- ...ityScheduleInstanceItemRequestBuilder.java | 12 ++-- ...ibilityScheduleRequestsRequestBuilder.java | 22 +++--- ...lterByCurrentUserWithOnRequestBuilder.java | 12 ++-- ...lityScheduleRequestItemRequestBuilder.java | 12 ++-- .../EligibilitySchedulesRequestBuilder.java | 12 ++-- ...lterByCurrentUserWithOnRequestBuilder.java | 12 ++-- ...EligibilityScheduleItemRequestBuilder.java | 12 ++-- .../agreements/AgreementsRequestBuilder.java | 22 +++--- .../item/AgreementItemRequestBuilder.java | 32 ++++----- .../AcceptancesRequestBuilder.java | 12 ++-- .../item/file/FileRequestBuilder.java | 12 ++-- .../LocalizationsRequestBuilder.java | 12 ++-- .../item/files/FilesRequestBuilder.java | 10 ++- .../RiskDetectionsRequestBuilder.java | 12 ++-- .../item/RiskDetectionItemRequestBuilder.java | 12 ++-- .../RiskyServicePrincipalsRequestBuilder.java | 12 ++-- ...skyServicePrincipalItemRequestBuilder.java | 12 ++-- .../item/history/HistoryRequestBuilder.java | 12 ++-- .../riskyusers/RiskyUsersRequestBuilder.java | 12 ++-- .../item/RiskyUserItemRequestBuilder.java | 12 ++-- .../item/history/HistoryRequestBuilder.java | 12 ++-- ...PrincipalRiskDetectionsRequestBuilder.java | 12 ++-- ...ncipalRiskDetectionItemRequestBuilder.java | 12 ++-- .../AvailableProviderTypesRequestBuilder.java | 12 ++-- .../RecoveryKeysRequestBuilder.java | 12 ++-- ...itlockerRecoveryKeyItemRequestBuilder.java | 12 ++-- ...hreatAssessmentRequestsRequestBuilder.java | 22 +++--- ...atAssessmentRequestItemRequestBuilder.java | 12 ++-- .../graph/generated/models/Album.java | 4 +- .../graph/generated/models/Alert.java | 20 +++--- .../graph/generated/models/Application.java | 4 +- .../graph/generated/models/Bundle.java | 4 +- .../generated/models/ColumnDefinition.java | 4 +- .../graph/generated/models/Drive.java | 4 +- .../graph/generated/models/DriveItem.java | 8 +-- .../models/ExtensionSchemaProperty.java | 4 +- .../graph/generated/models/ItemReference.java | 16 ++--- .../graph/generated/models/ListItem.java | 4 +- .../models/PermissionGrantPolicy.java | 8 +-- .../graph/generated/models/RiskDetection.java | 4 +- .../models/callrecords/MediaStream.java | 28 ++++---- .../models/callrecords/TraceRouteHop.java | 4 +- .../delta/DeltaRequestBuilder.java | 12 ++-- .../delta/DeltaRequestBuilder.java | 12 ++-- .../item/branding/BrandingRequestBuilder.java | 32 ++++----- .../BackgroundImageRequestBuilder.java | 2 - .../bannerlogo/BannerLogoRequestBuilder.java | 2 - .../customcss/CustomCSSRequestBuilder.java | 2 - .../favicon/FaviconRequestBuilder.java | 2 - .../headerlogo/HeaderLogoRequestBuilder.java | 2 - .../LocalizationsRequestBuilder.java | 22 +++--- ...randingLocalizationItemRequestBuilder.java | 32 ++++----- .../BackgroundImageRequestBuilder.java | 2 - .../bannerlogo/BannerLogoRequestBuilder.java | 2 - .../customcss/CustomCSSRequestBuilder.java | 2 - .../item/favicon/FaviconRequestBuilder.java | 2 - .../headerlogo/HeaderLogoRequestBuilder.java | 2 - .../squarelogo/SquareLogoRequestBuilder.java | 2 - .../SquareLogoDarkRequestBuilder.java | 2 - .../squarelogo/SquareLogoRequestBuilder.java | 2 - .../SquareLogoDarkRequestBuilder.java | 2 - ...eBasedAuthConfigurationRequestBuilder.java | 22 +++--- ...edAuthConfigurationItemRequestBuilder.java | 22 +++--- .../delta/DeltaRequestBuilder.java | 12 ++-- .../buckets/BucketsRequestBuilder.java | 22 +++--- .../item/PlannerBucketItemRequestBuilder.java | 24 +++---- .../item/tasks/TasksRequestBuilder.java | 12 ++-- ...signedToTaskBoardFormatRequestBuilder.java | 14 ++-- .../BucketTaskBoardFormatRequestBuilder.java | 14 ++-- .../item/details/DetailsRequestBuilder.java | 14 ++-- ...ProgressTaskBoardFormatRequestBuilder.java | 14 ++-- .../planner/plans/PlansRequestBuilder.java | 22 +++--- .../item/PlannerPlanItemRequestBuilder.java | 32 ++++----- .../item/buckets/BucketsRequestBuilder.java | 12 ++-- .../item/tasks/TasksRequestBuilder.java | 12 ++-- ...signedToTaskBoardFormatRequestBuilder.java | 14 ++-- .../BucketTaskBoardFormatRequestBuilder.java | 14 ++-- .../item/details/DetailsRequestBuilder.java | 14 ++-- ...ProgressTaskBoardFormatRequestBuilder.java | 14 ++-- .../item/details/DetailsRequestBuilder.java | 14 ++-- .../plans/item/tasks/TasksRequestBuilder.java | 12 ++-- ...signedToTaskBoardFormatRequestBuilder.java | 14 ++-- .../BucketTaskBoardFormatRequestBuilder.java | 14 ++-- .../item/details/DetailsRequestBuilder.java | 14 ++-- ...ProgressTaskBoardFormatRequestBuilder.java | 14 ++-- .../planner/tasks/TasksRequestBuilder.java | 22 +++--- .../item/PlannerTaskItemRequestBuilder.java | 24 +++---- ...signedToTaskBoardFormatRequestBuilder.java | 14 ++-- .../BucketTaskBoardFormatRequestBuilder.java | 14 ++-- .../item/details/DetailsRequestBuilder.java | 14 ++-- ...ProgressTaskBoardFormatRequestBuilder.java | 14 ++-- ...ityBasedTimeoutPoliciesRequestBuilder.java | 22 +++--- ...yBasedTimeoutPolicyItemRequestBuilder.java | 32 ++++----- ...minConsentRequestPolicyRequestBuilder.java | 22 +++--- .../AppManagementPoliciesRequestBuilder.java | 22 +++--- ...AppManagementPolicyItemRequestBuilder.java | 32 ++++----- .../appliesto/AppliesToRequestBuilder.java | 12 ++-- ...thenticationFlowsPolicyRequestBuilder.java | 22 +++--- ...enticationMethodsPolicyRequestBuilder.java | 22 +++--- ...icationStrengthPoliciesRequestBuilder.java | 22 +++--- ...ationStrengthPolicyItemRequestBuilder.java | 32 ++++----- ...mbinationConfigurationsRequestBuilder.java | 22 +++--- ...nationConfigurationItemRequestBuilder.java | 32 ++++----- .../item/usage/UsageRequestBuilder.java | 10 +-- .../AuthorizationPolicyRequestBuilder.java | 22 +++--- .../ClaimsMappingPoliciesRequestBuilder.java | 22 +++--- ...ClaimsMappingPolicyItemRequestBuilder.java | 32 ++++----- ...CrossTenantAccessPolicyRequestBuilder.java | 22 +++--- .../defaultescaped/DefaultRequestBuilder.java | 22 +++--- .../partners/PartnersRequestBuilder.java | 22 +++--- ...rationPartnerTenantItemRequestBuilder.java | 32 ++++----- ...IdentitySynchronizationRequestBuilder.java | 22 +++--- ...aultAppManagementPolicyRequestBuilder.java | 22 +++--- .../FeatureRolloutPoliciesRequestBuilder.java | 22 +++--- ...eatureRolloutPolicyItemRequestBuilder.java | 32 ++++----- .../appliesto/AppliesToRequestBuilder.java | 10 ++- .../appliesto/item/ref/RefRequestBuilder.java | 10 ++- .../item/appliesto/ref/RefRequestBuilder.java | 22 +++--- ...eRealmDiscoveryPoliciesRequestBuilder.java | 22 +++--- ...ealmDiscoveryPolicyItemRequestBuilder.java | 32 ++++----- ...faultsEnforcementPolicyRequestBuilder.java | 22 +++--- ...PermissionGrantPoliciesRequestBuilder.java | 22 +++--- ...rmissionGrantPolicyItemRequestBuilder.java | 32 ++++----- .../item/excludes/ExcludesRequestBuilder.java | 22 +++--- ...onGrantConditionSetItemRequestBuilder.java | 20 +++--- .../item/includes/IncludesRequestBuilder.java | 22 +++--- ...onGrantConditionSetItemRequestBuilder.java | 20 +++--- .../RoleManagementPoliciesRequestBuilder.java | 12 ++-- ...oleManagementPolicyItemRequestBuilder.java | 12 ++-- .../item/rules/RulesRequestBuilder.java | 12 ++-- ...anagementPolicyRuleItemRequestBuilder.java | 22 +++--- ...gementPolicyAssignmentsRequestBuilder.java | 12 ++-- ...entPolicyAssignmentItemRequestBuilder.java | 12 ++-- .../TokenIssuancePoliciesRequestBuilder.java | 22 +++--- ...TokenIssuancePolicyItemRequestBuilder.java | 20 +++--- .../TokenLifetimePoliciesRequestBuilder.java | 22 +++--- ...TokenLifetimePolicyItemRequestBuilder.java | 32 ++++----- .../connectors/ConnectorsRequestBuilder.java | 12 ++-- .../PrintConnectorItemRequestBuilder.java | 32 ++++----- .../operations/OperationsRequestBuilder.java | 10 +-- .../PrintOperationItemRequestBuilder.java | 12 ++-- .../printers/PrintersRequestBuilder.java | 12 ++-- .../item/PrinterItemRequestBuilder.java | 32 ++++----- .../connectors/ConnectorsRequestBuilder.java | 12 ++-- .../item/shares/SharesRequestBuilder.java | 12 ++-- .../TaskTriggersRequestBuilder.java | 22 +++--- .../PrintTaskTriggerItemRequestBuilder.java | 22 +++--- .../services/ServicesRequestBuilder.java | 12 ++-- .../item/PrintServiceItemRequestBuilder.java | 12 ++-- .../endpoints/EndpointsRequestBuilder.java | 12 ++-- ...rintServiceEndpointItemRequestBuilder.java | 12 ++-- .../print/shares/SharesRequestBuilder.java | 22 +++--- .../item/PrinterShareItemRequestBuilder.java | 32 ++++----- .../AllowedGroupsRequestBuilder.java | 12 ++-- .../item/ref/RefRequestBuilder.java | 10 ++- .../allowedgroups/ref/RefRequestBuilder.java | 34 ++++------ .../AllowedUsersRequestBuilder.java | 12 ++-- .../item/ref/RefRequestBuilder.java | 10 ++- .../allowedusers/ref/RefRequestBuilder.java | 34 ++++------ .../TaskDefinitionsRequestBuilder.java | 22 +++--- ...PrintTaskDefinitionItemRequestBuilder.java | 32 ++++----- .../item/tasks/TasksRequestBuilder.java | 12 ++-- .../item/PrintTaskItemRequestBuilder.java | 22 +++--- .../SubjectRightsRequestsRequestBuilder.java | 22 +++--- ...ubjectRightsRequestItemRequestBuilder.java | 22 +++--- .../GetFinalAttachmentRequestBuilder.java | 10 +-- .../GetFinalReportRequestBuilder.java | 10 +-- .../item/notes/NotesRequestBuilder.java | 22 +++--- ...UserRegistrationDetailsRequestBuilder.java | 12 ++-- ...RegistrationDetailsItemRequestBuilder.java | 12 ++-- ...sersRegisteredByFeatureRequestBuilder.java | 10 +-- ...UsersRegisteredByMethodRequestBuilder.java | 10 +-- ...ailyPrintUsageByPrinterRequestBuilder.java | 2 - ...PrintUsageByPrinterItemRequestBuilder.java | 12 ++-- .../DailyPrintUsageByUserRequestBuilder.java | 2 - .../PrintUsageByUserItemRequestBuilder.java | 12 ++-- ...igurationDeviceActivityRequestBuilder.java | 2 + ...nfigurationUserActivityRequestBuilder.java | 2 + ...ctivityCountsWithPeriodRequestBuilder.java | 10 +-- ...ityUserCountsWithPeriodRequestBuilder.java | 10 +-- ...ppsUserCountsWithPeriodRequestBuilder.java | 10 +-- ...ageUserCountsWithPeriodRequestBuilder.java | 10 +-- ...onsUserCountsWithPeriodRequestBuilder.java | 10 +-- ...DateTimeWithEndDateTimeRequestBuilder.java | 12 ++-- ...ormUserCountsWithPeriodRequestBuilder.java | 10 +-- ...AppUserCountsWithPeriodRequestBuilder.java | 10 +-- ...oxUsageDetailWithPeriodRequestBuilder.java | 10 +-- ...MailboxCountsWithPeriodRequestBuilder.java | 10 +-- ...MailboxCountsWithPeriodRequestBuilder.java | 10 +-- ...xUsageStorageWithPeriodRequestBuilder.java | 10 +-- ...fice365ActivationCountsRequestBuilder.java | 10 +-- ...65ActivationsUserCountsRequestBuilder.java | 10 +-- ...65ActivationsUserDetailRequestBuilder.java | 10 +-- ...iveUserCountsWithPeriodRequestBuilder.java | 10 +-- ...ctiveUserDetailWithDateRequestBuilder.java | 10 +-- ...ctivityCountsWithPeriodRequestBuilder.java | 10 +-- ...sActivityDetailWithDateRequestBuilder.java | 10 +-- ...ityFileCountsWithPeriodRequestBuilder.java | 10 +-- ...tyGroupCountsWithPeriodRequestBuilder.java | 10 +-- ...tivityStorageWithPeriodRequestBuilder.java | 10 +-- ...cesUserCountsWithPeriodRequestBuilder.java | 10 +-- ...ityFileCountsWithPeriodRequestBuilder.java | 10 +-- ...ityUserCountsWithPeriodRequestBuilder.java | 10 +-- ...ivityUserDetailWithDateRequestBuilder.java | 10 +-- ...AccountCountsWithPeriodRequestBuilder.java | 10 +-- ...geAccountDetailWithDateRequestBuilder.java | 10 +-- ...ageFileCountsWithPeriodRequestBuilder.java | 10 +-- ...eUsageStorageWithPeriodRequestBuilder.java | 10 +-- ...DateTimeWithEndDateTimeRequestBuilder.java | 12 ++-- ...tailedSummaryWithPeriodRequestBuilder.java | 12 ++-- ...ityFileCountsWithPeriodRequestBuilder.java | 10 +-- ...ActivityPagesWithPeriodRequestBuilder.java | 10 +-- ...ityUserCountsWithPeriodRequestBuilder.java | 10 +-- ...ivityUserDetailWithDateRequestBuilder.java | 10 +-- ...SiteUsageDetailWithDateRequestBuilder.java | 10 +-- ...ageFileCountsWithPeriodRequestBuilder.java | 10 +-- ...iteUsagePagesWithPeriodRequestBuilder.java | 10 +-- ...ageSiteCountsWithPeriodRequestBuilder.java | 10 +-- ...eUsageStorageWithPeriodRequestBuilder.java | 10 +-- ...ctivityCountsWithPeriodRequestBuilder.java | 10 +-- ...ityUserCountsWithPeriodRequestBuilder.java | 10 +-- ...ivityUserDetailWithDateRequestBuilder.java | 10 +-- ...ionUserCountsWithPeriodRequestBuilder.java | 10 +-- ...ageUserCountsWithPeriodRequestBuilder.java | 10 +-- ...UsageUserDetailWithDateRequestBuilder.java | 10 +-- ...ctivityCountsWithPeriodRequestBuilder.java | 10 +-- ...yMinuteCountsWithPeriodRequestBuilder.java | 10 +-- ...ityUserCountsWithPeriodRequestBuilder.java | 10 +-- ...ctivityCountsWithPeriodRequestBuilder.java | 10 +-- ...yMinuteCountsWithPeriodRequestBuilder.java | 10 +-- ...ityUserCountsWithPeriodRequestBuilder.java | 10 +-- ...ctivityCountsWithPeriodRequestBuilder.java | 10 +-- ...yMinuteCountsWithPeriodRequestBuilder.java | 10 +-- ...ityUserCountsWithPeriodRequestBuilder.java | 10 +-- ...ionUserCountsWithPeriodRequestBuilder.java | 10 +-- ...ageUserCountsWithPeriodRequestBuilder.java | 10 +-- ...ctivityCountsWithPeriodRequestBuilder.java | 10 +-- ...ibutionCountsWithPeriodRequestBuilder.java | 10 +-- ...amsTeamCountsWithPeriodRequestBuilder.java | 10 +-- ...ctivityCountsWithPeriodRequestBuilder.java | 10 +-- ...ityUserCountsWithPeriodRequestBuilder.java | 10 +-- ...DateTimeWithEndDateTimeRequestBuilder.java | 12 ++-- ...ctivityCountsWithPeriodRequestBuilder.java | 10 +-- ...ityUserCountsWithPeriodRequestBuilder.java | 10 +-- ...ivityUserDetailWithDateRequestBuilder.java | 10 +-- ...ionUserCountsWithPeriodRequestBuilder.java | 10 +-- ...ageUserCountsWithPeriodRequestBuilder.java | 10 +-- ...UsageUserDetailWithDateRequestBuilder.java | 10 +-- ...ctivityCountsWithPeriodRequestBuilder.java | 10 +-- ...sActivityDetailWithDateRequestBuilder.java | 10 +-- ...tyGroupCountsWithPeriodRequestBuilder.java | 10 +-- ...thlyPrintUsageByPrinterRequestBuilder.java | 2 - ...MonthlyPrintUsageByUserRequestBuilder.java | 2 - .../manifests/ManifestsRequestBuilder.java | 10 +-- .../item/ManifestItemRequestBuilder.java | 12 ++-- .../operations/OperationsRequestBuilder.java | 10 +-- .../item/OperationItemRequestBuilder.java | 12 ++-- ...mulationRepeatOffendersRequestBuilder.java | 12 ++-- ...nSimulationUserCoverageRequestBuilder.java | 12 ++-- ...ionTrainingUserCoverageRequestBuilder.java | 12 ++-- .../RoleAssignmentsRequestBuilder.java | 22 +++--- ...ifiedRoleAssignmentItemRequestBuilder.java | 22 +++--- ...gnmentScheduleInstancesRequestBuilder.java | 12 ++-- ...lterByCurrentUserWithOnRequestBuilder.java | 12 ++-- ...entScheduleInstanceItemRequestBuilder.java | 12 ++-- ...ignmentScheduleRequestsRequestBuilder.java | 22 +++--- ...lterByCurrentUserWithOnRequestBuilder.java | 12 ++-- ...mentScheduleRequestItemRequestBuilder.java | 12 ++-- ...RoleAssignmentSchedulesRequestBuilder.java | 12 ++-- ...lterByCurrentUserWithOnRequestBuilder.java | 12 ++-- ...eAssignmentScheduleItemRequestBuilder.java | 12 ++-- .../RoleDefinitionsRequestBuilder.java | 22 +++--- ...ifiedRoleDefinitionItemRequestBuilder.java | 32 ++++----- ...bilityScheduleInstancesRequestBuilder.java | 12 ++-- ...lterByCurrentUserWithOnRequestBuilder.java | 12 ++-- ...ityScheduleInstanceItemRequestBuilder.java | 12 ++-- ...ibilityScheduleRequestsRequestBuilder.java | 22 +++--- ...lterByCurrentUserWithOnRequestBuilder.java | 12 ++-- ...lityScheduleRequestItemRequestBuilder.java | 12 ++-- ...oleEligibilitySchedulesRequestBuilder.java | 12 ++-- ...lterByCurrentUserWithOnRequestBuilder.java | 12 ++-- ...EligibilityScheduleItemRequestBuilder.java | 12 ++-- .../RoleAssignmentsRequestBuilder.java | 22 +++--- ...ifiedRoleAssignmentItemRequestBuilder.java | 22 +++--- ...gnmentScheduleInstancesRequestBuilder.java | 12 ++-- ...lterByCurrentUserWithOnRequestBuilder.java | 12 ++-- ...entScheduleInstanceItemRequestBuilder.java | 12 ++-- ...ignmentScheduleRequestsRequestBuilder.java | 22 +++--- ...lterByCurrentUserWithOnRequestBuilder.java | 12 ++-- ...mentScheduleRequestItemRequestBuilder.java | 12 ++-- ...RoleAssignmentSchedulesRequestBuilder.java | 12 ++-- ...lterByCurrentUserWithOnRequestBuilder.java | 12 ++-- ...eAssignmentScheduleItemRequestBuilder.java | 12 ++-- .../RoleDefinitionsRequestBuilder.java | 22 +++--- ...ifiedRoleDefinitionItemRequestBuilder.java | 32 ++++----- ...bilityScheduleInstancesRequestBuilder.java | 12 ++-- ...lterByCurrentUserWithOnRequestBuilder.java | 12 ++-- ...ityScheduleInstanceItemRequestBuilder.java | 12 ++-- ...ibilityScheduleRequestsRequestBuilder.java | 22 +++--- ...lterByCurrentUserWithOnRequestBuilder.java | 12 ++-- ...lityScheduleRequestItemRequestBuilder.java | 12 ++-- ...oleEligibilitySchedulesRequestBuilder.java | 12 ++-- ...lterByCurrentUserWithOnRequestBuilder.java | 12 ++-- ...EligibilityScheduleItemRequestBuilder.java | 12 ++-- .../acronyms/AcronymsRequestBuilder.java | 22 +++--- .../item/AcronymItemRequestBuilder.java | 32 ++++----- .../bookmarks/BookmarksRequestBuilder.java | 22 +++--- .../item/BookmarkItemRequestBuilder.java | 32 ++++----- .../search/qnas/QnasRequestBuilder.java | 22 +++--- .../qnas/item/QnaItemRequestBuilder.java | 32 ++++----- .../security/alerts/AlertsRequestBuilder.java | 12 ++-- .../alerts/item/AlertItemRequestBuilder.java | 22 +++--- .../alerts_v2/AlertsV2RequestBuilder.java | 12 ++-- .../item/AlertItemRequestBuilder.java | 22 +++--- .../EndUserNotificationsRequestBuilder.java | 12 ++-- .../LandingPagesRequestBuilder.java | 12 ++-- .../loginpages/LoginPagesRequestBuilder.java | 12 ++-- .../operations/OperationsRequestBuilder.java | 10 +-- ...SimulationOperationItemRequestBuilder.java | 12 ++-- .../payloads/PayloadsRequestBuilder.java | 12 ++-- .../SimulationAutomationsRequestBuilder.java | 12 ++-- ...imulationAutomationItemRequestBuilder.java | 12 ++-- .../item/runs/RunsRequestBuilder.java | 12 ++-- .../SimulationsRequestBuilder.java | 22 +++--- .../item/SimulationItemRequestBuilder.java | 32 ++++----- .../trainings/TrainingsRequestBuilder.java | 12 ++-- .../EdiscoveryCasesRequestBuilder.java | 22 +++--- .../EdiscoveryCaseItemRequestBuilder.java | 32 ++++----- .../custodians/CustodiansRequestBuilder.java | 22 +++--- ...EdiscoveryCustodianItemRequestBuilder.java | 12 ++-- .../LastIndexOperationRequestBuilder.java | 12 ++-- .../SiteSourcesRequestBuilder.java | 22 +++--- .../UnifiedGroupSourcesRequestBuilder.java | 22 +++--- .../UserSourcesRequestBuilder.java | 22 +++--- ...NoncustodialDataSourcesRequestBuilder.java | 10 ++- .../operations/OperationsRequestBuilder.java | 12 ++-- .../item/CaseOperationItemRequestBuilder.java | 12 ++-- .../reviewsets/ReviewSetsRequestBuilder.java | 22 +++--- ...EdiscoveryReviewSetItemRequestBuilder.java | 12 ++-- .../item/queries/QueriesRequestBuilder.java | 22 +++--- ...overyReviewSetQueryItemRequestBuilder.java | 32 ++++----- .../item/searches/SearchesRequestBuilder.java | 22 +++--- .../EdiscoverySearchItemRequestBuilder.java | 32 ++++----- .../AdditionalSourcesRequestBuilder.java | 22 +++--- .../CustodianSourcesRequestBuilder.java | 12 ++-- ...mateStatisticsOperationRequestBuilder.java | 12 ++-- .../item/settings/SettingsRequestBuilder.java | 22 +++--- .../item/tags/TagsRequestBuilder.java | 22 +++--- ...EdiscoveryReviewTagItemRequestBuilder.java | 32 ++++----- .../incidents/IncidentsRequestBuilder.java | 12 ++-- .../item/IncidentItemRequestBuilder.java | 22 +++--- .../AuthoritiesRequestBuilder.java | 22 +++--- .../AuthorityTemplateItemRequestBuilder.java | 22 +++--- .../categories/CategoriesRequestBuilder.java | 22 +++--- .../CategoryTemplateItemRequestBuilder.java | 22 +++--- .../citations/CitationsRequestBuilder.java | 22 +++--- .../CitationTemplateItemRequestBuilder.java | 22 +++--- .../DepartmentsRequestBuilder.java | 22 +++--- .../DepartmentTemplateItemRequestBuilder.java | 22 +++--- .../FilePlanReferencesRequestBuilder.java | 22 +++--- ...anReferenceTemplateItemRequestBuilder.java | 22 +++--- .../RetentionLabelsRequestBuilder.java | 22 +++--- .../RetentionLabelItemRequestBuilder.java | 20 +++--- ...ureScoreControlProfilesRequestBuilder.java | 12 ++-- ...ScoreControlProfileItemRequestBuilder.java | 22 +++--- .../SecureScoresRequestBuilder.java | 12 ++-- .../item/SecureScoreItemRequestBuilder.java | 12 ++-- .../GetFinalAttachmentRequestBuilder.java | 10 +-- .../GetFinalReportRequestBuilder.java | 10 +-- .../item/notes/NotesRequestBuilder.java | 22 +++--- .../ArticleIndicatorsRequestBuilder.java | 10 +-- .../ArticleIndicatorItemRequestBuilder.java | 12 ++-- .../articles/ArticlesRequestBuilder.java | 12 ++-- .../item/ArticleItemRequestBuilder.java | 12 ++-- .../indicators/IndicatorsRequestBuilder.java | 12 ++-- .../HostComponentsRequestBuilder.java | 10 +-- .../item/HostComponentItemRequestBuilder.java | 12 ++-- .../HostCookiesRequestBuilder.java | 10 +-- .../item/HostCookieItemRequestBuilder.java | 12 ++-- .../hostpairs/HostPairsRequestBuilder.java | 10 +-- .../item/HostPairItemRequestBuilder.java | 12 ++-- .../hostports/HostPortsRequestBuilder.java | 10 +-- .../item/HostPortItemRequestBuilder.java | 12 ++-- .../hosts/HostsRequestBuilder.java | 10 +-- .../hosts/item/HostItemRequestBuilder.java | 12 ++-- .../ChildHostPairsRequestBuilder.java | 12 ++-- .../components/ComponentsRequestBuilder.java | 12 ++-- .../item/cookies/CookiesRequestBuilder.java | 12 ++-- .../hostpairs/HostPairsRequestBuilder.java | 12 ++-- .../ParentHostPairsRequestBuilder.java | 12 ++-- .../passivedns/PassiveDnsRequestBuilder.java | 12 ++-- .../PassiveDnsReverseRequestBuilder.java | 12 ++-- .../hosts/item/ports/PortsRequestBuilder.java | 12 ++-- .../reputation/ReputationRequestBuilder.java | 12 ++-- .../SslCertificatesRequestBuilder.java | 12 ++-- .../subdomains/SubdomainsRequestBuilder.java | 12 ++-- .../item/trackers/TrackersRequestBuilder.java | 12 ++-- .../hosts/item/whois/WhoisRequestBuilder.java | 12 ++-- .../HostSslCertificatesRequestBuilder.java | 10 +-- .../HostSslCertificateItemRequestBuilder.java | 12 ++-- .../HostTrackersRequestBuilder.java | 10 +-- .../item/HostTrackerItemRequestBuilder.java | 12 ++-- ...igenceProfileIndicatorsRequestBuilder.java | 10 +-- ...nceProfileIndicatorItemRequestBuilder.java | 12 ++-- .../IntelProfilesRequestBuilder.java | 12 ++-- ...IntelligenceProfileItemRequestBuilder.java | 12 ++-- .../indicators/IndicatorsRequestBuilder.java | 12 ++-- .../PassiveDnsRecordsRequestBuilder.java | 10 +-- .../PassiveDnsRecordItemRequestBuilder.java | 12 ++-- .../SslCertificatesRequestBuilder.java | 12 ++-- .../SslCertificateItemRequestBuilder.java | 12 ++-- .../subdomains/SubdomainsRequestBuilder.java | 10 +-- .../item/SubdomainItemRequestBuilder.java | 12 ++-- .../VulnerabilitiesRequestBuilder.java | 10 +-- .../item/VulnerabilityItemRequestBuilder.java | 12 ++-- .../components/ComponentsRequestBuilder.java | 12 ++-- ...nerabilityComponentItemRequestBuilder.java | 12 ++-- .../WhoisRecordsRequestBuilder.java | 12 ++-- .../item/WhoisRecordItemRequestBuilder.java | 12 ++-- .../item/history/HistoryRequestBuilder.java | 12 ++-- .../RetentionEventsRequestBuilder.java | 22 +++--- .../RetentionEventItemRequestBuilder.java | 22 +++--- .../RetentionEventTypesRequestBuilder.java | 22 +++--- .../RetentionEventTypeItemRequestBuilder.java | 22 +++--- .../delta/DeltaRequestBuilder.java | 12 ++-- .../AppRoleAssignedToRequestBuilder.java | 22 +++--- .../AppRoleAssignmentItemRequestBuilder.java | 10 ++- .../AppRoleAssignmentsRequestBuilder.java | 12 ++-- .../AppRoleAssignmentItemRequestBuilder.java | 10 ++- .../ClaimsMappingPoliciesRequestBuilder.java | 12 ++-- .../item/ref/RefRequestBuilder.java | 10 ++- .../ref/RefRequestBuilder.java | 34 ++++------ ...rmissionClassificationsRequestBuilder.java | 22 +++--- ...ssionClassificationItemRequestBuilder.java | 10 ++- ...eRealmDiscoveryPoliciesRequestBuilder.java | 12 ++-- .../item/ref/RefRequestBuilder.java | 10 ++- .../ref/RefRequestBuilder.java | 34 ++++------ .../item/memberof/MemberOfRequestBuilder.java | 2 - .../Oauth2PermissionGrantsRequestBuilder.java | 12 ++-- .../item/owners/OwnersRequestBuilder.java | 2 - .../owners/item/ref/RefRequestBuilder.java | 10 ++- .../item/owners/ref/RefRequestBuilder.java | 24 +++---- ...opSecurityConfigurationRequestBuilder.java | 32 ++++----- .../TargetDeviceGroupsRequestBuilder.java | 22 +++--- .../TargetDeviceGroupItemRequestBuilder.java | 32 ++++----- .../jobs/JobsRequestBuilder.java | 22 +++--- .../SynchronizationJobItemRequestBuilder.java | 22 +++--- .../item/schema/SchemaRequestBuilder.java | 22 +++--- .../FilterOperatorsRequestBuilder.java | 12 ++-- .../functions/FunctionsRequestBuilder.java | 12 ++-- .../templates/TemplatesRequestBuilder.java | 12 ++-- ...hronizationTemplateItemRequestBuilder.java | 10 ++- .../FilterOperatorsRequestBuilder.java | 12 ++-- .../functions/FunctionsRequestBuilder.java | 12 ++-- .../TokenLifetimePoliciesRequestBuilder.java | 12 ++-- .../TransitiveMemberOfRequestBuilder.java | 2 - .../driveitem/DriveItemRequestBuilder.java | 12 ++-- .../content/ContentRequestBuilder.java | 2 - .../list/columns/ColumnsRequestBuilder.java | 22 +++--- .../ContentTypesRequestBuilder.java | 12 ++-- .../addcopy/AddCopyRequestBuilder.java | 8 +-- ...mpatibleHubContentTypesRequestBuilder.java | 12 ++-- .../AssociateWithHubSitesRequestBuilder.java | 8 +-- .../item/columns/ColumnsRequestBuilder.java | 22 +++--- .../ColumnDefinitionItemRequestBuilder.java | 32 ++++----- ...oDefaultContentLocationRequestBuilder.java | 8 +-- .../IsPublishedRequestBuilder.java | 10 +-- .../item/publish/PublishRequestBuilder.java | 8 +-- .../unpublish/UnpublishRequestBuilder.java | 8 +-- .../item/list/items/ItemsRequestBuilder.java | 22 +++--- .../list/items/delta/DeltaRequestBuilder.java | 12 ++-- .../item/ListItemItemRequestBuilder.java | 22 +++--- .../DocumentSetVersionsRequestBuilder.java | 22 +++--- .../DocumentSetVersionItemRequestBuilder.java | 22 +++--- .../driveitem/DriveItemRequestBuilder.java | 10 +-- .../item/fields/FieldsRequestBuilder.java | 10 ++- .../item/versions/VersionsRequestBuilder.java | 12 ++-- .../ListItemVersionItemRequestBuilder.java | 12 ++-- .../permission/grant/GrantRequestBuilder.java | 8 +-- .../generated/sites/SitesRequestBuilder.java | 10 +-- .../sites/delta/DeltaRequestBuilder.java | 12 ++-- .../GetAllSitesRequestBuilder.java | 12 ++-- .../sites/item/SiteItemRequestBuilder.java | 10 +-- .../alltime/AllTimeRequestBuilder.java | 12 ++-- .../item/columns/ColumnsRequestBuilder.java | 22 +++--- .../ContentTypesRequestBuilder.java | 22 +++--- .../addcopy/AddCopyRequestBuilder.java | 8 +-- ...mpatibleHubContentTypesRequestBuilder.java | 12 ++-- .../item/ContentTypeItemRequestBuilder.java | 32 ++++----- .../AssociateWithHubSitesRequestBuilder.java | 8 +-- .../item/columns/ColumnsRequestBuilder.java | 22 +++--- .../ColumnDefinitionItemRequestBuilder.java | 32 ++++----- ...oDefaultContentLocationRequestBuilder.java | 8 +-- .../IsPublishedRequestBuilder.java | 10 +-- .../item/publish/PublishRequestBuilder.java | 8 +-- .../unpublish/UnpublishRequestBuilder.java | 8 +-- ...tTypesForListWithListIdRequestBuilder.java | 12 ++-- .../columns/ColumnsRequestBuilder.java | 22 +++--- .../ContentTypesRequestBuilder.java | 22 +++--- ...tTypesForListWithListIdRequestBuilder.java | 12 ++-- .../columns/ColumnsRequestBuilder.java | 22 +++--- .../ContentTypesRequestBuilder.java | 22 +++--- .../lists/ListsRequestBuilder.java | 22 +++--- .../operations/OperationsRequestBuilder.java | 12 ++-- .../pages/PagesRequestBuilder.java | 22 +++--- .../PermissionsRequestBuilder.java | 22 +++--- .../sites/SitesRequestBuilder.java | 12 ++-- .../termstore/TermStoreRequestBuilder.java | 22 +++--- .../lists/ListsRequestBuilder.java | 22 +++--- .../operations/OperationsRequestBuilder.java | 12 ++-- .../pages/PagesRequestBuilder.java | 22 +++--- .../PermissionsRequestBuilder.java | 22 +++--- .../sites/SitesRequestBuilder.java | 12 ++-- .../termstore/TermStoreRequestBuilder.java | 22 +++--- .../sites/item/lists/ListsRequestBuilder.java | 22 +++--- .../lists/item/ListItemRequestBuilder.java | 12 ++-- .../item/columns/ColumnsRequestBuilder.java | 22 +++--- .../ContentTypesRequestBuilder.java | 12 ++-- .../addcopy/AddCopyRequestBuilder.java | 8 +-- ...mpatibleHubContentTypesRequestBuilder.java | 12 ++-- .../AssociateWithHubSitesRequestBuilder.java | 8 +-- .../item/columns/ColumnsRequestBuilder.java | 22 +++--- .../ColumnDefinitionItemRequestBuilder.java | 32 ++++----- ...oDefaultContentLocationRequestBuilder.java | 8 +-- .../IsPublishedRequestBuilder.java | 10 +-- .../item/publish/PublishRequestBuilder.java | 8 +-- .../unpublish/UnpublishRequestBuilder.java | 8 +-- .../lists/item/items/ItemsRequestBuilder.java | 22 +++--- .../item/items/delta/DeltaRequestBuilder.java | 12 ++-- .../item/ListItemItemRequestBuilder.java | 22 +++--- .../DocumentSetVersionsRequestBuilder.java | 22 +++--- .../DocumentSetVersionItemRequestBuilder.java | 22 +++--- .../driveitem/DriveItemRequestBuilder.java | 10 +-- .../item/fields/FieldsRequestBuilder.java | 10 ++- .../item/versions/VersionsRequestBuilder.java | 12 ++-- .../ListItemVersionItemRequestBuilder.java | 12 ++-- .../notebooks/NotebooksRequestBuilder.java | 22 +++--- ...ncludePersonalNotebooksRequestBuilder.java | 12 ++-- .../item/NotebookItemRequestBuilder.java | 12 ++-- .../SectionGroupsRequestBuilder.java | 22 +++--- .../SectionGroupsRequestBuilder.java | 12 ++-- .../item/sections/SectionsRequestBuilder.java | 22 +++--- .../item/pages/PagesRequestBuilder.java | 22 +++--- .../item/content/ContentRequestBuilder.java | 2 - .../item/sections/SectionsRequestBuilder.java | 22 +++--- .../item/pages/PagesRequestBuilder.java | 22 +++--- .../item/content/ContentRequestBuilder.java | 2 - .../operations/OperationsRequestBuilder.java | 10 +-- .../OnenoteOperationItemRequestBuilder.java | 12 ++-- .../onenote/pages/PagesRequestBuilder.java | 22 +++--- .../item/OnenotePageItemRequestBuilder.java | 22 +++--- .../item/content/ContentRequestBuilder.java | 2 - .../SectionGroupsRequestBuilder.java | 12 ++-- .../item/SectionGroupItemRequestBuilder.java | 12 ++-- .../SectionGroupsRequestBuilder.java | 12 ++-- .../item/sections/SectionsRequestBuilder.java | 22 +++--- .../item/pages/PagesRequestBuilder.java | 22 +++--- .../item/content/ContentRequestBuilder.java | 2 - .../sections/SectionsRequestBuilder.java | 12 ++-- .../OnenoteSectionItemRequestBuilder.java | 12 ++-- .../item/pages/PagesRequestBuilder.java | 22 +++--- .../item/content/ContentRequestBuilder.java | 2 - .../operations/OperationsRequestBuilder.java | 12 ++-- ...ongRunningOperationItemRequestBuilder.java | 12 ++-- .../sites/item/pages/PagesRequestBuilder.java | 22 +++--- .../item/BaseSitePageItemRequestBuilder.java | 22 +++--- .../PermissionsRequestBuilder.java | 22 +++--- .../item/PermissionItemRequestBuilder.java | 32 ++++----- .../item/grant/GrantRequestBuilder.java | 8 +-- .../sites/item/sites/SitesRequestBuilder.java | 12 ++-- .../termstore/TermStoreRequestBuilder.java | 22 +++--- .../groups/GroupsRequestBuilder.java | 22 +++--- .../groups/item/GroupItemRequestBuilder.java | 22 +++--- .../groups/item/sets/SetsRequestBuilder.java | 12 ++-- .../item/children/ChildrenRequestBuilder.java | 22 +++--- .../relations/RelationsRequestBuilder.java | 12 ++-- .../sets/item/terms/TermsRequestBuilder.java | 10 +-- .../terms/item/TermItemRequestBuilder.java | 32 ++++----- .../termstore/sets/SetsRequestBuilder.java | 20 +++--- .../sets/item/SetItemRequestBuilder.java | 32 ++++----- .../item/children/ChildrenRequestBuilder.java | 22 +++--- .../parentgroup/sets/SetsRequestBuilder.java | 12 ++-- .../item/children/ChildrenRequestBuilder.java | 22 +++--- .../relations/RelationsRequestBuilder.java | 12 ++-- .../sets/item/terms/TermsRequestBuilder.java | 10 +-- .../terms/item/TermItemRequestBuilder.java | 32 ++++----- .../relations/RelationsRequestBuilder.java | 12 ++-- .../sets/item/terms/TermsRequestBuilder.java | 10 +-- .../terms/item/TermItemRequestBuilder.java | 32 ++++----- .../item/groups/GroupsRequestBuilder.java | 22 +++--- .../groups/item/GroupItemRequestBuilder.java | 22 +++--- .../groups/item/sets/SetsRequestBuilder.java | 12 ++-- .../item/children/ChildrenRequestBuilder.java | 22 +++--- .../relations/RelationsRequestBuilder.java | 12 ++-- .../sets/item/terms/TermsRequestBuilder.java | 10 +-- .../terms/item/TermItemRequestBuilder.java | 32 ++++----- .../item/sets/SetsRequestBuilder.java | 20 +++--- .../item/sets/item/SetItemRequestBuilder.java | 32 ++++----- .../item/children/ChildrenRequestBuilder.java | 22 +++--- .../parentgroup/sets/SetsRequestBuilder.java | 12 ++-- .../item/children/ChildrenRequestBuilder.java | 22 +++--- .../relations/RelationsRequestBuilder.java | 12 ++-- .../sets/item/terms/TermsRequestBuilder.java | 10 +-- .../terms/item/TermItemRequestBuilder.java | 32 ++++----- .../relations/RelationsRequestBuilder.java | 12 ++-- .../sets/item/terms/TermsRequestBuilder.java | 10 +-- .../terms/item/TermItemRequestBuilder.java | 32 ++++----- .../BookingBusinessesRequestBuilder.java | 22 +++--- .../BookingBusinessItemRequestBuilder.java | 32 ++++----- .../AppointmentsRequestBuilder.java | 22 +++--- .../BookingAppointmentItemRequestBuilder.java | 32 ++++----- .../CalendarViewRequestBuilder.java | 2 - .../customers/CustomersRequestBuilder.java | 22 +++--- ...BookingCustomerBaseItemRequestBuilder.java | 32 ++++----- .../CustomQuestionsRequestBuilder.java | 22 +++--- ...okingCustomQuestionItemRequestBuilder.java | 32 ++++----- .../item/services/ServicesRequestBuilder.java | 22 +++--- .../BookingServiceItemRequestBuilder.java | 32 ++++----- .../StaffMembersRequestBuilder.java | 22 +++--- ...kingStaffMemberBaseItemRequestBuilder.java | 32 ++++----- .../BookingCurrenciesRequestBuilder.java | 12 ++-- .../BookingCurrencyItemRequestBuilder.java | 12 ++-- .../AttendanceRecordsRequestBuilder.java | 12 ++-- .../webinars/WebinarsRequestBuilder.java | 12 ++-- ...dRoleWithUserIdWithRoleRequestBuilder.java | 12 ++-- .../GetByUserRoleWithRoleRequestBuilder.java | 12 ++-- .../RegistrationsRequestBuilder.java | 12 ++-- ...alEventRegistrationItemRequestBuilder.java | 12 ++-- .../AttendanceRecordsRequestBuilder.java | 12 ++-- .../AllChannelsRequestBuilder.java | 12 ++-- .../item/channels/ChannelsRequestBuilder.java | 22 +++--- .../GetAllMessagesRequestBuilder.java | 12 ++-- .../item/ChannelItemRequestBuilder.java | 32 ++++----- ...alNameUserPrincipalNameRequestBuilder.java | 12 ++-- .../FilesFolderRequestBuilder.java | 12 ++-- .../content/ContentRequestBuilder.java | 2 - .../item/members/MembersRequestBuilder.java | 22 +++--- .../ConversationMemberItemRequestBuilder.java | 32 ++++----- .../item/messages/MessagesRequestBuilder.java | 22 +++--- .../messages/delta/DeltaRequestBuilder.java | 12 ++-- .../item/ChatMessageItemRequestBuilder.java | 22 +++--- .../HostedContentsRequestBuilder.java | 12 ++-- ...essageHostedContentItemRequestBuilder.java | 12 ++-- .../item/value/ContentRequestBuilder.java | 2 - .../item/replies/RepliesRequestBuilder.java | 22 +++--- .../replies/delta/DeltaRequestBuilder.java | 12 ++-- .../item/ChatMessageItemRequestBuilder.java | 12 ++-- .../HostedContentsRequestBuilder.java | 12 ++-- ...essageHostedContentItemRequestBuilder.java | 12 ++-- .../item/value/ContentRequestBuilder.java | 2 - .../SharedWithTeamsRequestBuilder.java | 12 ++-- ...WithChannelTeamInfoItemRequestBuilder.java | 22 +++--- .../AllowedMembersRequestBuilder.java | 12 ++-- .../item/tabs/TabsRequestBuilder.java | 22 +++--- .../tabs/item/TeamsTabItemRequestBuilder.java | 32 ++++----- .../teams/item/clone/CloneRequestBuilder.java | 8 +-- .../IncomingChannelsRequestBuilder.java | 12 ++-- .../InstalledAppsRequestBuilder.java | 22 +++--- ...eamsAppInstallationItemRequestBuilder.java | 22 +++--- .../item/members/MembersRequestBuilder.java | 22 +++--- .../ConversationMemberItemRequestBuilder.java | 32 ++++----- .../PermissionGrantsRequestBuilder.java | 12 ++-- .../teams/item/photo/PhotoRequestBuilder.java | 12 ++-- .../photo/value/ContentRequestBuilder.java | 2 - .../PrimaryChannelRequestBuilder.java | 12 ++-- ...alNameUserPrincipalNameRequestBuilder.java | 12 ++-- .../FilesFolderRequestBuilder.java | 12 ++-- .../content/ContentRequestBuilder.java | 2 - .../members/MembersRequestBuilder.java | 22 +++--- .../ConversationMemberItemRequestBuilder.java | 32 ++++----- .../messages/MessagesRequestBuilder.java | 22 +++--- .../messages/delta/DeltaRequestBuilder.java | 12 ++-- .../item/ChatMessageItemRequestBuilder.java | 22 +++--- .../HostedContentsRequestBuilder.java | 12 ++-- ...essageHostedContentItemRequestBuilder.java | 12 ++-- .../item/value/ContentRequestBuilder.java | 2 - .../item/replies/RepliesRequestBuilder.java | 22 +++--- .../replies/delta/DeltaRequestBuilder.java | 12 ++-- .../item/ChatMessageItemRequestBuilder.java | 12 ++-- .../HostedContentsRequestBuilder.java | 12 ++-- ...essageHostedContentItemRequestBuilder.java | 12 ++-- .../item/value/ContentRequestBuilder.java | 2 - .../SharedWithTeamsRequestBuilder.java | 12 ++-- ...WithChannelTeamInfoItemRequestBuilder.java | 22 +++--- .../AllowedMembersRequestBuilder.java | 12 ++-- .../tabs/TabsRequestBuilder.java | 22 +++--- .../tabs/item/TeamsTabItemRequestBuilder.java | 32 ++++----- .../item/schedule/ScheduleRequestBuilder.java | 12 ++-- .../OfferShiftRequestsRequestBuilder.java | 22 +++--- .../OfferShiftRequestItemRequestBuilder.java | 12 ++-- ...OpenShiftChangeRequestsRequestBuilder.java | 22 +++--- ...nShiftChangeRequestItemRequestBuilder.java | 12 ++-- .../openshifts/OpenShiftsRequestBuilder.java | 22 +++--- .../item/OpenShiftItemRequestBuilder.java | 32 ++++----- .../SchedulingGroupsRequestBuilder.java | 22 +++--- .../SchedulingGroupItemRequestBuilder.java | 32 ++++----- .../schedule/shifts/ShiftsRequestBuilder.java | 22 +++--- .../shifts/item/ShiftItemRequestBuilder.java | 32 ++++----- ...wapShiftsChangeRequestsRequestBuilder.java | 22 +++--- ...ShiftsChangeRequestItemRequestBuilder.java | 12 ++-- .../TimeOffReasonsRequestBuilder.java | 22 +++--- .../item/TimeOffReasonItemRequestBuilder.java | 32 ++++----- .../TimeOffRequestsRequestBuilder.java | 12 ++-- .../TimeOffRequestItemRequestBuilder.java | 22 +++--- .../timesoff/TimesOffRequestBuilder.java | 22 +++--- .../item/TimeOffItemRequestBuilder.java | 32 ++++----- .../teams/item/tags/TagsRequestBuilder.java | 22 +++--- .../item/TeamworkTagItemRequestBuilder.java | 32 ++++----- .../item/members/MembersRequestBuilder.java | 22 +++--- .../TeamworkTagMemberItemRequestBuilder.java | 22 +++--- .../DeletedChatsRequestBuilder.java | 10 +-- .../item/DeletedChatItemRequestBuilder.java | 12 ++-- .../DeletedTeamsRequestBuilder.java | 12 ++-- .../GetAllMessagesRequestBuilder.java | 12 ++-- ...alNameUserPrincipalNameRequestBuilder.java | 12 ++-- .../FilesFolderRequestBuilder.java | 12 ++-- .../content/ContentRequestBuilder.java | 2 - .../item/members/MembersRequestBuilder.java | 22 +++--- .../ConversationMemberItemRequestBuilder.java | 32 ++++----- .../item/messages/MessagesRequestBuilder.java | 22 +++--- .../messages/delta/DeltaRequestBuilder.java | 12 ++-- .../item/ChatMessageItemRequestBuilder.java | 22 +++--- .../HostedContentsRequestBuilder.java | 12 ++-- ...essageHostedContentItemRequestBuilder.java | 12 ++-- .../item/value/ContentRequestBuilder.java | 2 - .../item/replies/RepliesRequestBuilder.java | 22 +++--- .../replies/delta/DeltaRequestBuilder.java | 12 ++-- .../item/ChatMessageItemRequestBuilder.java | 12 ++-- .../HostedContentsRequestBuilder.java | 12 ++-- ...essageHostedContentItemRequestBuilder.java | 12 ++-- .../item/value/ContentRequestBuilder.java | 2 - .../SharedWithTeamsRequestBuilder.java | 12 ++-- ...WithChannelTeamInfoItemRequestBuilder.java | 22 +++--- .../AllowedMembersRequestBuilder.java | 12 ++-- .../item/tabs/TabsRequestBuilder.java | 22 +++--- .../tabs/item/TeamsTabItemRequestBuilder.java | 32 ++++----- .../TeamsAppSettingsRequestBuilder.java | 22 +++--- .../WorkforceIntegrationsRequestBuilder.java | 22 +++--- ...orkforceIntegrationItemRequestBuilder.java | 32 ++++----- ...DelegatedAdminCustomersRequestBuilder.java | 12 ++-- ...egatedAdminCustomerItemRequestBuilder.java | 12 ++-- ...erviceManagementDetailsRequestBuilder.java | 12 ++-- ...gatedAdminRelationshipsRequestBuilder.java | 22 +++--- ...edAdminRelationshipItemRequestBuilder.java | 32 ++++----- .../AccessAssignmentsRequestBuilder.java | 22 +++--- ...minAccessAssignmentItemRequestBuilder.java | 32 ++++----- .../operations/OperationsRequestBuilder.java | 12 ++-- ...lationshipOperationItemRequestBuilder.java | 12 ++-- .../item/requests/RequestsRequestBuilder.java | 22 +++--- ...RelationshipRequestItemRequestBuilder.java | 12 ++-- ...omainNameWithDomainNameRequestBuilder.java | 10 +-- ...nByTenantIdWithTenantIdRequestBuilder.java | 10 +-- .../generated/users/UsersRequestBuilder.java | 16 ++--- .../users/delta/DeltaRequestBuilder.java | 12 ++-- .../users/item/UserItemRequestBuilder.java | 16 ++--- .../activities/ActivitiesRequestBuilder.java | 12 ++-- .../item/UserActivityItemRequestBuilder.java | 10 ++- ...ActivityHistoryItemItemRequestBuilder.java | 10 ++- .../AgreementAcceptancesRequestBuilder.java | 12 ++-- .../AppRoleAssignmentsRequestBuilder.java | 12 ++-- .../AppRoleAssignmentItemRequestBuilder.java | 10 ++- .../EmailMethodsRequestBuilder.java | 22 +++--- ...uthenticationMethodItemRequestBuilder.java | 32 ++++----- .../Fido2MethodsRequestBuilder.java | 12 ++-- ...uthenticationMethodItemRequestBuilder.java | 22 +++--- .../methods/MethodsRequestBuilder.java | 12 ++-- ...uthenticationMethodItemRequestBuilder.java | 12 ++-- ...oftAuthenticatorMethodsRequestBuilder.java | 12 ++-- ...uthenticationMethodItemRequestBuilder.java | 22 +++--- .../operations/OperationsRequestBuilder.java | 10 +-- ...ongRunningOperationItemRequestBuilder.java | 12 ++-- .../PasswordMethodsRequestBuilder.java | 12 ++-- ...uthenticationMethodItemRequestBuilder.java | 12 ++-- .../PhoneMethodsRequestBuilder.java | 22 +++--- ...uthenticationMethodItemRequestBuilder.java | 32 ++++----- .../SoftwareOathMethodsRequestBuilder.java | 12 ++-- ...uthenticationMethodItemRequestBuilder.java | 22 +++--- ...poraryAccessPassMethodsRequestBuilder.java | 22 +++--- ...uthenticationMethodItemRequestBuilder.java | 22 +++--- ...HelloForBusinessMethodsRequestBuilder.java | 12 ++-- ...uthenticationMethodItemRequestBuilder.java | 22 +++--- .../item/calendar/CalendarRequestBuilder.java | 68 +++---------------- .../CalendarPermissionsRequestBuilder.java | 22 +++--- .../CalendarPermissionItemRequestBuilder.java | 32 ++++----- .../CalendarViewRequestBuilder.java | 2 - .../AttachmentsRequestBuilder.java | 22 +++--- .../item/AttachmentItemRequestBuilder.java | 10 ++- .../extensions/ExtensionsRequestBuilder.java | 20 +++--- .../item/ExtensionItemRequestBuilder.java | 12 ++-- .../instances/InstancesRequestBuilder.java | 2 - .../AttachmentsRequestBuilder.java | 22 +++--- .../item/AttachmentItemRequestBuilder.java | 10 ++- .../extensions/ExtensionsRequestBuilder.java | 20 +++--- .../item/ExtensionItemRequestBuilder.java | 12 ++-- .../calendar/events/EventsRequestBuilder.java | 22 +++--- .../events/item/EventItemRequestBuilder.java | 10 ++- .../AttachmentsRequestBuilder.java | 22 +++--- .../item/AttachmentItemRequestBuilder.java | 10 ++- .../extensions/ExtensionsRequestBuilder.java | 20 +++--- .../item/ExtensionItemRequestBuilder.java | 12 ++-- .../instances/InstancesRequestBuilder.java | 2 - .../AttachmentsRequestBuilder.java | 22 +++--- .../item/AttachmentItemRequestBuilder.java | 10 ++- .../extensions/ExtensionsRequestBuilder.java | 20 +++--- .../item/ExtensionItemRequestBuilder.java | 12 ++-- .../CalendarGroupsRequestBuilder.java | 22 +++--- .../item/CalendarGroupItemRequestBuilder.java | 32 ++++----- .../calendars/CalendarsRequestBuilder.java | 22 +++--- .../CalendarPermissionsRequestBuilder.java | 22 +++--- .../CalendarPermissionItemRequestBuilder.java | 32 ++++----- .../CalendarViewRequestBuilder.java | 2 - .../AttachmentsRequestBuilder.java | 22 +++--- .../item/AttachmentItemRequestBuilder.java | 10 ++- .../extensions/ExtensionsRequestBuilder.java | 20 +++--- .../item/ExtensionItemRequestBuilder.java | 12 ++-- .../instances/InstancesRequestBuilder.java | 2 - .../AttachmentsRequestBuilder.java | 22 +++--- .../item/AttachmentItemRequestBuilder.java | 10 ++- .../extensions/ExtensionsRequestBuilder.java | 20 +++--- .../item/ExtensionItemRequestBuilder.java | 12 ++-- .../item/events/EventsRequestBuilder.java | 22 +++--- .../events/item/EventItemRequestBuilder.java | 10 ++- .../AttachmentsRequestBuilder.java | 22 +++--- .../item/AttachmentItemRequestBuilder.java | 10 ++- .../extensions/ExtensionsRequestBuilder.java | 20 +++--- .../item/ExtensionItemRequestBuilder.java | 12 ++-- .../instances/InstancesRequestBuilder.java | 2 - .../AttachmentsRequestBuilder.java | 22 +++--- .../item/AttachmentItemRequestBuilder.java | 10 ++- .../extensions/ExtensionsRequestBuilder.java | 20 +++--- .../item/ExtensionItemRequestBuilder.java | 12 ++-- .../calendars/CalendarsRequestBuilder.java | 22 +++--- .../CalendarPermissionsRequestBuilder.java | 22 +++--- .../CalendarPermissionItemRequestBuilder.java | 32 ++++----- .../CalendarViewRequestBuilder.java | 2 - .../AttachmentsRequestBuilder.java | 22 +++--- .../item/AttachmentItemRequestBuilder.java | 10 ++- .../extensions/ExtensionsRequestBuilder.java | 20 +++--- .../item/ExtensionItemRequestBuilder.java | 12 ++-- .../instances/InstancesRequestBuilder.java | 2 - .../AttachmentsRequestBuilder.java | 22 +++--- .../item/AttachmentItemRequestBuilder.java | 10 ++- .../extensions/ExtensionsRequestBuilder.java | 20 +++--- .../item/ExtensionItemRequestBuilder.java | 12 ++-- .../item/events/EventsRequestBuilder.java | 22 +++--- .../events/item/EventItemRequestBuilder.java | 10 ++- .../AttachmentsRequestBuilder.java | 22 +++--- .../item/AttachmentItemRequestBuilder.java | 10 ++- .../extensions/ExtensionsRequestBuilder.java | 20 +++--- .../item/ExtensionItemRequestBuilder.java | 12 ++-- .../instances/InstancesRequestBuilder.java | 2 - .../AttachmentsRequestBuilder.java | 22 +++--- .../item/AttachmentItemRequestBuilder.java | 10 ++- .../extensions/ExtensionsRequestBuilder.java | 20 +++--- .../item/ExtensionItemRequestBuilder.java | 12 ++-- .../CalendarViewRequestBuilder.java | 2 - .../AttachmentsRequestBuilder.java | 22 +++--- .../item/AttachmentItemRequestBuilder.java | 10 ++- .../extensions/ExtensionsRequestBuilder.java | 20 +++--- .../item/ExtensionItemRequestBuilder.java | 12 ++-- .../instances/InstancesRequestBuilder.java | 2 - .../AttachmentsRequestBuilder.java | 22 +++--- .../item/AttachmentItemRequestBuilder.java | 10 ++- .../extensions/ExtensionsRequestBuilder.java | 20 +++--- .../item/ExtensionItemRequestBuilder.java | 12 ++-- .../users/item/chats/ChatsRequestBuilder.java | 12 ++-- .../GetAllMessagesRequestBuilder.java | 12 ++-- .../chats/item/ChatItemRequestBuilder.java | 12 ++-- .../InstalledAppsRequestBuilder.java | 22 +++--- ...eamsAppInstallationItemRequestBuilder.java | 22 +++--- .../item/members/MembersRequestBuilder.java | 22 +++--- .../ConversationMemberItemRequestBuilder.java | 22 +++--- .../item/messages/MessagesRequestBuilder.java | 22 +++--- .../messages/delta/DeltaRequestBuilder.java | 12 ++-- .../item/ChatMessageItemRequestBuilder.java | 12 ++-- .../HostedContentsRequestBuilder.java | 12 ++-- ...essageHostedContentItemRequestBuilder.java | 12 ++-- .../item/value/ContentRequestBuilder.java | 2 - .../item/replies/RepliesRequestBuilder.java | 22 +++--- .../replies/delta/DeltaRequestBuilder.java | 12 ++-- .../item/ChatMessageItemRequestBuilder.java | 12 ++-- .../HostedContentsRequestBuilder.java | 12 ++-- ...essageHostedContentItemRequestBuilder.java | 12 ++-- .../item/value/ContentRequestBuilder.java | 2 - .../PermissionGrantsRequestBuilder.java | 12 ++-- .../PinnedMessagesRequestBuilder.java | 22 +++--- ...nnedChatMessageInfoItemRequestBuilder.java | 10 ++- .../chats/item/tabs/TabsRequestBuilder.java | 22 +++--- .../tabs/item/TeamsTabItemRequestBuilder.java | 32 ++++----- .../ContactFoldersRequestBuilder.java | 22 +++--- .../item/ContactFolderItemRequestBuilder.java | 32 ++++----- .../ChildFoldersRequestBuilder.java | 22 +++--- .../item/contacts/ContactsRequestBuilder.java | 22 +++--- .../item/contacts/ContactsRequestBuilder.java | 22 +++--- .../item/contacts/ContactsRequestBuilder.java | 22 +++--- .../item/ContactItemRequestBuilder.java | 32 ++++----- .../CreatedObjectsRequestBuilder.java | 12 ++-- .../DirectReportsRequestBuilder.java | 2 - .../users/item/drive/DriveRequestBuilder.java | 12 ++-- .../item/drives/DrivesRequestBuilder.java | 12 ++-- ...earningCourseActivitiesRequestBuilder.java | 12 ++-- ...rningCourseActivityItemRequestBuilder.java | 12 ++-- ...xternalcourseActivityIdRequestBuilder.java | 12 ++-- .../item/events/EventsRequestBuilder.java | 22 +++--- .../events/item/EventItemRequestBuilder.java | 32 ++++----- .../AttachmentsRequestBuilder.java | 22 +++--- .../item/AttachmentItemRequestBuilder.java | 10 ++- .../extensions/ExtensionsRequestBuilder.java | 20 +++--- .../item/ExtensionItemRequestBuilder.java | 12 ++-- .../instances/InstancesRequestBuilder.java | 2 - .../AttachmentsRequestBuilder.java | 22 +++--- .../item/AttachmentItemRequestBuilder.java | 10 ++- .../extensions/ExtensionsRequestBuilder.java | 20 +++--- .../item/ExtensionItemRequestBuilder.java | 12 ++-- .../ExportPersonalDataRequestBuilder.java | 8 +-- .../FollowedSitesRequestBuilder.java | 12 ++-- ...edAppDiagnosticStatusesRequestBuilder.java | 2 + .../GetManagedAppPoliciesRequestBuilder.java | 2 + ...dDevicesWithAppFailuresRequestBuilder.java | 2 + .../overrides/OverridesRequestBuilder.java | 22 +++--- ...ssificationOverrideItemRequestBuilder.java | 20 +++--- .../insights/shared/SharedRequestBuilder.java | 12 ++-- .../trending/TrendingRequestBuilder.java | 12 ++-- .../insights/used/UsedRequestBuilder.java | 12 ++-- .../JoinedTeamsRequestBuilder.java | 12 ++-- .../AllChannelsRequestBuilder.java | 12 ++-- .../item/channels/ChannelsRequestBuilder.java | 22 +++--- .../GetAllMessagesRequestBuilder.java | 12 ++-- .../item/ChannelItemRequestBuilder.java | 32 ++++----- ...alNameUserPrincipalNameRequestBuilder.java | 12 ++-- .../FilesFolderRequestBuilder.java | 12 ++-- .../content/ContentRequestBuilder.java | 2 - .../item/members/MembersRequestBuilder.java | 22 +++--- .../ConversationMemberItemRequestBuilder.java | 32 ++++----- .../item/messages/MessagesRequestBuilder.java | 22 +++--- .../messages/delta/DeltaRequestBuilder.java | 12 ++-- .../item/ChatMessageItemRequestBuilder.java | 22 +++--- .../HostedContentsRequestBuilder.java | 12 ++-- ...essageHostedContentItemRequestBuilder.java | 12 ++-- .../item/value/ContentRequestBuilder.java | 2 - .../item/replies/RepliesRequestBuilder.java | 22 +++--- .../replies/delta/DeltaRequestBuilder.java | 12 ++-- .../item/ChatMessageItemRequestBuilder.java | 12 ++-- .../HostedContentsRequestBuilder.java | 12 ++-- ...essageHostedContentItemRequestBuilder.java | 12 ++-- .../item/value/ContentRequestBuilder.java | 2 - .../SharedWithTeamsRequestBuilder.java | 12 ++-- ...WithChannelTeamInfoItemRequestBuilder.java | 22 +++--- .../AllowedMembersRequestBuilder.java | 12 ++-- .../item/tabs/TabsRequestBuilder.java | 22 +++--- .../tabs/item/TeamsTabItemRequestBuilder.java | 32 ++++----- .../item/clone/CloneRequestBuilder.java | 8 +-- .../IncomingChannelsRequestBuilder.java | 12 ++-- .../InstalledAppsRequestBuilder.java | 22 +++--- ...eamsAppInstallationItemRequestBuilder.java | 22 +++--- .../item/members/MembersRequestBuilder.java | 22 +++--- .../ConversationMemberItemRequestBuilder.java | 32 ++++----- .../PermissionGrantsRequestBuilder.java | 12 ++-- .../item/photo/PhotoRequestBuilder.java | 12 ++-- .../photo/value/ContentRequestBuilder.java | 2 - .../PrimaryChannelRequestBuilder.java | 12 ++-- ...alNameUserPrincipalNameRequestBuilder.java | 12 ++-- .../FilesFolderRequestBuilder.java | 12 ++-- .../content/ContentRequestBuilder.java | 2 - .../members/MembersRequestBuilder.java | 22 +++--- .../ConversationMemberItemRequestBuilder.java | 32 ++++----- .../messages/MessagesRequestBuilder.java | 22 +++--- .../messages/delta/DeltaRequestBuilder.java | 12 ++-- .../item/ChatMessageItemRequestBuilder.java | 22 +++--- .../HostedContentsRequestBuilder.java | 12 ++-- ...essageHostedContentItemRequestBuilder.java | 12 ++-- .../item/value/ContentRequestBuilder.java | 2 - .../item/replies/RepliesRequestBuilder.java | 22 +++--- .../replies/delta/DeltaRequestBuilder.java | 12 ++-- .../item/ChatMessageItemRequestBuilder.java | 12 ++-- .../HostedContentsRequestBuilder.java | 12 ++-- ...essageHostedContentItemRequestBuilder.java | 12 ++-- .../item/value/ContentRequestBuilder.java | 2 - .../SharedWithTeamsRequestBuilder.java | 12 ++-- ...WithChannelTeamInfoItemRequestBuilder.java | 22 +++--- .../AllowedMembersRequestBuilder.java | 12 ++-- .../tabs/TabsRequestBuilder.java | 22 +++--- .../tabs/item/TeamsTabItemRequestBuilder.java | 32 ++++----- .../item/schedule/ScheduleRequestBuilder.java | 12 ++-- .../OfferShiftRequestsRequestBuilder.java | 22 +++--- .../OfferShiftRequestItemRequestBuilder.java | 12 ++-- ...OpenShiftChangeRequestsRequestBuilder.java | 22 +++--- ...nShiftChangeRequestItemRequestBuilder.java | 12 ++-- .../openshifts/OpenShiftsRequestBuilder.java | 22 +++--- .../item/OpenShiftItemRequestBuilder.java | 32 ++++----- .../SchedulingGroupsRequestBuilder.java | 22 +++--- .../SchedulingGroupItemRequestBuilder.java | 32 ++++----- .../schedule/shifts/ShiftsRequestBuilder.java | 22 +++--- .../shifts/item/ShiftItemRequestBuilder.java | 32 ++++----- ...wapShiftsChangeRequestsRequestBuilder.java | 22 +++--- ...ShiftsChangeRequestItemRequestBuilder.java | 12 ++-- .../TimeOffReasonsRequestBuilder.java | 22 +++--- .../item/TimeOffReasonItemRequestBuilder.java | 32 ++++----- .../TimeOffRequestsRequestBuilder.java | 12 ++-- .../TimeOffRequestItemRequestBuilder.java | 22 +++--- .../timesoff/TimesOffRequestBuilder.java | 22 +++--- .../item/TimeOffItemRequestBuilder.java | 32 ++++----- .../item/tags/TagsRequestBuilder.java | 22 +++--- .../item/TeamworkTagItemRequestBuilder.java | 32 ++++----- .../item/members/MembersRequestBuilder.java | 22 +++--- .../TeamworkTagMemberItemRequestBuilder.java | 22 +++--- .../LicenseDetailsRequestBuilder.java | 12 ++-- ...etTeamsLicensingDetailsRequestBuilder.java | 10 +-- .../MailFoldersRequestBuilder.java | 12 ++-- .../item/MailFolderItemRequestBuilder.java | 22 +++--- .../ChildFoldersRequestBuilder.java | 12 ++-- .../MessageRulesRequestBuilder.java | 22 +++--- .../item/MessageRuleItemRequestBuilder.java | 32 ++++----- .../item/messages/MessagesRequestBuilder.java | 22 +++--- .../AttachmentsRequestBuilder.java | 22 +++--- .../item/AttachmentItemRequestBuilder.java | 12 ++-- .../extensions/ExtensionsRequestBuilder.java | 20 +++--- .../item/ExtensionItemRequestBuilder.java | 22 +++--- .../item/value/ContentRequestBuilder.java | 2 - .../MessageRulesRequestBuilder.java | 22 +++--- .../item/MessageRuleItemRequestBuilder.java | 32 ++++----- .../item/messages/MessagesRequestBuilder.java | 22 +++--- .../AttachmentsRequestBuilder.java | 22 +++--- .../item/AttachmentItemRequestBuilder.java | 12 ++-- .../extensions/ExtensionsRequestBuilder.java | 20 +++--- .../item/ExtensionItemRequestBuilder.java | 22 +++--- .../item/value/ContentRequestBuilder.java | 2 - .../DeviceCategoryRequestBuilder.java | 22 +++--- .../item/users/UsersRequestBuilder.java | 12 ++-- .../WindowsProtectionStateRequestBuilder.java | 22 +++--- .../DetectedMalwareStateRequestBuilder.java | 22 +++--- ...sDeviceMalwareStateItemRequestBuilder.java | 32 ++++----- .../item/manager/ManagerRequestBuilder.java | 12 ++-- .../item/manager/ref/RefRequestBuilder.java | 30 ++++---- .../item/memberof/MemberOfRequestBuilder.java | 2 - .../item/messages/MessagesRequestBuilder.java | 12 ++-- .../item/MessageItemRequestBuilder.java | 22 +++--- .../AttachmentsRequestBuilder.java | 22 +++--- .../item/AttachmentItemRequestBuilder.java | 12 ++-- .../extensions/ExtensionsRequestBuilder.java | 20 +++--- .../item/ExtensionItemRequestBuilder.java | 22 +++--- .../item/value/ContentRequestBuilder.java | 2 - .../Oauth2PermissionGrantsRequestBuilder.java | 12 ++-- .../notebooks/NotebooksRequestBuilder.java | 22 +++--- ...ncludePersonalNotebooksRequestBuilder.java | 12 ++-- .../item/NotebookItemRequestBuilder.java | 12 ++-- .../SectionGroupsRequestBuilder.java | 22 +++--- .../SectionGroupsRequestBuilder.java | 12 ++-- .../item/sections/SectionsRequestBuilder.java | 22 +++--- .../item/pages/PagesRequestBuilder.java | 22 +++--- .../item/content/ContentRequestBuilder.java | 2 - .../item/sections/SectionsRequestBuilder.java | 22 +++--- .../item/pages/PagesRequestBuilder.java | 22 +++--- .../item/content/ContentRequestBuilder.java | 2 - .../operations/OperationsRequestBuilder.java | 10 +-- .../OnenoteOperationItemRequestBuilder.java | 12 ++-- .../onenote/pages/PagesRequestBuilder.java | 22 +++--- .../item/OnenotePageItemRequestBuilder.java | 22 +++--- .../item/content/ContentRequestBuilder.java | 2 - .../SectionGroupsRequestBuilder.java | 12 ++-- .../item/SectionGroupItemRequestBuilder.java | 12 ++-- .../SectionGroupsRequestBuilder.java | 12 ++-- .../item/sections/SectionsRequestBuilder.java | 22 +++--- .../item/pages/PagesRequestBuilder.java | 22 +++--- .../item/content/ContentRequestBuilder.java | 2 - .../sections/SectionsRequestBuilder.java | 12 ++-- .../OnenoteSectionItemRequestBuilder.java | 12 ++-- .../item/pages/PagesRequestBuilder.java | 22 +++--- .../item/content/ContentRequestBuilder.java | 2 - .../OnlineMeetingsRequestBuilder.java | 22 +++--- .../item/OnlineMeetingItemRequestBuilder.java | 32 ++++----- .../AttendanceRecordsRequestBuilder.java | 12 ++-- .../AttendeeReportRequestBuilder.java | 2 - ...alAppointmentJoinWebUrlRequestBuilder.java | 10 +-- .../recordings/RecordingsRequestBuilder.java | 10 +-- .../item/CallRecordingItemRequestBuilder.java | 12 ++-- .../TranscriptsRequestBuilder.java | 12 ++-- .../CallTranscriptItemRequestBuilder.java | 12 ++-- .../item/content/ContentRequestBuilder.java | 2 - .../MetadataContentRequestBuilder.java | 2 - .../MasterCategoriesRequestBuilder.java | 22 +++--- .../OutlookCategoryItemRequestBuilder.java | 32 ++++----- .../OwnedDevicesRequestBuilder.java | 2 - .../OwnedObjectsRequestBuilder.java | 2 - .../item/people/PeopleRequestBuilder.java | 12 ++-- .../PermissionGrantsRequestBuilder.java | 12 ++-- .../users/item/photo/PhotoRequestBuilder.java | 12 ++-- .../photo/value/ContentRequestBuilder.java | 2 - .../planner/plans/PlansRequestBuilder.java | 12 ++-- .../item/buckets/BucketsRequestBuilder.java | 12 ++-- .../item/tasks/TasksRequestBuilder.java | 12 ++-- ...signedToTaskBoardFormatRequestBuilder.java | 14 ++-- .../BucketTaskBoardFormatRequestBuilder.java | 14 ++-- .../item/details/DetailsRequestBuilder.java | 14 ++-- ...ProgressTaskBoardFormatRequestBuilder.java | 14 ++-- .../item/details/DetailsRequestBuilder.java | 14 ++-- .../plans/item/tasks/TasksRequestBuilder.java | 12 ++-- ...signedToTaskBoardFormatRequestBuilder.java | 14 ++-- .../BucketTaskBoardFormatRequestBuilder.java | 14 ++-- .../item/details/DetailsRequestBuilder.java | 14 ++-- ...ProgressTaskBoardFormatRequestBuilder.java | 14 ++-- .../planner/tasks/TasksRequestBuilder.java | 12 ++-- ...signedToTaskBoardFormatRequestBuilder.java | 14 ++-- .../BucketTaskBoardFormatRequestBuilder.java | 14 ++-- .../item/details/DetailsRequestBuilder.java | 14 ++-- ...ProgressTaskBoardFormatRequestBuilder.java | 14 ++-- .../item/presence/PresenceRequestBuilder.java | 12 ++-- .../RegisteredDevicesRequestBuilder.java | 2 - ...DateTimeWithEndDateTimeRequestBuilder.java | 2 + .../item/settings/SettingsRequestBuilder.java | 22 +++--- .../ShiftPreferencesRequestBuilder.java | 22 +++--- .../windows/WindowsRequestBuilder.java | 12 ++-- .../WindowsSettingItemRequestBuilder.java | 12 ++-- .../instances/InstancesRequestBuilder.java | 12 ++-- ...dowsSettingInstanceItemRequestBuilder.java | 12 ++-- .../item/sponsors/SponsorsRequestBuilder.java | 12 ++-- .../item/teamwork/TeamworkRequestBuilder.java | 12 ++-- .../AssociatedTeamsRequestBuilder.java | 12 ++-- .../InstalledAppsRequestBuilder.java | 22 +++--- ...eamsAppInstallationItemRequestBuilder.java | 22 +++--- .../item/chat/ChatRequestBuilder.java | 12 ++-- .../item/todo/lists/ListsRequestBuilder.java | 22 +++--- .../todo/lists/delta/DeltaRequestBuilder.java | 12 ++-- .../item/TodoTaskListItemRequestBuilder.java | 32 ++++----- .../lists/item/tasks/TasksRequestBuilder.java | 22 +++--- .../item/tasks/delta/DeltaRequestBuilder.java | 12 ++-- .../item/TodoTaskItemRequestBuilder.java | 32 ++++----- .../AttachmentsRequestBuilder.java | 22 +++--- .../AttachmentBaseItemRequestBuilder.java | 22 +++--- .../item/value/ContentRequestBuilder.java | 2 - .../ChecklistItemsRequestBuilder.java | 22 +++--- .../item/ChecklistItemItemRequestBuilder.java | 32 ++++----- .../LinkedResourcesRequestBuilder.java | 22 +++--- .../LinkedResourceItemRequestBuilder.java | 32 ++++----- .../TransitiveMemberOfRequestBuilder.java | 2 - 2243 files changed, 15899 insertions(+), 21797 deletions(-) diff --git a/src/main/java/com/microsoft/graph/generated/admin/edge/internetexplorermode/sitelists/SiteListsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/admin/edge/internetexplorermode/sitelists/SiteListsRequestBuilder.java index 216ec9eaebb..b2b9fc8682e 100644 --- a/src/main/java/com/microsoft/graph/generated/admin/edge/internetexplorermode/sitelists/SiteListsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/admin/edge/internetexplorermode/sitelists/SiteListsRequestBuilder.java @@ -60,21 +60,19 @@ public SiteListsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/admin/edge/internetExplorerMode/siteLists{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the browserSiteList objects and their properties. + * A collection of site lists to support Internet Explorer mode. * @return a {@link BrowserSiteListCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BrowserSiteListCollectionResponse get() { return get(null); } /** - * Get a list of the browserSiteList objects and their properties. + * A collection of site lists to support Internet Explorer mode. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BrowserSiteListCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BrowserSiteListCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public BrowserSiteListCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, BrowserSiteListCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new browserSiteList object to support Internet Explorer mode. + * Create new navigation property to siteLists for admin * @param body The request body * @return a {@link BrowserSiteList} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BrowserSiteList post(@jakarta.annotation.Nonnull final BrowserSiteList body) { return post(body, null); } /** - * Create a new browserSiteList object to support Internet Explorer mode. + * Create new navigation property to siteLists for admin * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BrowserSiteList} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BrowserSiteList post(@jakarta.annotation.Nonnull final BrowserSiteList body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public BrowserSiteList post(@jakarta.annotation.Nonnull final BrowserSiteList bo return this.requestAdapter.send(requestInfo, errorMapping, BrowserSiteList::createFromDiscriminatorValue); } /** - * Get a list of the browserSiteList objects and their properties. + * A collection of site lists to support Internet Explorer mode. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the browserSiteList objects and their properties. + * A collection of site lists to support Internet Explorer mode. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new browserSiteList object to support Internet Explorer mode. + * Create new navigation property to siteLists for admin * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new browserSiteList object to support Internet Explorer mode. + * Create new navigation property to siteLists for admin * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public SiteListsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new SiteListsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the browserSiteList objects and their properties. + * A collection of site lists to support Internet Explorer mode. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/admin/edge/internetexplorermode/sitelists/item/BrowserSiteListItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/admin/edge/internetexplorermode/sitelists/item/BrowserSiteListItemRequestBuilder.java index af6c47e7393..52a4e508d72 100644 --- a/src/main/java/com/microsoft/graph/generated/admin/edge/internetexplorermode/sitelists/item/BrowserSiteListItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/admin/edge/internetexplorermode/sitelists/item/BrowserSiteListItemRequestBuilder.java @@ -64,18 +64,16 @@ public BrowserSiteListItemRequestBuilder(@jakarta.annotation.Nonnull final Strin super(requestAdapter, "{+baseurl}/admin/edge/internetExplorerMode/siteLists/{browserSiteList%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a browserSiteList object. + * Delete navigation property siteLists for admin * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a browserSiteList object. + * Delete navigation property siteLists for admin * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -84,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get a browserSiteList that contains browserSite and browserSharedCookie resources. + * A collection of site lists to support Internet Explorer mode. * @return a {@link BrowserSiteList} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BrowserSiteList get() { return get(null); } /** - * Get a browserSiteList that contains browserSite and browserSharedCookie resources. + * A collection of site lists to support Internet Explorer mode. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BrowserSiteList} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BrowserSiteList get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,23 +104,21 @@ public BrowserSiteList get(@jakarta.annotation.Nullable final java.util.function return this.requestAdapter.send(requestInfo, errorMapping, BrowserSiteList::createFromDiscriminatorValue); } /** - * Update the properties of a browserSiteList object. + * Update the navigation property siteLists in admin * @param body The request body * @return a {@link BrowserSiteList} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BrowserSiteList patch(@jakarta.annotation.Nonnull final BrowserSiteList body) { return patch(body, null); } /** - * Update the properties of a browserSiteList object. + * Update the navigation property siteLists in admin * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BrowserSiteList} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BrowserSiteList patch(@jakarta.annotation.Nonnull final BrowserSiteList body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +129,7 @@ public BrowserSiteList patch(@jakarta.annotation.Nonnull final BrowserSiteList b return this.requestAdapter.send(requestInfo, errorMapping, BrowserSiteList::createFromDiscriminatorValue); } /** - * Delete a browserSiteList object. + * Delete navigation property siteLists for admin * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +137,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a browserSiteList object. + * Delete navigation property siteLists for admin * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get a browserSiteList that contains browserSite and browserSharedCookie resources. + * A collection of site lists to support Internet Explorer mode. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -163,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a browserSiteList that contains browserSite and browserSharedCookie resources. + * A collection of site lists to support Internet Explorer mode. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -175,7 +169,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a browserSiteList object. + * Update the navigation property siteLists in admin * @param body The request body * @return a {@link RequestInformation} */ @@ -184,7 +178,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a browserSiteList object. + * Update the navigation property siteLists in admin * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -215,7 +209,7 @@ public BrowserSiteListItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fin public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get a browserSiteList that contains browserSite and browserSharedCookie resources. + * A collection of site lists to support Internet Explorer mode. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/admin/edge/internetexplorermode/sitelists/item/sharedcookies/SharedCookiesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/admin/edge/internetexplorermode/sitelists/item/sharedcookies/SharedCookiesRequestBuilder.java index a87397c76d7..f2e15bb91ce 100644 --- a/src/main/java/com/microsoft/graph/generated/admin/edge/internetexplorermode/sitelists/item/sharedcookies/SharedCookiesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/admin/edge/internetexplorermode/sitelists/item/sharedcookies/SharedCookiesRequestBuilder.java @@ -60,21 +60,19 @@ public SharedCookiesRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/admin/edge/internetExplorerMode/siteLists/{browserSiteList%2Did}/sharedCookies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the browserSharedCookie objects and their properties. + * A collection of shared cookies defined for the site list. * @return a {@link BrowserSharedCookieCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BrowserSharedCookieCollectionResponse get() { return get(null); } /** - * Get a list of the browserSharedCookie objects and their properties. + * A collection of shared cookies defined for the site list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BrowserSharedCookieCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BrowserSharedCookieCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public BrowserSharedCookieCollectionResponse get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, BrowserSharedCookieCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new browserSharedCookie object in a browserSiteList. + * Create new navigation property to sharedCookies for admin * @param body The request body * @return a {@link BrowserSharedCookie} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BrowserSharedCookie post(@jakarta.annotation.Nonnull final BrowserSharedCookie body) { return post(body, null); } /** - * Create a new browserSharedCookie object in a browserSiteList. + * Create new navigation property to sharedCookies for admin * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BrowserSharedCookie} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BrowserSharedCookie post(@jakarta.annotation.Nonnull final BrowserSharedCookie body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public BrowserSharedCookie post(@jakarta.annotation.Nonnull final BrowserSharedC return this.requestAdapter.send(requestInfo, errorMapping, BrowserSharedCookie::createFromDiscriminatorValue); } /** - * Get a list of the browserSharedCookie objects and their properties. + * A collection of shared cookies defined for the site list. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the browserSharedCookie objects and their properties. + * A collection of shared cookies defined for the site list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new browserSharedCookie object in a browserSiteList. + * Create new navigation property to sharedCookies for admin * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new browserSharedCookie object in a browserSiteList. + * Create new navigation property to sharedCookies for admin * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public SharedCookiesRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new SharedCookiesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the browserSharedCookie objects and their properties. + * A collection of shared cookies defined for the site list. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/admin/edge/internetexplorermode/sitelists/item/sharedcookies/item/BrowserSharedCookieItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/admin/edge/internetexplorermode/sitelists/item/sharedcookies/item/BrowserSharedCookieItemRequestBuilder.java index b4718a7eedf..6b32c94dc14 100644 --- a/src/main/java/com/microsoft/graph/generated/admin/edge/internetexplorermode/sitelists/item/sharedcookies/item/BrowserSharedCookieItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/admin/edge/internetexplorermode/sitelists/item/sharedcookies/item/BrowserSharedCookieItemRequestBuilder.java @@ -37,18 +37,16 @@ public BrowserSharedCookieItemRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/admin/edge/internetExplorerMode/siteLists/{browserSiteList%2Did}/sharedCookies/{browserSharedCookie%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a browserSharedCookie from a browserSiteList. + * Delete navigation property sharedCookies for admin * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a browserSharedCookie from a browserSiteList. + * Delete navigation property sharedCookies for admin * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get a session cookie that can be shared between a Microsoft Edge process and an Internet Explorer process, while using Internet Explorer mode. + * A collection of shared cookies defined for the site list. * @return a {@link BrowserSharedCookie} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BrowserSharedCookie get() { return get(null); } /** - * Get a session cookie that can be shared between a Microsoft Edge process and an Internet Explorer process, while using Internet Explorer mode. + * A collection of shared cookies defined for the site list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BrowserSharedCookie} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BrowserSharedCookie get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public BrowserSharedCookie get(@jakarta.annotation.Nullable final java.util.func return this.requestAdapter.send(requestInfo, errorMapping, BrowserSharedCookie::createFromDiscriminatorValue); } /** - * Update the properties of a browserSharedCookie object. + * Update the navigation property sharedCookies in admin * @param body The request body * @return a {@link BrowserSharedCookie} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BrowserSharedCookie patch(@jakarta.annotation.Nonnull final BrowserSharedCookie body) { return patch(body, null); } /** - * Update the properties of a browserSharedCookie object. + * Update the navigation property sharedCookies in admin * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BrowserSharedCookie} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BrowserSharedCookie patch(@jakarta.annotation.Nonnull final BrowserSharedCookie body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public BrowserSharedCookie patch(@jakarta.annotation.Nonnull final BrowserShared return this.requestAdapter.send(requestInfo, errorMapping, BrowserSharedCookie::createFromDiscriminatorValue); } /** - * Delete a browserSharedCookie from a browserSiteList. + * Delete navigation property sharedCookies for admin * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a browserSharedCookie from a browserSiteList. + * Delete navigation property sharedCookies for admin * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get a session cookie that can be shared between a Microsoft Edge process and an Internet Explorer process, while using Internet Explorer mode. + * A collection of shared cookies defined for the site list. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a session cookie that can be shared between a Microsoft Edge process and an Internet Explorer process, while using Internet Explorer mode. + * A collection of shared cookies defined for the site list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a browserSharedCookie object. + * Update the navigation property sharedCookies in admin * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a browserSharedCookie object. + * Update the navigation property sharedCookies in admin * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public BrowserSharedCookieItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get a session cookie that can be shared between a Microsoft Edge process and an Internet Explorer process, while using Internet Explorer mode. + * A collection of shared cookies defined for the site list. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/admin/edge/internetexplorermode/sitelists/item/sites/SitesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/admin/edge/internetexplorermode/sitelists/item/sites/SitesRequestBuilder.java index 0e87f9d1241..83d91bc9772 100644 --- a/src/main/java/com/microsoft/graph/generated/admin/edge/internetexplorermode/sitelists/item/sites/SitesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/admin/edge/internetexplorermode/sitelists/item/sites/SitesRequestBuilder.java @@ -60,21 +60,19 @@ public SitesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/admin/edge/internetExplorerMode/siteLists/{browserSiteList%2Did}/sites{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the browserSite objects and their properties. + * A collection of sites defined for the site list. * @return a {@link BrowserSiteCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BrowserSiteCollectionResponse get() { return get(null); } /** - * Get a list of the browserSite objects and their properties. + * A collection of sites defined for the site list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BrowserSiteCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BrowserSiteCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public BrowserSiteCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, BrowserSiteCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new browserSite object in a browserSiteList. + * Create new navigation property to sites for admin * @param body The request body * @return a {@link BrowserSite} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BrowserSite post(@jakarta.annotation.Nonnull final BrowserSite body) { return post(body, null); } /** - * Create a new browserSite object in a browserSiteList. + * Create new navigation property to sites for admin * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BrowserSite} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BrowserSite post(@jakarta.annotation.Nonnull final BrowserSite body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public BrowserSite post(@jakarta.annotation.Nonnull final BrowserSite body, @jak return this.requestAdapter.send(requestInfo, errorMapping, BrowserSite::createFromDiscriminatorValue); } /** - * Get a list of the browserSite objects and their properties. + * A collection of sites defined for the site list. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the browserSite objects and their properties. + * A collection of sites defined for the site list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new browserSite object in a browserSiteList. + * Create new navigation property to sites for admin * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new browserSite object in a browserSiteList. + * Create new navigation property to sites for admin * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public SitesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new SitesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the browserSite objects and their properties. + * A collection of sites defined for the site list. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/admin/edge/internetexplorermode/sitelists/item/sites/item/BrowserSiteItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/admin/edge/internetexplorermode/sitelists/item/sites/item/BrowserSiteItemRequestBuilder.java index 78edf892a0c..f9cff60f933 100644 --- a/src/main/java/com/microsoft/graph/generated/admin/edge/internetexplorermode/sitelists/item/sites/item/BrowserSiteItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/admin/edge/internetexplorermode/sitelists/item/sites/item/BrowserSiteItemRequestBuilder.java @@ -37,18 +37,16 @@ public BrowserSiteItemRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/admin/edge/internetExplorerMode/siteLists/{browserSiteList%2Did}/sites/{browserSite%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a browserSite from a browserSiteList. + * Delete navigation property sites for admin * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a browserSite from a browserSiteList. + * Delete navigation property sites for admin * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get a browserSite that resides on a browserSiteList. + * A collection of sites defined for the site list. * @return a {@link BrowserSite} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BrowserSite get() { return get(null); } /** - * Get a browserSite that resides on a browserSiteList. + * A collection of sites defined for the site list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BrowserSite} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BrowserSite get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public BrowserSite get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.send(requestInfo, errorMapping, BrowserSite::createFromDiscriminatorValue); } /** - * Update the properties of a browserSite object. + * Update the navigation property sites in admin * @param body The request body * @return a {@link BrowserSite} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BrowserSite patch(@jakarta.annotation.Nonnull final BrowserSite body) { return patch(body, null); } /** - * Update the properties of a browserSite object. + * Update the navigation property sites in admin * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BrowserSite} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BrowserSite patch(@jakarta.annotation.Nonnull final BrowserSite body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public BrowserSite patch(@jakarta.annotation.Nonnull final BrowserSite body, @ja return this.requestAdapter.send(requestInfo, errorMapping, BrowserSite::createFromDiscriminatorValue); } /** - * Delete a browserSite from a browserSiteList. + * Delete navigation property sites for admin * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a browserSite from a browserSiteList. + * Delete navigation property sites for admin * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get a browserSite that resides on a browserSiteList. + * A collection of sites defined for the site list. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a browserSite that resides on a browserSiteList. + * A collection of sites defined for the site list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a browserSite object. + * Update the navigation property sites in admin * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a browserSite object. + * Update the navigation property sites in admin * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public BrowserSiteItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final S public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get a browserSite that resides on a browserSiteList. + * A collection of sites defined for the site list. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/admin/microsoft365apps/installationoptions/InstallationOptionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/admin/microsoft365apps/installationoptions/InstallationOptionsRequestBuilder.java index ce396d432c8..ee73f4bd93f 100644 --- a/src/main/java/com/microsoft/graph/generated/admin/microsoft365apps/installationoptions/InstallationOptionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/admin/microsoft365apps/installationoptions/InstallationOptionsRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of an m365AppsInstallationOptions object. + * A container for tenant-level settings for Microsoft 365 applications. * @return a {@link M365AppsInstallationOptions} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public M365AppsInstallationOptions get() { return get(null); } /** - * Read the properties and relationships of an m365AppsInstallationOptions object. + * A container for tenant-level settings for Microsoft 365 applications. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link M365AppsInstallationOptions} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public M365AppsInstallationOptions get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public M365AppsInstallationOptions get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, M365AppsInstallationOptions::createFromDiscriminatorValue); } /** - * Update the properties of an m365AppsInstallationOptions object. + * Update the navigation property installationOptions in admin * @param body The request body * @return a {@link M365AppsInstallationOptions} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public M365AppsInstallationOptions patch(@jakarta.annotation.Nonnull final M365AppsInstallationOptions body) { return patch(body, null); } /** - * Update the properties of an m365AppsInstallationOptions object. + * Update the navigation property installationOptions in admin * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link M365AppsInstallationOptions} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public M365AppsInstallationOptions patch(@jakarta.annotation.Nonnull final M365AppsInstallationOptions body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of an m365AppsInstallationOptions object. + * A container for tenant-level settings for Microsoft 365 applications. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of an m365AppsInstallationOptions object. + * A container for tenant-level settings for Microsoft 365 applications. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an m365AppsInstallationOptions object. + * Update the navigation property installationOptions in admin * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an m365AppsInstallationOptions object. + * Update the navigation property installationOptions in admin * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public InstallationOptionsRequestBuilder withUrl(@jakarta.annotation.Nonnull fin public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of an m365AppsInstallationOptions object. + * A container for tenant-level settings for Microsoft 365 applications. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/admin/people/PeopleRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/admin/people/PeopleRequestBuilder.java index 58ae80f702e..e918d72a2af 100644 --- a/src/main/java/com/microsoft/graph/generated/admin/people/PeopleRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/admin/people/PeopleRequestBuilder.java @@ -55,21 +55,19 @@ public PeopleRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/admin/people{?%24expand,%24select}", rawUrl); } /** - * Retrieve the properties and relationships of a peopleAdminSettings object. + * Represents a setting to control people-related admin settings in the tenant. * @return a {@link PeopleAdminSettings} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PeopleAdminSettings get() { return get(null); } /** - * Retrieve the properties and relationships of a peopleAdminSettings object. + * Represents a setting to control people-related admin settings in the tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PeopleAdminSettings} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PeopleAdminSettings get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,7 +77,7 @@ public PeopleAdminSettings get(@jakarta.annotation.Nullable final java.util.func return this.requestAdapter.send(requestInfo, errorMapping, PeopleAdminSettings::createFromDiscriminatorValue); } /** - * Retrieve the properties and relationships of a peopleAdminSettings object. + * Represents a setting to control people-related admin settings in the tenant. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -87,7 +85,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a peopleAdminSettings object. + * Represents a setting to control people-related admin settings in the tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -109,7 +107,7 @@ public PeopleRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw return new PeopleRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the properties and relationships of a peopleAdminSettings object. + * Represents a setting to control people-related admin settings in the tenant. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/admin/people/profilecardproperties/ProfileCardPropertiesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/admin/people/profilecardproperties/ProfileCardPropertiesRequestBuilder.java index c9ba83cce23..b88aab2968f 100644 --- a/src/main/java/com/microsoft/graph/generated/admin/people/profilecardproperties/ProfileCardPropertiesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/admin/people/profilecardproperties/ProfileCardPropertiesRequestBuilder.java @@ -60,21 +60,19 @@ public ProfileCardPropertiesRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/admin/people/profileCardProperties{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a collection of profileCardProperty resources for an organization. Each resource is identified by its directoryPropertyName property. + * Contains a collection of the properties an administrator has defined as visible on the Microsoft 365 profile card. * @return a {@link ProfileCardPropertyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ProfileCardPropertyCollectionResponse get() { return get(null); } /** - * Get a collection of profileCardProperty resources for an organization. Each resource is identified by its directoryPropertyName property. + * Contains a collection of the properties an administrator has defined as visible on the Microsoft 365 profile card. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ProfileCardPropertyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ProfileCardPropertyCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public ProfileCardPropertyCollectionResponse get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, ProfileCardPropertyCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new profileCardProperty for an organization. The new property is identified by its directoryPropertyName property. For more information about how to add properties to the profile card for an organization, see Add or remove custom attributes on a profile card using the profile card API. + * Create new navigation property to profileCardProperties for admin * @param body The request body * @return a {@link ProfileCardProperty} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ProfileCardProperty post(@jakarta.annotation.Nonnull final ProfileCardProperty body) { return post(body, null); } /** - * Create a new profileCardProperty for an organization. The new property is identified by its directoryPropertyName property. For more information about how to add properties to the profile card for an organization, see Add or remove custom attributes on a profile card using the profile card API. + * Create new navigation property to profileCardProperties for admin * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ProfileCardProperty} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ProfileCardProperty post(@jakarta.annotation.Nonnull final ProfileCardProperty body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public ProfileCardProperty post(@jakarta.annotation.Nonnull final ProfileCardPro return this.requestAdapter.send(requestInfo, errorMapping, ProfileCardProperty::createFromDiscriminatorValue); } /** - * Get a collection of profileCardProperty resources for an organization. Each resource is identified by its directoryPropertyName property. + * Contains a collection of the properties an administrator has defined as visible on the Microsoft 365 profile card. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a collection of profileCardProperty resources for an organization. Each resource is identified by its directoryPropertyName property. + * Contains a collection of the properties an administrator has defined as visible on the Microsoft 365 profile card. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new profileCardProperty for an organization. The new property is identified by its directoryPropertyName property. For more information about how to add properties to the profile card for an organization, see Add or remove custom attributes on a profile card using the profile card API. + * Create new navigation property to profileCardProperties for admin * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new profileCardProperty for an organization. The new property is identified by its directoryPropertyName property. For more information about how to add properties to the profile card for an organization, see Add or remove custom attributes on a profile card using the profile card API. + * Create new navigation property to profileCardProperties for admin * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ProfileCardPropertiesRequestBuilder withUrl(@jakarta.annotation.Nonnull f return new ProfileCardPropertiesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a collection of profileCardProperty resources for an organization. Each resource is identified by its directoryPropertyName property. + * Contains a collection of the properties an administrator has defined as visible on the Microsoft 365 profile card. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/admin/people/profilecardproperties/item/ProfileCardPropertyItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/admin/people/profilecardproperties/item/ProfileCardPropertyItemRequestBuilder.java index 67f6090f213..3b273f62536 100644 --- a/src/main/java/com/microsoft/graph/generated/admin/people/profilecardproperties/item/ProfileCardPropertyItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/admin/people/profilecardproperties/item/ProfileCardPropertyItemRequestBuilder.java @@ -37,18 +37,16 @@ public ProfileCardPropertyItemRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/admin/people/profileCardProperties/{profileCardProperty%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete the profileCardProperty object specified by its directoryPropertyName from the organization's profile card, and remove any localized customizations for that property. + * Delete navigation property profileCardProperties for admin * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete the profileCardProperty object specified by its directoryPropertyName from the organization's profile card, and remove any localized customizations for that property. + * Delete navigation property profileCardProperties for admin * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties of a profileCardProperty entity. The profileCardProperty is identified by its directoryPropertyName property. + * Contains a collection of the properties an administrator has defined as visible on the Microsoft 365 profile card. * @return a {@link ProfileCardProperty} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ProfileCardProperty get() { return get(null); } /** - * Retrieve the properties of a profileCardProperty entity. The profileCardProperty is identified by its directoryPropertyName property. + * Contains a collection of the properties an administrator has defined as visible on the Microsoft 365 profile card. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ProfileCardProperty} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ProfileCardProperty get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public ProfileCardProperty get(@jakarta.annotation.Nullable final java.util.func return this.requestAdapter.send(requestInfo, errorMapping, ProfileCardProperty::createFromDiscriminatorValue); } /** - * Update the properties of a profileCardProperty object, identified by its directoryPropertyName property. + * Update the navigation property profileCardProperties in admin * @param body The request body * @return a {@link ProfileCardProperty} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ProfileCardProperty patch(@jakarta.annotation.Nonnull final ProfileCardProperty body) { return patch(body, null); } /** - * Update the properties of a profileCardProperty object, identified by its directoryPropertyName property. + * Update the navigation property profileCardProperties in admin * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ProfileCardProperty} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ProfileCardProperty patch(@jakarta.annotation.Nonnull final ProfileCardProperty body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public ProfileCardProperty patch(@jakarta.annotation.Nonnull final ProfileCardPr return this.requestAdapter.send(requestInfo, errorMapping, ProfileCardProperty::createFromDiscriminatorValue); } /** - * Delete the profileCardProperty object specified by its directoryPropertyName from the organization's profile card, and remove any localized customizations for that property. + * Delete navigation property profileCardProperties for admin * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete the profileCardProperty object specified by its directoryPropertyName from the organization's profile card, and remove any localized customizations for that property. + * Delete navigation property profileCardProperties for admin * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties of a profileCardProperty entity. The profileCardProperty is identified by its directoryPropertyName property. + * Contains a collection of the properties an administrator has defined as visible on the Microsoft 365 profile card. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties of a profileCardProperty entity. The profileCardProperty is identified by its directoryPropertyName property. + * Contains a collection of the properties an administrator has defined as visible on the Microsoft 365 profile card. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a profileCardProperty object, identified by its directoryPropertyName property. + * Update the navigation property profileCardProperties in admin * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a profileCardProperty object, identified by its directoryPropertyName property. + * Update the navigation property profileCardProperties in admin * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public ProfileCardPropertyItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties of a profileCardProperty entity. The profileCardProperty is identified by its directoryPropertyName property. + * Contains a collection of the properties an administrator has defined as visible on the Microsoft 365 profile card. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/admin/people/pronouns/PronounsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/admin/people/pronouns/PronounsRequestBuilder.java index 2e29777a02d..721b8489c4a 100644 --- a/src/main/java/com/microsoft/graph/generated/admin/people/pronouns/PronounsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/admin/people/pronouns/PronounsRequestBuilder.java @@ -37,21 +37,19 @@ public PronounsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/admin/people/pronouns{?%24expand,%24select}", rawUrl); } /** - * Get the properties of the pronounsSettings resource for an organization. For more information on settings to manage pronouns support, see Manage pronouns settings for an organization using the Microsoft Graph API. + * Represents administrator settings that manage the support of pronouns in an organization. * @return a {@link PronounsSettings} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PronounsSettings get() { return get(null); } /** - * Get the properties of the pronounsSettings resource for an organization. For more information on settings to manage pronouns support, see Manage pronouns settings for an organization using the Microsoft Graph API. + * Represents administrator settings that manage the support of pronouns in an organization. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PronounsSettings} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PronounsSettings get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -61,23 +59,21 @@ public PronounsSettings get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, PronounsSettings::createFromDiscriminatorValue); } /** - * Update the properties of a pronounsSettings object in an organization. For more information on settings to manage pronouns support, see Manage pronouns settings for an organization using the Microsoft Graph API. + * Update the navigation property pronouns in admin * @param body The request body * @return a {@link PronounsSettings} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PronounsSettings patch(@jakarta.annotation.Nonnull final PronounsSettings body) { return patch(body, null); } /** - * Update the properties of a pronounsSettings object in an organization. For more information on settings to manage pronouns support, see Manage pronouns settings for an organization using the Microsoft Graph API. + * Update the navigation property pronouns in admin * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PronounsSettings} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PronounsSettings patch(@jakarta.annotation.Nonnull final PronounsSettings body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -88,7 +84,7 @@ public PronounsSettings patch(@jakarta.annotation.Nonnull final PronounsSettings return this.requestAdapter.send(requestInfo, errorMapping, PronounsSettings::createFromDiscriminatorValue); } /** - * Get the properties of the pronounsSettings resource for an organization. For more information on settings to manage pronouns support, see Manage pronouns settings for an organization using the Microsoft Graph API. + * Represents administrator settings that manage the support of pronouns in an organization. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -96,7 +92,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the properties of the pronounsSettings resource for an organization. For more information on settings to manage pronouns support, see Manage pronouns settings for an organization using the Microsoft Graph API. + * Represents administrator settings that manage the support of pronouns in an organization. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -108,7 +104,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a pronounsSettings object in an organization. For more information on settings to manage pronouns support, see Manage pronouns settings for an organization using the Microsoft Graph API. + * Update the navigation property pronouns in admin * @param body The request body * @return a {@link RequestInformation} */ @@ -117,7 +113,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a pronounsSettings object in an organization. For more information on settings to manage pronouns support, see Manage pronouns settings for an organization using the Microsoft Graph API. + * Update the navigation property pronouns in admin * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -142,7 +138,7 @@ public PronounsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new PronounsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the properties of the pronounsSettings resource for an organization. For more information on settings to manage pronouns support, see Manage pronouns settings for an organization using the Microsoft Graph API. + * Represents administrator settings that manage the support of pronouns in an organization. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/healthoverviews/HealthOverviewsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/healthoverviews/HealthOverviewsRequestBuilder.java index 1a8808fdf9c..92183037372 100644 --- a/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/healthoverviews/HealthOverviewsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/healthoverviews/HealthOverviewsRequestBuilder.java @@ -60,21 +60,19 @@ public HealthOverviewsRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/admin/serviceAnnouncement/healthOverviews{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the serviceHealth resources from the healthOverviews navigation property. This operation provides the health report of all subscribed services for a tenant. + * A collection of service health information for tenant. This property is a contained navigation property, it is nullable and readonly. * @return a {@link ServiceHealthCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ServiceHealthCollectionResponse get() { return get(null); } /** - * Retrieve the serviceHealth resources from the healthOverviews navigation property. This operation provides the health report of all subscribed services for a tenant. + * A collection of service health information for tenant. This property is a contained navigation property, it is nullable and readonly. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ServiceHealthCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ServiceHealthCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ServiceHealth post(@jakarta.annotation.Nonnull final ServiceHealth body, return this.requestAdapter.send(requestInfo, errorMapping, ServiceHealth::createFromDiscriminatorValue); } /** - * Retrieve the serviceHealth resources from the healthOverviews navigation property. This operation provides the health report of all subscribed services for a tenant. + * A collection of service health information for tenant. This property is a contained navigation property, it is nullable and readonly. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the serviceHealth resources from the healthOverviews navigation property. This operation provides the health report of all subscribed services for a tenant. + * A collection of service health information for tenant. This property is a contained navigation property, it is nullable and readonly. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public HealthOverviewsRequestBuilder withUrl(@jakarta.annotation.Nonnull final S return new HealthOverviewsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the serviceHealth resources from the healthOverviews navigation property. This operation provides the health report of all subscribed services for a tenant. + * A collection of service health information for tenant. This property is a contained navigation property, it is nullable and readonly. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/healthoverviews/item/ServiceHealthItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/healthoverviews/item/ServiceHealthItemRequestBuilder.java index d2d3e2f975c..956ba3a99dc 100644 --- a/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/healthoverviews/item/ServiceHealthItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/healthoverviews/item/ServiceHealthItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a serviceHealth object. This operation provides the health information of a specified service for a tenant. + * A collection of service health information for tenant. This property is a contained navigation property, it is nullable and readonly. * @return a {@link ServiceHealth} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ServiceHealth get() { return get(null); } /** - * Retrieve the properties and relationships of a serviceHealth object. This operation provides the health information of a specified service for a tenant. + * A collection of service health information for tenant. This property is a contained navigation property, it is nullable and readonly. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ServiceHealth} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ServiceHealth get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a serviceHealth object. This operation provides the health information of a specified service for a tenant. + * A collection of service health information for tenant. This property is a contained navigation property, it is nullable and readonly. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a serviceHealth object. This operation provides the health information of a specified service for a tenant. + * A collection of service health information for tenant. This property is a contained navigation property, it is nullable and readonly. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public ServiceHealthItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a serviceHealth object. This operation provides the health information of a specified service for a tenant. + * A collection of service health information for tenant. This property is a contained navigation property, it is nullable and readonly. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/healthoverviews/item/issues/item/incidentreport/IncidentReportRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/healthoverviews/item/issues/item/incidentreport/IncidentReportRequestBuilder.java index 8e60e0a001f..7b781ef69cf 100644 --- a/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/healthoverviews/item/issues/item/incidentreport/IncidentReportRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/healthoverviews/item/issues/item/incidentreport/IncidentReportRequestBuilder.java @@ -36,19 +36,21 @@ public IncidentReportRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/admin/serviceAnnouncement/healthOverviews/{serviceHealth%2Did}/issues/{serviceHealthIssue%2Did}/incidentReport()", rawUrl); } /** - * Invoke function incidentReport + * Provide the Post-Incident Review (PIR) document of a specified service issue for tenant. An issue only with status of PostIncidentReviewPublished indicates that the PIR document exists for the issue. The operation returns an error if the specified issue doesn't exist for the tenant or if PIR document does not exist for the issue. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function incidentReport + * Provide the Post-Incident Review (PIR) document of a specified service issue for tenant. An issue only with status of PostIncidentReviewPublished indicates that the PIR document exists for the issue. The operation returns an error if the specified issue doesn't exist for the tenant or if PIR document does not exist for the issue. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function incidentReport + * Provide the Post-Incident Review (PIR) document of a specified service issue for tenant. An issue only with status of PostIncidentReviewPublished indicates that the PIR document exists for the issue. The operation returns an error if the specified issue doesn't exist for the tenant or if PIR document does not exist for the issue. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function incidentReport + * Provide the Post-Incident Review (PIR) document of a specified service issue for tenant. An issue only with status of PostIncidentReviewPublished indicates that the PIR document exists for the issue. The operation returns an error if the specified issue doesn't exist for the tenant or if PIR document does not exist for the issue. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/issues/IssuesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/issues/IssuesRequestBuilder.java index 5cd74fd4f76..4707055466f 100644 --- a/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/issues/IssuesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/issues/IssuesRequestBuilder.java @@ -60,21 +60,19 @@ public IssuesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/admin/serviceAnnouncement/issues{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve serviceHealthIssue resources from the issues navigation property. This operation retrieves information about all service health issues that exist for the tenant. + * A collection of service issues for tenant. This property is a contained navigation property, it is nullable and readonly. * @return a {@link ServiceHealthIssueCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ServiceHealthIssueCollectionResponse get() { return get(null); } /** - * Retrieve serviceHealthIssue resources from the issues navigation property. This operation retrieves information about all service health issues that exist for the tenant. + * A collection of service issues for tenant. This property is a contained navigation property, it is nullable and readonly. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ServiceHealthIssueCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ServiceHealthIssueCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ServiceHealthIssue post(@jakarta.annotation.Nonnull final ServiceHealthIs return this.requestAdapter.send(requestInfo, errorMapping, ServiceHealthIssue::createFromDiscriminatorValue); } /** - * Retrieve serviceHealthIssue resources from the issues navigation property. This operation retrieves information about all service health issues that exist for the tenant. + * A collection of service issues for tenant. This property is a contained navigation property, it is nullable and readonly. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve serviceHealthIssue resources from the issues navigation property. This operation retrieves information about all service health issues that exist for the tenant. + * A collection of service issues for tenant. This property is a contained navigation property, it is nullable and readonly. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public IssuesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw return new IssuesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve serviceHealthIssue resources from the issues navigation property. This operation retrieves information about all service health issues that exist for the tenant. + * A collection of service issues for tenant. This property is a contained navigation property, it is nullable and readonly. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/issues/item/ServiceHealthIssueItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/issues/item/ServiceHealthIssueItemRequestBuilder.java index dbcd8d50f75..8ff376228e8 100644 --- a/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/issues/item/ServiceHealthIssueItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/issues/item/ServiceHealthIssueItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a serviceHealthIssue object. This operation retrieves a specified service health issue for tenant. The operation returns an error if the issue does not exist for the tenant. + * A collection of service issues for tenant. This property is a contained navigation property, it is nullable and readonly. * @return a {@link ServiceHealthIssue} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ServiceHealthIssue get() { return get(null); } /** - * Retrieve the properties and relationships of a serviceHealthIssue object. This operation retrieves a specified service health issue for tenant. The operation returns an error if the issue does not exist for the tenant. + * A collection of service issues for tenant. This property is a contained navigation property, it is nullable and readonly. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ServiceHealthIssue} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ServiceHealthIssue get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a serviceHealthIssue object. This operation retrieves a specified service health issue for tenant. The operation returns an error if the issue does not exist for the tenant. + * A collection of service issues for tenant. This property is a contained navigation property, it is nullable and readonly. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a serviceHealthIssue object. This operation retrieves a specified service health issue for tenant. The operation returns an error if the issue does not exist for the tenant. + * A collection of service issues for tenant. This property is a contained navigation property, it is nullable and readonly. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public ServiceHealthIssueItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a serviceHealthIssue object. This operation retrieves a specified service health issue for tenant. The operation returns an error if the issue does not exist for the tenant. + * A collection of service issues for tenant. This property is a contained navigation property, it is nullable and readonly. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/issues/item/incidentreport/IncidentReportRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/issues/item/incidentreport/IncidentReportRequestBuilder.java index 9e2347a9138..c7f58ad9796 100644 --- a/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/issues/item/incidentreport/IncidentReportRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/issues/item/incidentreport/IncidentReportRequestBuilder.java @@ -36,19 +36,21 @@ public IncidentReportRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/admin/serviceAnnouncement/issues/{serviceHealthIssue%2Did}/incidentReport()", rawUrl); } /** - * Invoke function incidentReport + * Provide the Post-Incident Review (PIR) document of a specified service issue for tenant. An issue only with status of PostIncidentReviewPublished indicates that the PIR document exists for the issue. The operation returns an error if the specified issue doesn't exist for the tenant or if PIR document does not exist for the issue. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function incidentReport + * Provide the Post-Incident Review (PIR) document of a specified service issue for tenant. An issue only with status of PostIncidentReviewPublished indicates that the PIR document exists for the issue. The operation returns an error if the specified issue doesn't exist for the tenant or if PIR document does not exist for the issue. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function incidentReport + * Provide the Post-Incident Review (PIR) document of a specified service issue for tenant. An issue only with status of PostIncidentReviewPublished indicates that the PIR document exists for the issue. The operation returns an error if the specified issue doesn't exist for the tenant or if PIR document does not exist for the issue. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function incidentReport + * Provide the Post-Incident Review (PIR) document of a specified service issue for tenant. An issue only with status of PostIncidentReviewPublished indicates that the PIR document exists for the issue. The operation returns an error if the specified issue doesn't exist for the tenant or if PIR document does not exist for the issue. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/messages/MessagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/messages/MessagesRequestBuilder.java index 749b3d93554..7a3c58649d2 100644 --- a/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/messages/MessagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/messages/MessagesRequestBuilder.java @@ -114,21 +114,19 @@ public MessagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/admin/serviceAnnouncement/messages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the serviceUpdateMessage resources from the messages navigation property. This operation retrieves all service update messages that exist for the tenant. + * A collection of service messages for tenant. This property is a contained navigation property, it is nullable and readonly. * @return a {@link ServiceUpdateMessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ServiceUpdateMessageCollectionResponse get() { return get(null); } /** - * Retrieve the serviceUpdateMessage resources from the messages navigation property. This operation retrieves all service update messages that exist for the tenant. + * A collection of service messages for tenant. This property is a contained navigation property, it is nullable and readonly. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ServiceUpdateMessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ServiceUpdateMessageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -163,7 +161,7 @@ public ServiceUpdateMessage post(@jakarta.annotation.Nonnull final ServiceUpdate return this.requestAdapter.send(requestInfo, errorMapping, ServiceUpdateMessage::createFromDiscriminatorValue); } /** - * Retrieve the serviceUpdateMessage resources from the messages navigation property. This operation retrieves all service update messages that exist for the tenant. + * A collection of service messages for tenant. This property is a contained navigation property, it is nullable and readonly. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -171,7 +169,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the serviceUpdateMessage resources from the messages navigation property. This operation retrieves all service update messages that exist for the tenant. + * A collection of service messages for tenant. This property is a contained navigation property, it is nullable and readonly. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -217,7 +215,7 @@ public MessagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new MessagesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the serviceUpdateMessage resources from the messages navigation property. This operation retrieves all service update messages that exist for the tenant. + * A collection of service messages for tenant. This property is a contained navigation property, it is nullable and readonly. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/messages/item/ServiceUpdateMessageItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/messages/item/ServiceUpdateMessageItemRequestBuilder.java index 6a7f42e67c1..21e04d9accc 100644 --- a/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/messages/item/ServiceUpdateMessageItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/messages/item/ServiceUpdateMessageItemRequestBuilder.java @@ -73,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a serviceUpdateMessage object. This operation retrieves a specified service update message for the tenant. The operation returns an error if the message does not exist for the tenant. + * A collection of service messages for tenant. This property is a contained navigation property, it is nullable and readonly. * @return a {@link ServiceUpdateMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ServiceUpdateMessage get() { return get(null); } /** - * Retrieve the properties and relationships of a serviceUpdateMessage object. This operation retrieves a specified service update message for the tenant. The operation returns an error if the message does not exist for the tenant. + * A collection of service messages for tenant. This property is a contained navigation property, it is nullable and readonly. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ServiceUpdateMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ServiceUpdateMessage get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -142,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a serviceUpdateMessage object. This operation retrieves a specified service update message for the tenant. The operation returns an error if the message does not exist for the tenant. + * A collection of service messages for tenant. This property is a contained navigation property, it is nullable and readonly. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -150,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a serviceUpdateMessage object. This operation retrieves a specified service update message for the tenant. The operation returns an error if the message does not exist for the tenant. + * A collection of service messages for tenant. This property is a contained navigation property, it is nullable and readonly. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -202,7 +200,7 @@ public ServiceUpdateMessageItemRequestBuilder withUrl(@jakarta.annotation.Nonnul public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a serviceUpdateMessage object. This operation retrieves a specified service update message for the tenant. The operation returns an error if the message does not exist for the tenant. + * A collection of service messages for tenant. This property is a contained navigation property, it is nullable and readonly. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/messages/item/attachments/AttachmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/messages/item/attachments/AttachmentsRequestBuilder.java index efe5115974c..29e6d5d7024 100644 --- a/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/messages/item/attachments/AttachmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/messages/item/attachments/AttachmentsRequestBuilder.java @@ -60,21 +60,19 @@ public AttachmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/admin/serviceAnnouncement/messages/{serviceUpdateMessage%2Did}/attachments{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of attachments associated with a service message. + * A collection of serviceAnnouncementAttachments. * @return a {@link ServiceAnnouncementAttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ServiceAnnouncementAttachmentCollectionResponse get() { return get(null); } /** - * Get the list of attachments associated with a service message. + * A collection of serviceAnnouncementAttachments. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ServiceAnnouncementAttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ServiceAnnouncementAttachmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ServiceAnnouncementAttachment post(@jakarta.annotation.Nonnull final Serv return this.requestAdapter.send(requestInfo, errorMapping, ServiceAnnouncementAttachment::createFromDiscriminatorValue); } /** - * Get the list of attachments associated with a service message. + * A collection of serviceAnnouncementAttachments. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of attachments associated with a service message. + * A collection of serviceAnnouncementAttachments. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public AttachmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AttachmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of attachments associated with a service message. + * A collection of serviceAnnouncementAttachments. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/messages/item/attachments/item/ServiceAnnouncementAttachmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/messages/item/attachments/item/ServiceAnnouncementAttachmentItemRequestBuilder.java index af5dd84f948..7942edd0678 100644 --- a/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/messages/item/attachments/item/ServiceAnnouncementAttachmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/messages/item/attachments/item/ServiceAnnouncementAttachmentItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a serviceAnnouncementAttachment object. + * A collection of serviceAnnouncementAttachments. * @return a {@link ServiceAnnouncementAttachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ServiceAnnouncementAttachment get() { return get(null); } /** - * Read the properties and relationships of a serviceAnnouncementAttachment object. + * A collection of serviceAnnouncementAttachments. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ServiceAnnouncementAttachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ServiceAnnouncementAttachment get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a serviceAnnouncementAttachment object. + * A collection of serviceAnnouncementAttachments. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a serviceAnnouncementAttachment object. + * A collection of serviceAnnouncementAttachments. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public ServiceAnnouncementAttachmentItemRequestBuilder withUrl(@jakarta.annotati public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a serviceAnnouncementAttachment object. + * A collection of serviceAnnouncementAttachments. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/messages/item/attachments/item/content/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/messages/item/attachments/item/content/ContentRequestBuilder.java index a7d33a3b07d..53fbf8b1e14 100644 --- a/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/messages/item/attachments/item/content/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/messages/item/attachments/item/content/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * The attachment content. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/messages/item/attachmentsarchive/AttachmentsArchiveRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/messages/item/attachmentsarchive/AttachmentsArchiveRequestBuilder.java index 06cf8b1b81d..915c5339584 100644 --- a/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/messages/item/attachmentsarchive/AttachmentsArchiveRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/admin/serviceannouncement/messages/item/attachmentsarchive/AttachmentsArchiveRequestBuilder.java @@ -39,7 +39,6 @@ public AttachmentsArchiveRequestBuilder(@jakarta.annotation.Nonnull final String * The zip file that contains all attachments for a message. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -50,7 +49,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/admin/sharepoint/settings/SettingsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/admin/sharepoint/settings/SettingsRequestBuilder.java index c9ad1562bc0..76386f6a58d 100644 --- a/src/main/java/com/microsoft/graph/generated/admin/sharepoint/settings/SettingsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/admin/sharepoint/settings/SettingsRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the tenant-level settings for SharePoint and OneDrive. + * Get settings from admin * @return a {@link SharepointSettings} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SharepointSettings get() { return get(null); } /** - * Get the tenant-level settings for SharePoint and OneDrive. + * Get settings from admin * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SharepointSettings} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SharepointSettings get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public SharepointSettings get(@jakarta.annotation.Nullable final java.util.funct return this.requestAdapter.send(requestInfo, errorMapping, SharepointSettings::createFromDiscriminatorValue); } /** - * Update one or more tenant-level settings for SharePoint and OneDrive. + * Update the navigation property settings in admin * @param body The request body * @return a {@link SharepointSettings} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SharepointSettings patch(@jakarta.annotation.Nonnull final SharepointSettings body) { return patch(body, null); } /** - * Update one or more tenant-level settings for SharePoint and OneDrive. + * Update the navigation property settings in admin * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SharepointSettings} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SharepointSettings patch(@jakarta.annotation.Nonnull final SharepointSettings body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the tenant-level settings for SharePoint and OneDrive. + * Get settings from admin * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the tenant-level settings for SharePoint and OneDrive. + * Get settings from admin * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update one or more tenant-level settings for SharePoint and OneDrive. + * Update the navigation property settings in admin * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update one or more tenant-level settings for SharePoint and OneDrive. + * Update the navigation property settings in admin * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public SettingsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the tenant-level settings for SharePoint and OneDrive. + * Get settings from admin */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/agreements/item/acceptances/AcceptancesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/agreements/item/acceptances/AcceptancesRequestBuilder.java index ae6d6fc72d3..bc3abb671ca 100644 --- a/src/main/java/com/microsoft/graph/generated/agreements/item/acceptances/AcceptancesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/agreements/item/acceptances/AcceptancesRequestBuilder.java @@ -60,21 +60,19 @@ public AcceptancesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/agreements/{agreement%2Did}/acceptances{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the details about the acceptance records for a specific agreement. + * Read-only. Information about acceptances of this agreement. * @return a {@link AgreementAcceptanceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AgreementAcceptanceCollectionResponse get() { return get(null); } /** - * Get the details about the acceptance records for a specific agreement. + * Read-only. Information about acceptances of this agreement. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AgreementAcceptanceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AgreementAcceptanceCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public AgreementAcceptance post(@jakarta.annotation.Nonnull final AgreementAccep return this.requestAdapter.send(requestInfo, errorMapping, AgreementAcceptance::createFromDiscriminatorValue); } /** - * Get the details about the acceptance records for a specific agreement. + * Read-only. Information about acceptances of this agreement. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the details about the acceptance records for a specific agreement. + * Read-only. Information about acceptances of this agreement. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public AcceptancesRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AcceptancesRequestBuilder(rawUrl, requestAdapter); } /** - * Get the details about the acceptance records for a specific agreement. + * Read-only. Information about acceptances of this agreement. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/agreements/item/file/FileRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/agreements/item/file/FileRequestBuilder.java index f26197ce551..3a618c2ce4a 100644 --- a/src/main/java/com/microsoft/graph/generated/agreements/item/file/FileRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/agreements/item/file/FileRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the details of an agreement file, including the language and version information. The default file can have multiple versions, each with its own language, that can be retrieved by specifying the Accept-Language header. + * Default PDF linked to this agreement. * @return a {@link AgreementFile} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AgreementFile get() { return get(null); } /** - * Retrieve the details of an agreement file, including the language and version information. The default file can have multiple versions, each with its own language, that can be retrieved by specifying the Accept-Language header. + * Default PDF linked to this agreement. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AgreementFile} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AgreementFile get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the details of an agreement file, including the language and version information. The default file can have multiple versions, each with its own language, that can be retrieved by specifying the Accept-Language header. + * Default PDF linked to this agreement. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the details of an agreement file, including the language and version information. The default file can have multiple versions, each with its own language, that can be retrieved by specifying the Accept-Language header. + * Default PDF linked to this agreement. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public FileRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the details of an agreement file, including the language and version information. The default file can have multiple versions, each with its own language, that can be retrieved by specifying the Accept-Language header. + * Default PDF linked to this agreement. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/agreements/item/file/localizations/LocalizationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/agreements/item/file/localizations/LocalizationsRequestBuilder.java index 07fba33cdbc..20921508adb 100644 --- a/src/main/java/com/microsoft/graph/generated/agreements/item/file/localizations/LocalizationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/agreements/item/file/localizations/LocalizationsRequestBuilder.java @@ -60,21 +60,19 @@ public LocalizationsRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/agreements/{agreement%2Did}/file/localizations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the default and localized agreement files. + * The localized version of the terms of use agreement files attached to the agreement. * @return a {@link AgreementFileLocalizationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AgreementFileLocalizationCollectionResponse get() { return get(null); } /** - * Get a list of the default and localized agreement files. + * The localized version of the terms of use agreement files attached to the agreement. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AgreementFileLocalizationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AgreementFileLocalizationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public AgreementFileLocalization post(@jakarta.annotation.Nonnull final Agreemen return this.requestAdapter.send(requestInfo, errorMapping, AgreementFileLocalization::createFromDiscriminatorValue); } /** - * Get a list of the default and localized agreement files. + * The localized version of the terms of use agreement files attached to the agreement. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the default and localized agreement files. + * The localized version of the terms of use agreement files attached to the agreement. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public LocalizationsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new LocalizationsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the default and localized agreement files. + * The localized version of the terms of use agreement files attached to the agreement. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/agreements/item/files/FilesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/agreements/item/files/FilesRequestBuilder.java index 732e377148a..ae5147d5fec 100644 --- a/src/main/java/com/microsoft/graph/generated/agreements/item/files/FilesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/agreements/item/files/FilesRequestBuilder.java @@ -82,23 +82,21 @@ public AgreementFileLocalizationCollectionResponse get(@jakarta.annotation.Nulla return this.requestAdapter.send(requestInfo, errorMapping, AgreementFileLocalizationCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new localized agreement file. + * Create new navigation property to files for agreements * @param body The request body * @return a {@link AgreementFileLocalization} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AgreementFileLocalization post(@jakarta.annotation.Nonnull final AgreementFileLocalization body) { return post(body, null); } /** - * Create a new localized agreement file. + * Create new navigation property to files for agreements * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AgreementFileLocalization} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AgreementFileLocalization post(@jakarta.annotation.Nonnull final AgreementFileLocalization body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -129,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new localized agreement file. + * Create new navigation property to files for agreements * @param body The request body * @return a {@link RequestInformation} */ @@ -138,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new localized agreement file. + * Create new navigation property to files for agreements * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/appcatalogs/teamsapps/TeamsAppsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/appcatalogs/teamsapps/TeamsAppsRequestBuilder.java index 7e763ce80fe..22043d0aa3e 100644 --- a/src/main/java/com/microsoft/graph/generated/appcatalogs/teamsapps/TeamsAppsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/appcatalogs/teamsapps/TeamsAppsRequestBuilder.java @@ -60,21 +60,19 @@ public TeamsAppsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/appCatalogs/teamsApps{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List apps from the Microsoft Teams app catalog.This includes apps from the Microsoft Teams store and apps from your organization's app catalog (the tenant app catalog). To get apps from your organization's app catalog only, specify organization as the distributionMethod in the request. + * Get teamsApps from appCatalogs * @return a {@link TeamsAppCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsAppCollectionResponse get() { return get(null); } /** - * List apps from the Microsoft Teams app catalog.This includes apps from the Microsoft Teams store and apps from your organization's app catalog (the tenant app catalog). To get apps from your organization's app catalog only, specify organization as the distributionMethod in the request. + * Get teamsApps from appCatalogs * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsAppCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsAppCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TeamsAppCollectionResponse get(@jakarta.annotation.Nullable final java.ut return this.requestAdapter.send(requestInfo, errorMapping, TeamsAppCollectionResponse::createFromDiscriminatorValue); } /** - * Publish an app to the Microsoft Teams app catalog.Specifically, this API publishes the app to your organization's catalog (the tenant app catalog);the created resource has a distributionMethod property value of organization. The requiresReview property allows any user to submit an app for review by an administrator. Admins can approve or reject these apps via this API or the Microsoft Teams admin center. + * Create new navigation property to teamsApps for appCatalogs * @param body The request body * @return a {@link TeamsApp} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsApp post(@jakarta.annotation.Nonnull final TeamsApp body) { return post(body, null); } /** - * Publish an app to the Microsoft Teams app catalog.Specifically, this API publishes the app to your organization's catalog (the tenant app catalog);the created resource has a distributionMethod property value of organization. The requiresReview property allows any user to submit an app for review by an administrator. Admins can approve or reject these apps via this API or the Microsoft Teams admin center. + * Create new navigation property to teamsApps for appCatalogs * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsApp} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsApp post(@jakarta.annotation.Nonnull final TeamsApp body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public TeamsApp post(@jakarta.annotation.Nonnull final TeamsApp body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, TeamsApp::createFromDiscriminatorValue); } /** - * List apps from the Microsoft Teams app catalog.This includes apps from the Microsoft Teams store and apps from your organization's app catalog (the tenant app catalog). To get apps from your organization's app catalog only, specify organization as the distributionMethod in the request. + * Get teamsApps from appCatalogs * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List apps from the Microsoft Teams app catalog.This includes apps from the Microsoft Teams store and apps from your organization's app catalog (the tenant app catalog). To get apps from your organization's app catalog only, specify organization as the distributionMethod in the request. + * Get teamsApps from appCatalogs * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Publish an app to the Microsoft Teams app catalog.Specifically, this API publishes the app to your organization's catalog (the tenant app catalog);the created resource has a distributionMethod property value of organization. The requiresReview property allows any user to submit an app for review by an administrator. Admins can approve or reject these apps via this API or the Microsoft Teams admin center. + * Create new navigation property to teamsApps for appCatalogs * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Publish an app to the Microsoft Teams app catalog.Specifically, this API publishes the app to your organization's catalog (the tenant app catalog);the created resource has a distributionMethod property value of organization. The requiresReview property allows any user to submit an app for review by an administrator. Admins can approve or reject these apps via this API or the Microsoft Teams admin center. + * Create new navigation property to teamsApps for appCatalogs * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public TeamsAppsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new TeamsAppsRequestBuilder(rawUrl, requestAdapter); } /** - * List apps from the Microsoft Teams app catalog.This includes apps from the Microsoft Teams store and apps from your organization's app catalog (the tenant app catalog). To get apps from your organization's app catalog only, specify organization as the distributionMethod in the request. + * Get teamsApps from appCatalogs */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/appcatalogs/teamsapps/item/TeamsAppItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/appcatalogs/teamsapps/item/TeamsAppItemRequestBuilder.java index 23ac05e13ab..c780c5ff104 100644 --- a/src/main/java/com/microsoft/graph/generated/appcatalogs/teamsapps/item/TeamsAppItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/appcatalogs/teamsapps/item/TeamsAppItemRequestBuilder.java @@ -46,18 +46,16 @@ public TeamsAppItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/appCatalogs/teamsApps/{teamsApp%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an app from an organization's app catalog (the tenant app catalog). To delete an app, the distributionMethod property for the app must be set to organization. You can also use this API to remove a submitted app from the review process. + * Delete navigation property teamsApps for appCatalogs * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an app from an organization's app catalog (the tenant app catalog). To delete an app, the distributionMethod property for the app must be set to organization. You can also use this API to remove a submitted app from the review process. + * Delete navigation property teamsApps for appCatalogs * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -113,7 +111,7 @@ public TeamsApp patch(@jakarta.annotation.Nonnull final TeamsApp body, @jakarta. return this.requestAdapter.send(requestInfo, errorMapping, TeamsApp::createFromDiscriminatorValue); } /** - * Delete an app from an organization's app catalog (the tenant app catalog). To delete an app, the distributionMethod property for the app must be set to organization. You can also use this API to remove a submitted app from the review process. + * Delete navigation property teamsApps for appCatalogs * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -121,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an app from an organization's app catalog (the tenant app catalog). To delete an app, the distributionMethod property for the app must be set to organization. You can also use this API to remove a submitted app from the review process. + * Delete navigation property teamsApps for appCatalogs * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/appcatalogs/teamsapps/item/appdefinitions/AppDefinitionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/appcatalogs/teamsapps/item/appdefinitions/AppDefinitionsRequestBuilder.java index d78cbde51c0..7ffa6ade8ad 100644 --- a/src/main/java/com/microsoft/graph/generated/appcatalogs/teamsapps/item/appdefinitions/AppDefinitionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/appcatalogs/teamsapps/item/appdefinitions/AppDefinitionsRequestBuilder.java @@ -82,23 +82,21 @@ public TeamsAppDefinitionCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, TeamsAppDefinitionCollectionResponse::createFromDiscriminatorValue); } /** - * Update an app previously published to the Microsoft Teams app catalog. To update an app, the distributionMethod property for the app must be set to organization. This API specifically updates an app published to your organization's app catalog (the tenant app catalog). + * Create new navigation property to appDefinitions for appCatalogs * @param body The request body * @return a {@link TeamsAppDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsAppDefinition post(@jakarta.annotation.Nonnull final TeamsAppDefinition body) { return post(body, null); } /** - * Update an app previously published to the Microsoft Teams app catalog. To update an app, the distributionMethod property for the app must be set to organization. This API specifically updates an app published to your organization's app catalog (the tenant app catalog). + * Create new navigation property to appDefinitions for appCatalogs * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsAppDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsAppDefinition post(@jakarta.annotation.Nonnull final TeamsAppDefinition body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -129,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update an app previously published to the Microsoft Teams app catalog. To update an app, the distributionMethod property for the app must be set to organization. This API specifically updates an app published to your organization's app catalog (the tenant app catalog). + * Create new navigation property to appDefinitions for appCatalogs * @param body The request body * @return a {@link RequestInformation} */ @@ -138,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Update an app previously published to the Microsoft Teams app catalog. To update an app, the distributionMethod property for the app must be set to organization. This API specifically updates an app published to your organization's app catalog (the tenant app catalog). + * Create new navigation property to appDefinitions for appCatalogs * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/appcatalogs/teamsapps/item/appdefinitions/item/TeamsAppDefinitionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/appcatalogs/teamsapps/item/appdefinitions/item/TeamsAppDefinitionItemRequestBuilder.java index 3bea65cbdd0..f7bbb293e10 100644 --- a/src/main/java/com/microsoft/graph/generated/appcatalogs/teamsapps/item/appdefinitions/item/TeamsAppDefinitionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/appcatalogs/teamsapps/item/appdefinitions/item/TeamsAppDefinitionItemRequestBuilder.java @@ -86,23 +86,21 @@ public TeamsAppDefinition get(@jakarta.annotation.Nullable final java.util.funct return this.requestAdapter.send(requestInfo, errorMapping, TeamsAppDefinition::createFromDiscriminatorValue); } /** - * Publish an app to the Microsoft Teams app catalog.Specifically, this API publishes the app to your organization's catalog (the tenant app catalog);the created resource has a distributionMethod property value of organization. The requiresReview property allows any user to submit an app for review by an administrator. Admins can approve or reject these apps via this API or the Microsoft Teams admin center. + * Update the navigation property appDefinitions in appCatalogs * @param body The request body * @return a {@link TeamsAppDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsAppDefinition patch(@jakarta.annotation.Nonnull final TeamsAppDefinition body) { return patch(body, null); } /** - * Publish an app to the Microsoft Teams app catalog.Specifically, this API publishes the app to your organization's catalog (the tenant app catalog);the created resource has a distributionMethod property value of organization. The requiresReview property allows any user to submit an app for review by an administrator. Admins can approve or reject these apps via this API or the Microsoft Teams admin center. + * Update the navigation property appDefinitions in appCatalogs * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsAppDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsAppDefinition patch(@jakarta.annotation.Nonnull final TeamsAppDefinition body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -153,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Publish an app to the Microsoft Teams app catalog.Specifically, this API publishes the app to your organization's catalog (the tenant app catalog);the created resource has a distributionMethod property value of organization. The requiresReview property allows any user to submit an app for review by an administrator. Admins can approve or reject these apps via this API or the Microsoft Teams admin center. + * Update the navigation property appDefinitions in appCatalogs * @param body The request body * @return a {@link RequestInformation} */ @@ -162,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Publish an app to the Microsoft Teams app catalog.Specifically, this API publishes the app to your organization's catalog (the tenant app catalog);the created resource has a distributionMethod property value of organization. The requiresReview property allows any user to submit an app for review by an administrator. Admins can approve or reject these apps via this API or the Microsoft Teams admin center. + * Update the navigation property appDefinitions in appCatalogs * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/appcatalogs/teamsapps/item/appdefinitions/item/bot/BotRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/appcatalogs/teamsapps/item/appdefinitions/item/bot/BotRequestBuilder.java index f2cd089ee9d..a6c7bda4858 100644 --- a/src/main/java/com/microsoft/graph/generated/appcatalogs/teamsapps/item/appdefinitions/item/bot/BotRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/appcatalogs/teamsapps/item/appdefinitions/item/bot/BotRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the bot associated with a specific definition of the TeamsApp. + * The details of the bot specified in the Teams app manifest. * @return a {@link TeamworkBot} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkBot get() { return get(null); } /** - * Get the bot associated with a specific definition of the TeamsApp. + * The details of the bot specified in the Teams app manifest. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamworkBot} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkBot get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the bot associated with a specific definition of the TeamsApp. + * The details of the bot specified in the Teams app manifest. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the bot associated with a specific definition of the TeamsApp. + * The details of the bot specified in the Teams app manifest. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public BotRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the bot associated with a specific definition of the TeamsApp. + * The details of the bot specified in the Teams app manifest. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/applications/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/applications/delta/DeltaRequestBuilder.java index 57aa85fec1f..d5dd7f5b78f 100644 --- a/src/main/java/com/microsoft/graph/generated/applications/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/applications/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/applications/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Get newly created, updated, or deleted applications without performing a full read of the entire resource collection. For details, see Using delta query. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Get newly created, updated, or deleted applications without performing a full read of the entire resource collection. For details, see Using delta query. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Get newly created, updated, or deleted applications without performing a full read of the entire resource collection. For details, see Using delta query. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Get newly created, updated, or deleted applications without performing a full read of the entire resource collection. For details, see Using delta query. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Get newly created, updated, or deleted applications without performing a full read of the entire resource collection. For details, see Using delta query. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/applications/item/appmanagementpolicies/item/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/applications/item/appmanagementpolicies/item/ref/RefRequestBuilder.java index 81f20125a4f..a65d41d2774 100644 --- a/src/main/java/com/microsoft/graph/generated/applications/item/appmanagementpolicies/item/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/applications/item/appmanagementpolicies/item/ref/RefRequestBuilder.java @@ -35,18 +35,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/applications/{application%2Did}/appManagementPolicies/{appManagementPolicy%2Did}/$ref", rawUrl); } /** - * Remove an appManagementPolicy policy object from an application or service principal object. When you remove the appManagementPolicy, the application or service principal adopts the tenant-wide tenantAppManagementPolicy setting. + * Delete ref of navigation property appManagementPolicies for applications * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove an appManagementPolicy policy object from an application or service principal object. When you remove the appManagementPolicy, the application or service principal adopts the tenant-wide tenantAppManagementPolicy setting. + * Delete ref of navigation property appManagementPolicies for applications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -55,7 +53,7 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove an appManagementPolicy policy object from an application or service principal object. When you remove the appManagementPolicy, the application or service principal adopts the tenant-wide tenantAppManagementPolicy setting. + * Delete ref of navigation property appManagementPolicies for applications * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -63,7 +61,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove an appManagementPolicy policy object from an application or service principal object. When you remove the appManagementPolicy, the application or service principal adopts the tenant-wide tenantAppManagementPolicy setting. + * Delete ref of navigation property appManagementPolicies for applications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/applications/item/appmanagementpolicies/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/applications/item/appmanagementpolicies/ref/RefRequestBuilder.java index ff44dfd5e93..4dcde5879a9 100644 --- a/src/main/java/com/microsoft/graph/generated/applications/item/appmanagementpolicies/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/applications/item/appmanagementpolicies/ref/RefRequestBuilder.java @@ -38,18 +38,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/applications/{application%2Did}/appManagementPolicies/$ref?@id={%40id}{&%24count,%24filter,%24orderby,%24search,%24skip,%24top}", rawUrl); } /** - * Remove an appManagementPolicy policy object from an application or service principal object. When you remove the appManagementPolicy, the application or service principal adopts the tenant-wide tenantAppManagementPolicy setting. + * Delete ref of navigation property appManagementPolicies for applications * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove an appManagementPolicy policy object from an application or service principal object. When you remove the appManagementPolicy, the application or service principal adopts the tenant-wide tenantAppManagementPolicy setting. + * Delete ref of navigation property appManagementPolicies for applications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -80,20 +78,18 @@ public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util return this.requestAdapter.send(requestInfo, errorMapping, StringCollectionResponse::createFromDiscriminatorValue); } /** - * Assign an appManagementPolicy policy object to an application or service principal object. The application or service principal adopts this policy over the tenant-wide tenantAppManagementPolicy setting. Only one policy object can be assigned to an application or service principal. + * Create new navigation property ref to appManagementPolicies for applications * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body) { post(body, null); } /** - * Assign an appManagementPolicy policy object to an application or service principal object. The application or service principal adopts this policy over the tenant-wide tenantAppManagementPolicy setting. Only one policy object can be assigned to an application or service principal. + * Create new navigation property ref to appManagementPolicies for applications * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { Objects.requireNonNull(body); @@ -103,7 +99,7 @@ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakart this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove an appManagementPolicy policy object from an application or service principal object. When you remove the appManagementPolicy, the application or service principal adopts the tenant-wide tenantAppManagementPolicy setting. + * Delete ref of navigation property appManagementPolicies for applications * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -111,7 +107,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove an appManagementPolicy policy object from an application or service principal object. When you remove the appManagementPolicy, the application or service principal adopts the tenant-wide tenantAppManagementPolicy setting. + * Delete ref of navigation property appManagementPolicies for applications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -143,7 +139,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Assign an appManagementPolicy policy object to an application or service principal object. The application or service principal adopts this policy over the tenant-wide tenantAppManagementPolicy setting. Only one policy object can be assigned to an application or service principal. + * Create new navigation property ref to appManagementPolicies for applications * @param body The request body * @return a {@link RequestInformation} */ @@ -152,7 +148,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Assign an appManagementPolicy policy object to an application or service principal object. The application or service principal adopts this policy over the tenant-wide tenantAppManagementPolicy setting. Only one policy object can be assigned to an application or service principal. + * Create new navigation property ref to appManagementPolicies for applications * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -177,7 +173,7 @@ public RefRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl return new RefRequestBuilder(rawUrl, requestAdapter); } /** - * Remove an appManagementPolicy policy object from an application or service principal object. When you remove the appManagementPolicy, the application or service principal adopts the tenant-wide tenantAppManagementPolicy setting. + * Delete ref of navigation property appManagementPolicies for applications */ @jakarta.annotation.Generated("com.microsoft.kiota") public class DeleteQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/applications/item/extensionproperties/ExtensionPropertiesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/applications/item/extensionproperties/ExtensionPropertiesRequestBuilder.java index b33983070c2..77d4cc397f8 100644 --- a/src/main/java/com/microsoft/graph/generated/applications/item/extensionproperties/ExtensionPropertiesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/applications/item/extensionproperties/ExtensionPropertiesRequestBuilder.java @@ -60,21 +60,19 @@ public ExtensionPropertiesRequestBuilder(@jakarta.annotation.Nonnull final Strin super(requestAdapter, "{+baseurl}/applications/{application%2Did}/extensionProperties{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of directory extension definitions, represented by extensionProperty objects on an application. + * Read-only. Nullable. Supports $expand and $filter (/$count eq 0, /$count ne 0). * @return a {@link ExtensionPropertyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ExtensionPropertyCollectionResponse get() { return get(null); } /** - * Retrieve the list of directory extension definitions, represented by extensionProperty objects on an application. + * Read-only. Nullable. Supports $expand and $filter (/$count eq 0, /$count ne 0). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExtensionPropertyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ExtensionPropertyCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public ExtensionPropertyCollectionResponse get(@jakarta.annotation.Nullable fina return this.requestAdapter.send(requestInfo, errorMapping, ExtensionPropertyCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new directory extension definition, represented by an extensionProperty object. + * Create new navigation property to extensionProperties for applications * @param body The request body * @return a {@link ExtensionProperty} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ExtensionProperty post(@jakarta.annotation.Nonnull final ExtensionProperty body) { return post(body, null); } /** - * Create a new directory extension definition, represented by an extensionProperty object. + * Create new navigation property to extensionProperties for applications * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExtensionProperty} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ExtensionProperty post(@jakarta.annotation.Nonnull final ExtensionProperty body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public ExtensionProperty post(@jakarta.annotation.Nonnull final ExtensionPropert return this.requestAdapter.send(requestInfo, errorMapping, ExtensionProperty::createFromDiscriminatorValue); } /** - * Retrieve the list of directory extension definitions, represented by extensionProperty objects on an application. + * Read-only. Nullable. Supports $expand and $filter (/$count eq 0, /$count ne 0). * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of directory extension definitions, represented by extensionProperty objects on an application. + * Read-only. Nullable. Supports $expand and $filter (/$count eq 0, /$count ne 0). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new directory extension definition, represented by an extensionProperty object. + * Create new navigation property to extensionProperties for applications * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new directory extension definition, represented by an extensionProperty object. + * Create new navigation property to extensionProperties for applications * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ExtensionPropertiesRequestBuilder withUrl(@jakarta.annotation.Nonnull fin return new ExtensionPropertiesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of directory extension definitions, represented by extensionProperty objects on an application. + * Read-only. Nullable. Supports $expand and $filter (/$count eq 0, /$count ne 0). */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/applications/item/extensionproperties/item/ExtensionPropertyItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/applications/item/extensionproperties/item/ExtensionPropertyItemRequestBuilder.java index e072a19a441..27c53274eaf 100644 --- a/src/main/java/com/microsoft/graph/generated/applications/item/extensionproperties/item/ExtensionPropertyItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/applications/item/extensionproperties/item/ExtensionPropertyItemRequestBuilder.java @@ -37,18 +37,16 @@ public ExtensionPropertyItemRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/applications/{application%2Did}/extensionProperties/{extensionProperty%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a directory extension definition represented by an extensionProperty object. You can delete only directory extensions that aren't synced from on-premises active directory (AD). + * Delete navigation property extensionProperties for applications * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a directory extension definition represented by an extensionProperty object. You can delete only directory extensions that aren't synced from on-premises active directory (AD). + * Delete navigation property extensionProperties for applications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read a directory extension definition represented by an extensionProperty object. + * Read-only. Nullable. Supports $expand and $filter (/$count eq 0, /$count ne 0). * @return a {@link ExtensionProperty} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ExtensionProperty get() { return get(null); } /** - * Read a directory extension definition represented by an extensionProperty object. + * Read-only. Nullable. Supports $expand and $filter (/$count eq 0, /$count ne 0). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExtensionProperty} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ExtensionProperty get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -106,7 +102,7 @@ public ExtensionProperty patch(@jakarta.annotation.Nonnull final ExtensionProper return this.requestAdapter.send(requestInfo, errorMapping, ExtensionProperty::createFromDiscriminatorValue); } /** - * Delete a directory extension definition represented by an extensionProperty object. You can delete only directory extensions that aren't synced from on-premises active directory (AD). + * Delete navigation property extensionProperties for applications * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -114,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a directory extension definition represented by an extensionProperty object. You can delete only directory extensions that aren't synced from on-premises active directory (AD). + * Delete navigation property extensionProperties for applications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read a directory extension definition represented by an extensionProperty object. + * Read-only. Nullable. Supports $expand and $filter (/$count eq 0, /$count ne 0). * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read a directory extension definition represented by an extensionProperty object. + * Read-only. Nullable. Supports $expand and $filter (/$count eq 0, /$count ne 0). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public ExtensionPropertyItemRequestBuilder withUrl(@jakarta.annotation.Nonnull f public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read a directory extension definition represented by an extensionProperty object. + * Read-only. Nullable. Supports $expand and $filter (/$count eq 0, /$count ne 0). */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/applications/item/federatedidentitycredentials/FederatedIdentityCredentialsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/applications/item/federatedidentitycredentials/FederatedIdentityCredentialsRequestBuilder.java index 498b4c361b6..5365f3780e0 100644 --- a/src/main/java/com/microsoft/graph/generated/applications/item/federatedidentitycredentials/FederatedIdentityCredentialsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/applications/item/federatedidentitycredentials/FederatedIdentityCredentialsRequestBuilder.java @@ -60,21 +60,19 @@ public FederatedIdentityCredentialsRequestBuilder(@jakarta.annotation.Nonnull fi super(requestAdapter, "{+baseurl}/applications/{application%2Did}/federatedIdentityCredentials{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the federatedIdentityCredential objects and their properties. + * Federated identities for applications. Supports $expand and $filter (startsWith, /$count eq 0, /$count ne 0). * @return a {@link FederatedIdentityCredentialCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public FederatedIdentityCredentialCollectionResponse get() { return get(null); } /** - * Get a list of the federatedIdentityCredential objects and their properties. + * Federated identities for applications. Supports $expand and $filter (startsWith, /$count eq 0, /$count ne 0). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FederatedIdentityCredentialCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public FederatedIdentityCredentialCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public FederatedIdentityCredentialCollectionResponse get(@jakarta.annotation.Nul return this.requestAdapter.send(requestInfo, errorMapping, FederatedIdentityCredentialCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new federatedIdentityCredential object for an application. By configuring a trust relationship between your Microsoft Entra application registration and the identity provider for your compute platform, you can use tokens issued by that platform to authenticate with Microsoft identity platform and call APIs in the Microsoft ecosystem. Maximum of 20 objects can be added to an application. + * Create new navigation property to federatedIdentityCredentials for applications * @param body The request body * @return a {@link FederatedIdentityCredential} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public FederatedIdentityCredential post(@jakarta.annotation.Nonnull final FederatedIdentityCredential body) { return post(body, null); } /** - * Create a new federatedIdentityCredential object for an application. By configuring a trust relationship between your Microsoft Entra application registration and the identity provider for your compute platform, you can use tokens issued by that platform to authenticate with Microsoft identity platform and call APIs in the Microsoft ecosystem. Maximum of 20 objects can be added to an application. + * Create new navigation property to federatedIdentityCredentials for applications * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FederatedIdentityCredential} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public FederatedIdentityCredential post(@jakarta.annotation.Nonnull final FederatedIdentityCredential body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public FederatedIdentityCredential post(@jakarta.annotation.Nonnull final Federa return this.requestAdapter.send(requestInfo, errorMapping, FederatedIdentityCredential::createFromDiscriminatorValue); } /** - * Get a list of the federatedIdentityCredential objects and their properties. + * Federated identities for applications. Supports $expand and $filter (startsWith, /$count eq 0, /$count ne 0). * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the federatedIdentityCredential objects and their properties. + * Federated identities for applications. Supports $expand and $filter (startsWith, /$count eq 0, /$count ne 0). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new federatedIdentityCredential object for an application. By configuring a trust relationship between your Microsoft Entra application registration and the identity provider for your compute platform, you can use tokens issued by that platform to authenticate with Microsoft identity platform and call APIs in the Microsoft ecosystem. Maximum of 20 objects can be added to an application. + * Create new navigation property to federatedIdentityCredentials for applications * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new federatedIdentityCredential object for an application. By configuring a trust relationship between your Microsoft Entra application registration and the identity provider for your compute platform, you can use tokens issued by that platform to authenticate with Microsoft identity platform and call APIs in the Microsoft ecosystem. Maximum of 20 objects can be added to an application. + * Create new navigation property to federatedIdentityCredentials for applications * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public FederatedIdentityCredentialsRequestBuilder withUrl(@jakarta.annotation.No return new FederatedIdentityCredentialsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the federatedIdentityCredential objects and their properties. + * Federated identities for applications. Supports $expand and $filter (startsWith, /$count eq 0, /$count ne 0). */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/applications/item/federatedidentitycredentials/item/FederatedIdentityCredentialItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/applications/item/federatedidentitycredentials/item/FederatedIdentityCredentialItemRequestBuilder.java index a646dceabc6..05862c4d862 100644 --- a/src/main/java/com/microsoft/graph/generated/applications/item/federatedidentitycredentials/item/FederatedIdentityCredentialItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/applications/item/federatedidentitycredentials/item/FederatedIdentityCredentialItemRequestBuilder.java @@ -37,18 +37,16 @@ public FederatedIdentityCredentialItemRequestBuilder(@jakarta.annotation.Nonnull super(requestAdapter, "{+baseurl}/applications/{application%2Did}/federatedIdentityCredentials/{federatedIdentityCredential%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a federatedIdentityCredential object from an application. + * Delete navigation property federatedIdentityCredentials for applications * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a federatedIdentityCredential object from an application. + * Delete navigation property federatedIdentityCredentials for applications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a federatedIdentityCredential object. + * Federated identities for applications. Supports $expand and $filter (startsWith, /$count eq 0, /$count ne 0). * @return a {@link FederatedIdentityCredential} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public FederatedIdentityCredential get() { return get(null); } /** - * Read the properties and relationships of a federatedIdentityCredential object. + * Federated identities for applications. Supports $expand and $filter (startsWith, /$count eq 0, /$count ne 0). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FederatedIdentityCredential} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public FederatedIdentityCredential get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public FederatedIdentityCredential get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, FederatedIdentityCredential::createFromDiscriminatorValue); } /** - * Update the properties of a federatedIdentityCredential object. + * Update the navigation property federatedIdentityCredentials in applications * @param body The request body * @return a {@link FederatedIdentityCredential} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public FederatedIdentityCredential patch(@jakarta.annotation.Nonnull final FederatedIdentityCredential body) { return patch(body, null); } /** - * Update the properties of a federatedIdentityCredential object. + * Update the navigation property federatedIdentityCredentials in applications * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FederatedIdentityCredential} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public FederatedIdentityCredential patch(@jakarta.annotation.Nonnull final FederatedIdentityCredential body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public FederatedIdentityCredential patch(@jakarta.annotation.Nonnull final Feder return this.requestAdapter.send(requestInfo, errorMapping, FederatedIdentityCredential::createFromDiscriminatorValue); } /** - * Delete a federatedIdentityCredential object from an application. + * Delete navigation property federatedIdentityCredentials for applications * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a federatedIdentityCredential object from an application. + * Delete navigation property federatedIdentityCredentials for applications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a federatedIdentityCredential object. + * Federated identities for applications. Supports $expand and $filter (startsWith, /$count eq 0, /$count ne 0). * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a federatedIdentityCredential object. + * Federated identities for applications. Supports $expand and $filter (startsWith, /$count eq 0, /$count ne 0). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a federatedIdentityCredential object. + * Update the navigation property federatedIdentityCredentials in applications * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a federatedIdentityCredential object. + * Update the navigation property federatedIdentityCredentials in applications * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public FederatedIdentityCredentialItemRequestBuilder withUrl(@jakarta.annotation public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a federatedIdentityCredential object. + * Federated identities for applications. Supports $expand and $filter (startsWith, /$count eq 0, /$count ne 0). */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/applications/item/federatedidentitycredentialswithname/FederatedIdentityCredentialsWithNameRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/applications/item/federatedidentitycredentialswithname/FederatedIdentityCredentialsWithNameRequestBuilder.java index b8b7f2a2c54..afd23c748c6 100644 --- a/src/main/java/com/microsoft/graph/generated/applications/item/federatedidentitycredentialswithname/FederatedIdentityCredentialsWithNameRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/applications/item/federatedidentitycredentialswithname/FederatedIdentityCredentialsWithNameRequestBuilder.java @@ -39,18 +39,16 @@ public FederatedIdentityCredentialsWithNameRequestBuilder(@jakarta.annotation.No super(requestAdapter, "{+baseurl}/applications/{application%2Did}/federatedIdentityCredentials(name='{name}'){?%24expand,%24select}", rawUrl); } /** - * Delete a federatedIdentityCredential object from an application. + * Delete navigation property federatedIdentityCredentials for applications * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a federatedIdentityCredential object from an application. + * Delete navigation property federatedIdentityCredentials for applications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -59,21 +57,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a federatedIdentityCredential object. + * Federated identities for applications. Supports $expand and $filter (startsWith, /$count eq 0, /$count ne 0). * @return a {@link FederatedIdentityCredential} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public FederatedIdentityCredential get() { return get(null); } /** - * Read the properties and relationships of a federatedIdentityCredential object. + * Federated identities for applications. Supports $expand and $filter (startsWith, /$count eq 0, /$count ne 0). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FederatedIdentityCredential} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public FederatedIdentityCredential get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,23 +79,21 @@ public FederatedIdentityCredential get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, FederatedIdentityCredential::createFromDiscriminatorValue); } /** - * Update the properties of a federatedIdentityCredential object. + * Update the navigation property federatedIdentityCredentials in applications * @param body The request body * @return a {@link FederatedIdentityCredential} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public FederatedIdentityCredential patch(@jakarta.annotation.Nonnull final FederatedIdentityCredential body) { return patch(body, null); } /** - * Update the properties of a federatedIdentityCredential object. + * Update the navigation property federatedIdentityCredentials in applications * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FederatedIdentityCredential} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public FederatedIdentityCredential patch(@jakarta.annotation.Nonnull final FederatedIdentityCredential body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -110,7 +104,7 @@ public FederatedIdentityCredential patch(@jakarta.annotation.Nonnull final Feder return this.requestAdapter.send(requestInfo, errorMapping, FederatedIdentityCredential::createFromDiscriminatorValue); } /** - * Delete a federatedIdentityCredential object from an application. + * Delete navigation property federatedIdentityCredentials for applications * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -118,7 +112,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a federatedIdentityCredential object from an application. + * Delete navigation property federatedIdentityCredentials for applications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -130,7 +124,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a federatedIdentityCredential object. + * Federated identities for applications. Supports $expand and $filter (startsWith, /$count eq 0, /$count ne 0). * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -138,7 +132,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a federatedIdentityCredential object. + * Federated identities for applications. Supports $expand and $filter (startsWith, /$count eq 0, /$count ne 0). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -150,7 +144,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a federatedIdentityCredential object. + * Update the navigation property federatedIdentityCredentials in applications * @param body The request body * @return a {@link RequestInformation} */ @@ -159,7 +153,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a federatedIdentityCredential object. + * Update the navigation property federatedIdentityCredentials in applications * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -190,7 +184,7 @@ public FederatedIdentityCredentialsWithNameRequestBuilder withUrl(@jakarta.annot public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a federatedIdentityCredential object. + * Federated identities for applications. Supports $expand and $filter (startsWith, /$count eq 0, /$count ne 0). */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/applications/item/owners/OwnersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/applications/item/owners/OwnersRequestBuilder.java index e27f2f07cd5..430cfd2da33 100644 --- a/src/main/java/com/microsoft/graph/generated/applications/item/owners/OwnersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/applications/item/owners/OwnersRequestBuilder.java @@ -107,7 +107,6 @@ public OwnersRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja * Directory objects that are owners of the application. Read-only. Nullable. Supports $expand, $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1), and $select nested in $expand. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get() { @@ -118,7 +117,6 @@ public DirectoryObjectCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/applications/item/owners/item/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/applications/item/owners/item/ref/RefRequestBuilder.java index 11d97df5363..a37cfb9572d 100644 --- a/src/main/java/com/microsoft/graph/generated/applications/item/owners/item/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/applications/item/owners/item/ref/RefRequestBuilder.java @@ -35,18 +35,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/applications/{application%2Did}/owners/{directoryObject%2Did}/$ref", rawUrl); } /** - * Remove an owner from an application. As a recommended best practice, apps should have at least two owners. + * Delete ref of navigation property owners for applications * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove an owner from an application. As a recommended best practice, apps should have at least two owners. + * Delete ref of navigation property owners for applications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -55,7 +53,7 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove an owner from an application. As a recommended best practice, apps should have at least two owners. + * Delete ref of navigation property owners for applications * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -63,7 +61,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove an owner from an application. As a recommended best practice, apps should have at least two owners. + * Delete ref of navigation property owners for applications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/applications/item/owners/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/applications/item/owners/ref/RefRequestBuilder.java index 9adee71927f..4fb061be29e 100644 --- a/src/main/java/com/microsoft/graph/generated/applications/item/owners/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/applications/item/owners/ref/RefRequestBuilder.java @@ -38,18 +38,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/applications/{application%2Did}/owners/$ref?@id={%40id}{&%24count,%24filter,%24orderby,%24search,%24skip,%24top}", rawUrl); } /** - * Remove an owner from an application. As a recommended best practice, apps should have at least two owners. + * Delete ref of navigation property owners for applications * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove an owner from an application. As a recommended best practice, apps should have at least two owners. + * Delete ref of navigation property owners for applications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -61,7 +59,6 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume * Directory objects that are owners of the application. Read-only. Nullable. Supports $expand, $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1), and $select nested in $expand. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get() { @@ -72,7 +69,6 @@ public StringCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -82,20 +78,18 @@ public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util return this.requestAdapter.send(requestInfo, errorMapping, StringCollectionResponse::createFromDiscriminatorValue); } /** - * Add an owner to an application by posting to the owners collection. + * Create new navigation property ref to owners for applications * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body) { post(body, null); } /** - * Add an owner to an application by posting to the owners collection. + * Create new navigation property ref to owners for applications * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { Objects.requireNonNull(body); @@ -105,7 +99,7 @@ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakart this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove an owner from an application. As a recommended best practice, apps should have at least two owners. + * Delete ref of navigation property owners for applications * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -113,7 +107,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove an owner from an application. As a recommended best practice, apps should have at least two owners. + * Delete ref of navigation property owners for applications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add an owner to an application by posting to the owners collection. + * Create new navigation property ref to owners for applications * @param body The request body * @return a {@link RequestInformation} */ @@ -154,7 +148,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add an owner to an application by posting to the owners collection. + * Create new navigation property ref to owners for applications * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -179,7 +173,7 @@ public RefRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl return new RefRequestBuilder(rawUrl, requestAdapter); } /** - * Remove an owner from an application. As a recommended best practice, apps should have at least two owners. + * Delete ref of navigation property owners for applications */ @jakarta.annotation.Generated("com.microsoft.kiota") public class DeleteQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/applications/item/synchronization/jobs/JobsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/applications/item/synchronization/jobs/JobsRequestBuilder.java index 9b84ffcdf6e..b515e08d99f 100644 --- a/src/main/java/com/microsoft/graph/generated/applications/item/synchronization/jobs/JobsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/applications/item/synchronization/jobs/JobsRequestBuilder.java @@ -69,21 +69,19 @@ public JobsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka super(requestAdapter, "{+baseurl}/applications/{application%2Did}/synchronization/jobs{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List existing jobs for a given application instance (service principal). + * Performs synchronization by periodically running in the background, polling for changes in one directory, and pushing them to another directory. * @return a {@link SynchronizationJobCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SynchronizationJobCollectionResponse get() { return get(null); } /** - * List existing jobs for a given application instance (service principal). + * Performs synchronization by periodically running in the background, polling for changes in one directory, and pushing them to another directory. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SynchronizationJobCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SynchronizationJobCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public SynchronizationJobCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, SynchronizationJobCollectionResponse::createFromDiscriminatorValue); } /** - * Create new synchronization job with a default synchronization schema. The job is created in a disabled state. Call Start job to start synchronization. + * Create new navigation property to jobs for applications * @param body The request body * @return a {@link SynchronizationJob} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SynchronizationJob post(@jakarta.annotation.Nonnull final SynchronizationJob body) { return post(body, null); } /** - * Create new synchronization job with a default synchronization schema. The job is created in a disabled state. Call Start job to start synchronization. + * Create new navigation property to jobs for applications * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SynchronizationJob} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SynchronizationJob post(@jakarta.annotation.Nonnull final SynchronizationJob body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public SynchronizationJob post(@jakarta.annotation.Nonnull final Synchronization return this.requestAdapter.send(requestInfo, errorMapping, SynchronizationJob::createFromDiscriminatorValue); } /** - * List existing jobs for a given application instance (service principal). + * Performs synchronization by periodically running in the background, polling for changes in one directory, and pushing them to another directory. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List existing jobs for a given application instance (service principal). + * Performs synchronization by periodically running in the background, polling for changes in one directory, and pushing them to another directory. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create new synchronization job with a default synchronization schema. The job is created in a disabled state. Call Start job to start synchronization. + * Create new navigation property to jobs for applications * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create new synchronization job with a default synchronization schema. The job is created in a disabled state. Call Start job to start synchronization. + * Create new navigation property to jobs for applications * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public JobsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr return new JobsRequestBuilder(rawUrl, requestAdapter); } /** - * List existing jobs for a given application instance (service principal). + * Performs synchronization by periodically running in the background, polling for changes in one directory, and pushing them to another directory. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/applications/item/synchronization/jobs/item/SynchronizationJobItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/applications/item/synchronization/jobs/item/SynchronizationJobItemRequestBuilder.java index af9b5248651..59a5bba5c01 100644 --- a/src/main/java/com/microsoft/graph/generated/applications/item/synchronization/jobs/item/SynchronizationJobItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/applications/item/synchronization/jobs/item/SynchronizationJobItemRequestBuilder.java @@ -100,18 +100,16 @@ public SynchronizationJobItemRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/applications/{application%2Did}/synchronization/jobs/{synchronizationJob%2Did}{?%24expand,%24select}", rawUrl); } /** - * Stop the synchronization job, and permanently delete all the state associated with it. Synchronized accounts are left as-is. + * Delete navigation property jobs for applications * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Stop the synchronization job, and permanently delete all the state associated with it. Synchronized accounts are left as-is. + * Delete navigation property jobs for applications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -120,21 +118,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the existing synchronization job and its properties. + * Performs synchronization by periodically running in the background, polling for changes in one directory, and pushing them to another directory. * @return a {@link SynchronizationJob} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SynchronizationJob get() { return get(null); } /** - * Retrieve the existing synchronization job and its properties. + * Performs synchronization by periodically running in the background, polling for changes in one directory, and pushing them to another directory. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SynchronizationJob} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SynchronizationJob get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -169,7 +165,7 @@ public SynchronizationJob patch(@jakarta.annotation.Nonnull final Synchronizatio return this.requestAdapter.send(requestInfo, errorMapping, SynchronizationJob::createFromDiscriminatorValue); } /** - * Stop the synchronization job, and permanently delete all the state associated with it. Synchronized accounts are left as-is. + * Delete navigation property jobs for applications * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -177,7 +173,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Stop the synchronization job, and permanently delete all the state associated with it. Synchronized accounts are left as-is. + * Delete navigation property jobs for applications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -189,7 +185,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the existing synchronization job and its properties. + * Performs synchronization by periodically running in the background, polling for changes in one directory, and pushing them to another directory. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -197,7 +193,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the existing synchronization job and its properties. + * Performs synchronization by periodically running in the background, polling for changes in one directory, and pushing them to another directory. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -249,7 +245,7 @@ public SynchronizationJobItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the existing synchronization job and its properties. + * Performs synchronization by periodically running in the background, polling for changes in one directory, and pushing them to another directory. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/applications/item/synchronization/jobs/item/schema/SchemaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/applications/item/synchronization/jobs/item/schema/SchemaRequestBuilder.java index b1f4ffe393d..7033e4d384d 100644 --- a/src/main/java/com/microsoft/graph/generated/applications/item/synchronization/jobs/item/schema/SchemaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/applications/item/synchronization/jobs/item/schema/SchemaRequestBuilder.java @@ -91,21 +91,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the schema for a given synchronization job or template. + * The synchronization schema configured for the job. * @return a {@link SynchronizationSchema} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SynchronizationSchema get() { return get(null); } /** - * Retrieve the schema for a given synchronization job or template. + * The synchronization schema configured for the job. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SynchronizationSchema} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SynchronizationSchema get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -115,23 +113,21 @@ public SynchronizationSchema get(@jakarta.annotation.Nullable final java.util.fu return this.requestAdapter.send(requestInfo, errorMapping, SynchronizationSchema::createFromDiscriminatorValue); } /** - * Update the synchronization schema for a given job or template. This method fully replaces the current schema with the one provided in the request. To update the schema of a template, make the call on the application object. You must be the owner of the application. + * Update the navigation property schema in applications * @param body The request body * @return a {@link SynchronizationSchema} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SynchronizationSchema patch(@jakarta.annotation.Nonnull final SynchronizationSchema body) { return patch(body, null); } /** - * Update the synchronization schema for a given job or template. This method fully replaces the current schema with the one provided in the request. To update the schema of a template, make the call on the application object. You must be the owner of the application. + * Update the navigation property schema in applications * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SynchronizationSchema} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SynchronizationSchema patch(@jakarta.annotation.Nonnull final SynchronizationSchema body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -162,7 +158,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the schema for a given synchronization job or template. + * The synchronization schema configured for the job. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -170,7 +166,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the schema for a given synchronization job or template. + * The synchronization schema configured for the job. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -182,7 +178,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the synchronization schema for a given job or template. This method fully replaces the current schema with the one provided in the request. To update the schema of a template, make the call on the application object. You must be the owner of the application. + * Update the navigation property schema in applications * @param body The request body * @return a {@link RequestInformation} */ @@ -191,7 +187,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the synchronization schema for a given job or template. This method fully replaces the current schema with the one provided in the request. To update the schema of a template, make the call on the application object. You must be the owner of the application. + * Update the navigation property schema in applications * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -222,7 +218,7 @@ public SchemaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the schema for a given synchronization job or template. + * The synchronization schema configured for the job. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/applications/item/synchronization/jobs/item/schema/filteroperators/FilterOperatorsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/applications/item/synchronization/jobs/item/schema/filteroperators/FilterOperatorsRequestBuilder.java index 62530f91bbe..e9786593886 100644 --- a/src/main/java/com/microsoft/graph/generated/applications/item/synchronization/jobs/item/schema/filteroperators/FilterOperatorsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/applications/item/synchronization/jobs/item/schema/filteroperators/FilterOperatorsRequestBuilder.java @@ -36,19 +36,21 @@ public FilterOperatorsRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/applications/{application%2Did}/synchronization/jobs/{synchronizationJob%2Did}/schema/filterOperators(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function filterOperators + * List all operators supported in the scoping filters. * @return a {@link FilterOperatorsGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterOperatorsGetResponse get() { return get(null); } /** - * Invoke function filterOperators + * List all operators supported in the scoping filters. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FilterOperatorsGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterOperatorsGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public FilterOperatorsGetResponse get(@jakarta.annotation.Nullable final java.ut return this.requestAdapter.send(requestInfo, errorMapping, FilterOperatorsGetResponse::createFromDiscriminatorValue); } /** - * Invoke function filterOperators + * List all operators supported in the scoping filters. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function filterOperators + * List all operators supported in the scoping filters. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public FilterOperatorsRequestBuilder withUrl(@jakarta.annotation.Nonnull final S return new FilterOperatorsRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function filterOperators + * List all operators supported in the scoping filters. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/applications/item/synchronization/jobs/item/schema/functions/FunctionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/applications/item/synchronization/jobs/item/schema/functions/FunctionsRequestBuilder.java index 8766d342d17..36cf1fe2db7 100644 --- a/src/main/java/com/microsoft/graph/generated/applications/item/synchronization/jobs/item/schema/functions/FunctionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/applications/item/synchronization/jobs/item/schema/functions/FunctionsRequestBuilder.java @@ -36,19 +36,21 @@ public FunctionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/applications/{application%2Did}/synchronization/jobs/{synchronizationJob%2Did}/schema/functions(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function functions + * List all the functions currently supported in the attributeMappingSource. * @return a {@link FunctionsGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FunctionsGetResponse get() { return get(null); } /** - * Invoke function functions + * List all the functions currently supported in the attributeMappingSource. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FunctionsGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FunctionsGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public FunctionsGetResponse get(@jakarta.annotation.Nullable final java.util.fun return this.requestAdapter.send(requestInfo, errorMapping, FunctionsGetResponse::createFromDiscriminatorValue); } /** - * Invoke function functions + * List all the functions currently supported in the attributeMappingSource. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function functions + * List all the functions currently supported in the attributeMappingSource. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public FunctionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new FunctionsRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function functions + * List all the functions currently supported in the attributeMappingSource. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/applications/item/synchronization/templates/TemplatesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/applications/item/synchronization/templates/TemplatesRequestBuilder.java index fe99c91d763..b8736c15579 100644 --- a/src/main/java/com/microsoft/graph/generated/applications/item/synchronization/templates/TemplatesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/applications/item/synchronization/templates/TemplatesRequestBuilder.java @@ -60,21 +60,19 @@ public TemplatesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/applications/{application%2Did}/synchronization/templates{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List the synchronization templates associated with a given application or service principal. + * Preconfigured synchronization settings for a particular application. * @return a {@link SynchronizationTemplateCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SynchronizationTemplateCollectionResponse get() { return get(null); } /** - * List the synchronization templates associated with a given application or service principal. + * Preconfigured synchronization settings for a particular application. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SynchronizationTemplateCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SynchronizationTemplateCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public SynchronizationTemplate post(@jakarta.annotation.Nonnull final Synchroniz return this.requestAdapter.send(requestInfo, errorMapping, SynchronizationTemplate::createFromDiscriminatorValue); } /** - * List the synchronization templates associated with a given application or service principal. + * Preconfigured synchronization settings for a particular application. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List the synchronization templates associated with a given application or service principal. + * Preconfigured synchronization settings for a particular application. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public TemplatesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new TemplatesRequestBuilder(rawUrl, requestAdapter); } /** - * List the synchronization templates associated with a given application or service principal. + * Preconfigured synchronization settings for a particular application. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/applications/item/synchronization/templates/item/SynchronizationTemplateItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/applications/item/synchronization/templates/item/SynchronizationTemplateItemRequestBuilder.java index 5163b9ee3f9..633734df31b 100644 --- a/src/main/java/com/microsoft/graph/generated/applications/item/synchronization/templates/item/SynchronizationTemplateItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/applications/item/synchronization/templates/item/SynchronizationTemplateItemRequestBuilder.java @@ -86,23 +86,21 @@ public SynchronizationTemplate get(@jakarta.annotation.Nullable final java.util. return this.requestAdapter.send(requestInfo, errorMapping, SynchronizationTemplate::createFromDiscriminatorValue); } /** - * Update (override) the synchronization template associated with a given application. + * Update the navigation property templates in applications * @param body The request body * @return a {@link SynchronizationTemplate} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SynchronizationTemplate patch(@jakarta.annotation.Nonnull final SynchronizationTemplate body) { return patch(body, null); } /** - * Update (override) the synchronization template associated with a given application. + * Update the navigation property templates in applications * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SynchronizationTemplate} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SynchronizationTemplate patch(@jakarta.annotation.Nonnull final SynchronizationTemplate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -153,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update (override) the synchronization template associated with a given application. + * Update the navigation property templates in applications * @param body The request body * @return a {@link RequestInformation} */ @@ -162,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update (override) the synchronization template associated with a given application. + * Update the navigation property templates in applications * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/applications/item/synchronization/templates/item/schema/filteroperators/FilterOperatorsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/applications/item/synchronization/templates/item/schema/filteroperators/FilterOperatorsRequestBuilder.java index 78589d35c7a..630efee9a10 100644 --- a/src/main/java/com/microsoft/graph/generated/applications/item/synchronization/templates/item/schema/filteroperators/FilterOperatorsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/applications/item/synchronization/templates/item/schema/filteroperators/FilterOperatorsRequestBuilder.java @@ -36,19 +36,21 @@ public FilterOperatorsRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/applications/{application%2Did}/synchronization/templates/{synchronizationTemplate%2Did}/schema/filterOperators(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function filterOperators + * List all operators supported in the scoping filters. * @return a {@link FilterOperatorsGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterOperatorsGetResponse get() { return get(null); } /** - * Invoke function filterOperators + * List all operators supported in the scoping filters. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FilterOperatorsGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterOperatorsGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public FilterOperatorsGetResponse get(@jakarta.annotation.Nullable final java.ut return this.requestAdapter.send(requestInfo, errorMapping, FilterOperatorsGetResponse::createFromDiscriminatorValue); } /** - * Invoke function filterOperators + * List all operators supported in the scoping filters. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function filterOperators + * List all operators supported in the scoping filters. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public FilterOperatorsRequestBuilder withUrl(@jakarta.annotation.Nonnull final S return new FilterOperatorsRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function filterOperators + * List all operators supported in the scoping filters. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/applications/item/synchronization/templates/item/schema/functions/FunctionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/applications/item/synchronization/templates/item/schema/functions/FunctionsRequestBuilder.java index 9c3655289b3..16525b21b62 100644 --- a/src/main/java/com/microsoft/graph/generated/applications/item/synchronization/templates/item/schema/functions/FunctionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/applications/item/synchronization/templates/item/schema/functions/FunctionsRequestBuilder.java @@ -36,19 +36,21 @@ public FunctionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/applications/{application%2Did}/synchronization/templates/{synchronizationTemplate%2Did}/schema/functions(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function functions + * List all the functions currently supported in the attributeMappingSource. * @return a {@link FunctionsGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FunctionsGetResponse get() { return get(null); } /** - * Invoke function functions + * List all the functions currently supported in the attributeMappingSource. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FunctionsGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FunctionsGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public FunctionsGetResponse get(@jakarta.annotation.Nullable final java.util.fun return this.requestAdapter.send(requestInfo, errorMapping, FunctionsGetResponse::createFromDiscriminatorValue); } /** - * Invoke function functions + * List all the functions currently supported in the attributeMappingSource. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function functions + * List all the functions currently supported in the attributeMappingSource. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public FunctionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new FunctionsRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function functions + * List all the functions currently supported in the attributeMappingSource. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/applications/item/tokenissuancepolicies/TokenIssuancePoliciesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/applications/item/tokenissuancepolicies/TokenIssuancePoliciesRequestBuilder.java index 1cdd112d574..228da448e30 100644 --- a/src/main/java/com/microsoft/graph/generated/applications/item/tokenissuancepolicies/TokenIssuancePoliciesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/applications/item/tokenissuancepolicies/TokenIssuancePoliciesRequestBuilder.java @@ -68,21 +68,19 @@ public TokenIssuancePoliciesRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/applications/{application%2Did}/tokenIssuancePolicies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List the tokenIssuancePolicy objects that are assigned to an application. + * Get tokenIssuancePolicies from applications * @return a {@link TokenIssuancePolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TokenIssuancePolicyCollectionResponse get() { return get(null); } /** - * List the tokenIssuancePolicy objects that are assigned to an application. + * Get tokenIssuancePolicies from applications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TokenIssuancePolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TokenIssuancePolicyCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -92,7 +90,7 @@ public TokenIssuancePolicyCollectionResponse get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, TokenIssuancePolicyCollectionResponse::createFromDiscriminatorValue); } /** - * List the tokenIssuancePolicy objects that are assigned to an application. + * Get tokenIssuancePolicies from applications * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -100,7 +98,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List the tokenIssuancePolicy objects that are assigned to an application. + * Get tokenIssuancePolicies from applications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -122,7 +120,7 @@ public TokenIssuancePoliciesRequestBuilder withUrl(@jakarta.annotation.Nonnull f return new TokenIssuancePoliciesRequestBuilder(rawUrl, requestAdapter); } /** - * List the tokenIssuancePolicy objects that are assigned to an application. + * Get tokenIssuancePolicies from applications */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/applications/item/tokenissuancepolicies/item/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/applications/item/tokenissuancepolicies/item/ref/RefRequestBuilder.java index 8b63fb7d069..cc75e7da846 100644 --- a/src/main/java/com/microsoft/graph/generated/applications/item/tokenissuancepolicies/item/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/applications/item/tokenissuancepolicies/item/ref/RefRequestBuilder.java @@ -35,18 +35,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/applications/{application%2Did}/tokenIssuancePolicies/{tokenIssuancePolicy%2Did}/$ref", rawUrl); } /** - * Remove a tokenIssuancePolicy from an application. + * Delete ref of navigation property tokenIssuancePolicies for applications * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove a tokenIssuancePolicy from an application. + * Delete ref of navigation property tokenIssuancePolicies for applications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -55,7 +53,7 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove a tokenIssuancePolicy from an application. + * Delete ref of navigation property tokenIssuancePolicies for applications * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -63,7 +61,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove a tokenIssuancePolicy from an application. + * Delete ref of navigation property tokenIssuancePolicies for applications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/applications/item/tokenissuancepolicies/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/applications/item/tokenissuancepolicies/ref/RefRequestBuilder.java index 79eee58a36f..f35c0bd8f52 100644 --- a/src/main/java/com/microsoft/graph/generated/applications/item/tokenissuancepolicies/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/applications/item/tokenissuancepolicies/ref/RefRequestBuilder.java @@ -38,18 +38,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/applications/{application%2Did}/tokenIssuancePolicies/$ref?@id={%40id}{&%24count,%24filter,%24orderby,%24search,%24skip,%24top}", rawUrl); } /** - * Remove a tokenIssuancePolicy from an application. + * Delete ref of navigation property tokenIssuancePolicies for applications * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove a tokenIssuancePolicy from an application. + * Delete ref of navigation property tokenIssuancePolicies for applications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -58,21 +56,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * List the tokenIssuancePolicy objects that are assigned to an application. + * Get ref of tokenIssuancePolicies from applications * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get() { return get(null); } /** - * List the tokenIssuancePolicy objects that are assigned to an application. + * Get ref of tokenIssuancePolicies from applications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -82,20 +78,18 @@ public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util return this.requestAdapter.send(requestInfo, errorMapping, StringCollectionResponse::createFromDiscriminatorValue); } /** - * Assign a tokenIssuancePolicy to an application. + * Create new navigation property ref to tokenIssuancePolicies for applications * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body) { post(body, null); } /** - * Assign a tokenIssuancePolicy to an application. + * Create new navigation property ref to tokenIssuancePolicies for applications * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { Objects.requireNonNull(body); @@ -105,7 +99,7 @@ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakart this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove a tokenIssuancePolicy from an application. + * Delete ref of navigation property tokenIssuancePolicies for applications * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -113,7 +107,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove a tokenIssuancePolicy from an application. + * Delete ref of navigation property tokenIssuancePolicies for applications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * List the tokenIssuancePolicy objects that are assigned to an application. + * Get ref of tokenIssuancePolicies from applications * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -133,7 +127,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List the tokenIssuancePolicy objects that are assigned to an application. + * Get ref of tokenIssuancePolicies from applications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Assign a tokenIssuancePolicy to an application. + * Create new navigation property ref to tokenIssuancePolicies for applications * @param body The request body * @return a {@link RequestInformation} */ @@ -154,7 +148,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Assign a tokenIssuancePolicy to an application. + * Create new navigation property ref to tokenIssuancePolicies for applications * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -179,7 +173,7 @@ public RefRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl return new RefRequestBuilder(rawUrl, requestAdapter); } /** - * Remove a tokenIssuancePolicy from an application. + * Delete ref of navigation property tokenIssuancePolicies for applications */ @jakarta.annotation.Generated("com.microsoft.kiota") public class DeleteQueryParameters implements QueryParameters { @@ -211,7 +205,7 @@ public class DeleteRequestConfiguration extends BaseRequestConfiguration { public DeleteQueryParameters queryParameters = new DeleteQueryParameters(); } /** - * List the tokenIssuancePolicy objects that are assigned to an application. + * Get ref of tokenIssuancePolicies from applications */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/applications/item/tokenlifetimepolicies/TokenLifetimePoliciesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/applications/item/tokenlifetimepolicies/TokenLifetimePoliciesRequestBuilder.java index 6e2e9d10fd7..aa04a186f2f 100644 --- a/src/main/java/com/microsoft/graph/generated/applications/item/tokenlifetimepolicies/TokenLifetimePoliciesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/applications/item/tokenlifetimepolicies/TokenLifetimePoliciesRequestBuilder.java @@ -68,21 +68,19 @@ public TokenLifetimePoliciesRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/applications/{application%2Did}/tokenLifetimePolicies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List the tokenLifetimePolicy objects that are assigned to an application. Only one object is returned in the collection because only one tokenLifetimePolicy can be assigned to an application. + * Get tokenLifetimePolicies from applications * @return a {@link TokenLifetimePolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TokenLifetimePolicyCollectionResponse get() { return get(null); } /** - * List the tokenLifetimePolicy objects that are assigned to an application. Only one object is returned in the collection because only one tokenLifetimePolicy can be assigned to an application. + * Get tokenLifetimePolicies from applications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TokenLifetimePolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TokenLifetimePolicyCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -92,7 +90,7 @@ public TokenLifetimePolicyCollectionResponse get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, TokenLifetimePolicyCollectionResponse::createFromDiscriminatorValue); } /** - * List the tokenLifetimePolicy objects that are assigned to an application. Only one object is returned in the collection because only one tokenLifetimePolicy can be assigned to an application. + * Get tokenLifetimePolicies from applications * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -100,7 +98,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List the tokenLifetimePolicy objects that are assigned to an application. Only one object is returned in the collection because only one tokenLifetimePolicy can be assigned to an application. + * Get tokenLifetimePolicies from applications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -122,7 +120,7 @@ public TokenLifetimePoliciesRequestBuilder withUrl(@jakarta.annotation.Nonnull f return new TokenLifetimePoliciesRequestBuilder(rawUrl, requestAdapter); } /** - * List the tokenLifetimePolicy objects that are assigned to an application. Only one object is returned in the collection because only one tokenLifetimePolicy can be assigned to an application. + * Get tokenLifetimePolicies from applications */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/applications/item/tokenlifetimepolicies/item/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/applications/item/tokenlifetimepolicies/item/ref/RefRequestBuilder.java index 9e18214947f..a7264c6b0c3 100644 --- a/src/main/java/com/microsoft/graph/generated/applications/item/tokenlifetimepolicies/item/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/applications/item/tokenlifetimepolicies/item/ref/RefRequestBuilder.java @@ -35,18 +35,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/applications/{application%2Did}/tokenLifetimePolicies/{tokenLifetimePolicy%2Did}/$ref", rawUrl); } /** - * Remove a tokenLifetimePolicy from an application. + * Delete ref of navigation property tokenLifetimePolicies for applications * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove a tokenLifetimePolicy from an application. + * Delete ref of navigation property tokenLifetimePolicies for applications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -55,7 +53,7 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove a tokenLifetimePolicy from an application. + * Delete ref of navigation property tokenLifetimePolicies for applications * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -63,7 +61,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove a tokenLifetimePolicy from an application. + * Delete ref of navigation property tokenLifetimePolicies for applications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/applications/item/tokenlifetimepolicies/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/applications/item/tokenlifetimepolicies/ref/RefRequestBuilder.java index b796d39c763..4b9d25df25c 100644 --- a/src/main/java/com/microsoft/graph/generated/applications/item/tokenlifetimepolicies/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/applications/item/tokenlifetimepolicies/ref/RefRequestBuilder.java @@ -38,18 +38,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/applications/{application%2Did}/tokenLifetimePolicies/$ref?@id={%40id}{&%24count,%24filter,%24orderby,%24search,%24skip,%24top}", rawUrl); } /** - * Remove a tokenLifetimePolicy from an application. + * Delete ref of navigation property tokenLifetimePolicies for applications * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove a tokenLifetimePolicy from an application. + * Delete ref of navigation property tokenLifetimePolicies for applications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -58,21 +56,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * List the tokenLifetimePolicy objects that are assigned to an application. Only one object is returned in the collection because only one tokenLifetimePolicy can be assigned to an application. + * Get ref of tokenLifetimePolicies from applications * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get() { return get(null); } /** - * List the tokenLifetimePolicy objects that are assigned to an application. Only one object is returned in the collection because only one tokenLifetimePolicy can be assigned to an application. + * Get ref of tokenLifetimePolicies from applications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -82,20 +78,18 @@ public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util return this.requestAdapter.send(requestInfo, errorMapping, StringCollectionResponse::createFromDiscriminatorValue); } /** - * Assign a tokenLifetimePolicy to an application. You can have multiple tokenLifetimePolicy policies in a tenant but can assign only one tokenLifetimePolicy per application. + * Create new navigation property ref to tokenLifetimePolicies for applications * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body) { post(body, null); } /** - * Assign a tokenLifetimePolicy to an application. You can have multiple tokenLifetimePolicy policies in a tenant but can assign only one tokenLifetimePolicy per application. + * Create new navigation property ref to tokenLifetimePolicies for applications * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { Objects.requireNonNull(body); @@ -105,7 +99,7 @@ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakart this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove a tokenLifetimePolicy from an application. + * Delete ref of navigation property tokenLifetimePolicies for applications * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -113,7 +107,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove a tokenLifetimePolicy from an application. + * Delete ref of navigation property tokenLifetimePolicies for applications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * List the tokenLifetimePolicy objects that are assigned to an application. Only one object is returned in the collection because only one tokenLifetimePolicy can be assigned to an application. + * Get ref of tokenLifetimePolicies from applications * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -133,7 +127,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List the tokenLifetimePolicy objects that are assigned to an application. Only one object is returned in the collection because only one tokenLifetimePolicy can be assigned to an application. + * Get ref of tokenLifetimePolicies from applications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Assign a tokenLifetimePolicy to an application. You can have multiple tokenLifetimePolicy policies in a tenant but can assign only one tokenLifetimePolicy per application. + * Create new navigation property ref to tokenLifetimePolicies for applications * @param body The request body * @return a {@link RequestInformation} */ @@ -154,7 +148,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Assign a tokenLifetimePolicy to an application. You can have multiple tokenLifetimePolicy policies in a tenant but can assign only one tokenLifetimePolicy per application. + * Create new navigation property ref to tokenLifetimePolicies for applications * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -179,7 +173,7 @@ public RefRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl return new RefRequestBuilder(rawUrl, requestAdapter); } /** - * Remove a tokenLifetimePolicy from an application. + * Delete ref of navigation property tokenLifetimePolicies for applications */ @jakarta.annotation.Generated("com.microsoft.kiota") public class DeleteQueryParameters implements QueryParameters { @@ -211,7 +205,7 @@ public class DeleteRequestConfiguration extends BaseRequestConfiguration { public DeleteQueryParameters queryParameters = new DeleteQueryParameters(); } /** - * List the tokenLifetimePolicy objects that are assigned to an application. Only one object is returned in the collection because only one tokenLifetimePolicy can be assigned to an application. + * Get ref of tokenLifetimePolicies from applications */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/auditlogs/directoryaudits/DirectoryAuditsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/auditlogs/directoryaudits/DirectoryAuditsRequestBuilder.java index 366db671cc8..1c70836cc36 100644 --- a/src/main/java/com/microsoft/graph/generated/auditlogs/directoryaudits/DirectoryAuditsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/auditlogs/directoryaudits/DirectoryAuditsRequestBuilder.java @@ -60,21 +60,19 @@ public DirectoryAuditsRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/auditLogs/directoryAudits{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of audit logs generated by Microsoft Entra ID. This includes audit logs generated by various services within Microsoft Entra ID, including user, app, device and group Management, privileged identity management (PIM), access reviews, terms of use, identity protection, password management (self-service and admin password resets), and self- service group management, and so on. + * Get directoryAudits from auditLogs * @return a {@link DirectoryAuditCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryAuditCollectionResponse get() { return get(null); } /** - * Get the list of audit logs generated by Microsoft Entra ID. This includes audit logs generated by various services within Microsoft Entra ID, including user, app, device and group Management, privileged identity management (PIM), access reviews, terms of use, identity protection, password management (self-service and admin password resets), and self- service group management, and so on. + * Get directoryAudits from auditLogs * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DirectoryAuditCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryAuditCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public DirectoryAudit post(@jakarta.annotation.Nonnull final DirectoryAudit body return this.requestAdapter.send(requestInfo, errorMapping, DirectoryAudit::createFromDiscriminatorValue); } /** - * Get the list of audit logs generated by Microsoft Entra ID. This includes audit logs generated by various services within Microsoft Entra ID, including user, app, device and group Management, privileged identity management (PIM), access reviews, terms of use, identity protection, password management (self-service and admin password resets), and self- service group management, and so on. + * Get directoryAudits from auditLogs * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of audit logs generated by Microsoft Entra ID. This includes audit logs generated by various services within Microsoft Entra ID, including user, app, device and group Management, privileged identity management (PIM), access reviews, terms of use, identity protection, password management (self-service and admin password resets), and self- service group management, and so on. + * Get directoryAudits from auditLogs * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public DirectoryAuditsRequestBuilder withUrl(@jakarta.annotation.Nonnull final S return new DirectoryAuditsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of audit logs generated by Microsoft Entra ID. This includes audit logs generated by various services within Microsoft Entra ID, including user, app, device and group Management, privileged identity management (PIM), access reviews, terms of use, identity protection, password management (self-service and admin password resets), and self- service group management, and so on. + * Get directoryAudits from auditLogs */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/auditlogs/directoryaudits/item/DirectoryAuditItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/auditlogs/directoryaudits/item/DirectoryAuditItemRequestBuilder.java index 9af2d025b2c..9847cb2fc85 100644 --- a/src/main/java/com/microsoft/graph/generated/auditlogs/directoryaudits/item/DirectoryAuditItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/auditlogs/directoryaudits/item/DirectoryAuditItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get a specific Microsoft Entra audit log item. This includes an audit log item generated by various services within Microsoft Entra ID like user, application, device and group management, privileged identity management (PIM), access reviews, terms of use, identity protection, password management (self-service and admin password resets), self-service group management, and so on. + * Get directoryAudits from auditLogs * @return a {@link DirectoryAudit} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryAudit get() { return get(null); } /** - * Get a specific Microsoft Entra audit log item. This includes an audit log item generated by various services within Microsoft Entra ID like user, application, device and group management, privileged identity management (PIM), access reviews, terms of use, identity protection, password management (self-service and admin password resets), self-service group management, and so on. + * Get directoryAudits from auditLogs * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DirectoryAudit} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryAudit get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get a specific Microsoft Entra audit log item. This includes an audit log item generated by various services within Microsoft Entra ID like user, application, device and group management, privileged identity management (PIM), access reviews, terms of use, identity protection, password management (self-service and admin password resets), self-service group management, and so on. + * Get directoryAudits from auditLogs * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a specific Microsoft Entra audit log item. This includes an audit log item generated by various services within Microsoft Entra ID like user, application, device and group management, privileged identity management (PIM), access reviews, terms of use, identity protection, password management (self-service and admin password resets), self-service group management, and so on. + * Get directoryAudits from auditLogs * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public DirectoryAuditItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fina public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get a specific Microsoft Entra audit log item. This includes an audit log item generated by various services within Microsoft Entra ID like user, application, device and group management, privileged identity management (PIM), access reviews, terms of use, identity protection, password management (self-service and admin password resets), self-service group management, and so on. + * Get directoryAudits from auditLogs */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/auditlogs/provisioning/ProvisioningRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/auditlogs/provisioning/ProvisioningRequestBuilder.java index a8385301365..74ab9687683 100644 --- a/src/main/java/com/microsoft/graph/generated/auditlogs/provisioning/ProvisioningRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/auditlogs/provisioning/ProvisioningRequestBuilder.java @@ -60,21 +60,19 @@ public ProvisioningRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/auditLogs/provisioning{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get all provisioning events that occurred in your tenant, such as the deletion of a group in a target application or the creation of a user when provisioning user accounts from your HR system. + * Get provisioning from auditLogs * @return a {@link ProvisioningObjectSummaryCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ProvisioningObjectSummaryCollectionResponse get() { return get(null); } /** - * Get all provisioning events that occurred in your tenant, such as the deletion of a group in a target application or the creation of a user when provisioning user accounts from your HR system. + * Get provisioning from auditLogs * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ProvisioningObjectSummaryCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ProvisioningObjectSummaryCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ProvisioningObjectSummary post(@jakarta.annotation.Nonnull final Provisio return this.requestAdapter.send(requestInfo, errorMapping, ProvisioningObjectSummary::createFromDiscriminatorValue); } /** - * Get all provisioning events that occurred in your tenant, such as the deletion of a group in a target application or the creation of a user when provisioning user accounts from your HR system. + * Get provisioning from auditLogs * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get all provisioning events that occurred in your tenant, such as the deletion of a group in a target application or the creation of a user when provisioning user accounts from your HR system. + * Get provisioning from auditLogs * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public ProvisioningRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri return new ProvisioningRequestBuilder(rawUrl, requestAdapter); } /** - * Get all provisioning events that occurred in your tenant, such as the deletion of a group in a target application or the creation of a user when provisioning user accounts from your HR system. + * Get provisioning from auditLogs */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/auditlogs/signins/SignInsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/auditlogs/signins/SignInsRequestBuilder.java index c331dff1cea..da02fdaf6f3 100644 --- a/src/main/java/com/microsoft/graph/generated/auditlogs/signins/SignInsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/auditlogs/signins/SignInsRequestBuilder.java @@ -60,21 +60,19 @@ public SignInsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/auditLogs/signIns{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the Microsoft Entra user sign-ins for your tenant. Sign-ins that are interactive in nature (where a username/password is passed as part of auth token) and successful federated sign-ins are currently included in the sign-in logs. The maximum and default page size is 1,000 objects and by default, the most recent sign-ins are returned first. Only sign-in events that occurred within the Microsoft Entra ID default retention period are available. + * Get signIns from auditLogs * @return a {@link SignInCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SignInCollectionResponse get() { return get(null); } /** - * Retrieve the Microsoft Entra user sign-ins for your tenant. Sign-ins that are interactive in nature (where a username/password is passed as part of auth token) and successful federated sign-ins are currently included in the sign-in logs. The maximum and default page size is 1,000 objects and by default, the most recent sign-ins are returned first. Only sign-in events that occurred within the Microsoft Entra ID default retention period are available. + * Get signIns from auditLogs * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SignInCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SignInCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public SignIn post(@jakarta.annotation.Nonnull final SignIn body, @jakarta.annot return this.requestAdapter.send(requestInfo, errorMapping, SignIn::createFromDiscriminatorValue); } /** - * Retrieve the Microsoft Entra user sign-ins for your tenant. Sign-ins that are interactive in nature (where a username/password is passed as part of auth token) and successful federated sign-ins are currently included in the sign-in logs. The maximum and default page size is 1,000 objects and by default, the most recent sign-ins are returned first. Only sign-in events that occurred within the Microsoft Entra ID default retention period are available. + * Get signIns from auditLogs * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the Microsoft Entra user sign-ins for your tenant. Sign-ins that are interactive in nature (where a username/password is passed as part of auth token) and successful federated sign-ins are currently included in the sign-in logs. The maximum and default page size is 1,000 objects and by default, the most recent sign-ins are returned first. Only sign-in events that occurred within the Microsoft Entra ID default retention period are available. + * Get signIns from auditLogs * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public SignInsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new SignInsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the Microsoft Entra user sign-ins for your tenant. Sign-ins that are interactive in nature (where a username/password is passed as part of auth token) and successful federated sign-ins are currently included in the sign-in logs. The maximum and default page size is 1,000 objects and by default, the most recent sign-ins are returned first. Only sign-in events that occurred within the Microsoft Entra ID default retention period are available. + * Get signIns from auditLogs */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/auditlogs/signins/item/SignInItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/auditlogs/signins/item/SignInItemRequestBuilder.java index a97f6876b57..69a70be9eb6 100644 --- a/src/main/java/com/microsoft/graph/generated/auditlogs/signins/item/SignInItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/auditlogs/signins/item/SignInItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a specific Microsoft Entra user sign-in event for your tenant. Sign-ins that are interactive in nature (where a username/password is passed as part of auth token) and successful federated sign-ins are currently included in the sign-in logs. + * Get signIns from auditLogs * @return a {@link SignIn} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SignIn get() { return get(null); } /** - * Retrieve a specific Microsoft Entra user sign-in event for your tenant. Sign-ins that are interactive in nature (where a username/password is passed as part of auth token) and successful federated sign-ins are currently included in the sign-in logs. + * Get signIns from auditLogs * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SignIn} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SignIn get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a specific Microsoft Entra user sign-in event for your tenant. Sign-ins that are interactive in nature (where a username/password is passed as part of auth token) and successful federated sign-ins are currently included in the sign-in logs. + * Get signIns from auditLogs * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a specific Microsoft Entra user sign-in event for your tenant. Sign-ins that are interactive in nature (where a username/password is passed as part of auth token) and successful federated sign-ins are currently included in the sign-in logs. + * Get signIns from auditLogs * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public SignInItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve a specific Microsoft Entra user sign-in event for your tenant. Sign-ins that are interactive in nature (where a username/password is passed as part of auth token) and successful federated sign-ins are currently included in the sign-in logs. + * Get signIns from auditLogs */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/chats/getallmessages/GetAllMessagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/chats/getallmessages/GetAllMessagesRequestBuilder.java index 5d2d720f88a..fd924bdc57b 100644 --- a/src/main/java/com/microsoft/graph/generated/chats/getallmessages/GetAllMessagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/chats/getallmessages/GetAllMessagesRequestBuilder.java @@ -36,19 +36,21 @@ public GetAllMessagesRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/chats/getAllMessages(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top,model*}", rawUrl); } /** - * Invoke function getAllMessages + * Get all messages from all chats that a user is a participant in, including one-on-one chats, group chats, and meeting chats. * @return a {@link GetAllMessagesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetAllMessagesGetResponse get() { return get(null); } /** - * Invoke function getAllMessages + * Get all messages from all chats that a user is a participant in, including one-on-one chats, group chats, and meeting chats. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GetAllMessagesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetAllMessagesGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public GetAllMessagesGetResponse get(@jakarta.annotation.Nullable final java.uti return this.requestAdapter.send(requestInfo, errorMapping, GetAllMessagesGetResponse::createFromDiscriminatorValue); } /** - * Invoke function getAllMessages + * Get all messages from all chats that a user is a participant in, including one-on-one chats, group chats, and meeting chats. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getAllMessages + * Get all messages from all chats that a user is a participant in, including one-on-one chats, group chats, and meeting chats. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public GetAllMessagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new GetAllMessagesRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function getAllMessages + * Get all messages from all chats that a user is a participant in, including one-on-one chats, group chats, and meeting chats. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/chats/item/installedapps/InstalledAppsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/chats/item/installedapps/InstalledAppsRequestBuilder.java index bcaa8c7fe6c..e332657455d 100644 --- a/src/main/java/com/microsoft/graph/generated/chats/item/installedapps/InstalledAppsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/chats/item/installedapps/InstalledAppsRequestBuilder.java @@ -60,21 +60,19 @@ public InstalledAppsRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/chats/{chat%2Did}/installedApps{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List all app installations within a chat. + * A collection of all the apps in the chat. Nullable. * @return a {@link TeamsAppInstallationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsAppInstallationCollectionResponse get() { return get(null); } /** - * List all app installations within a chat. + * A collection of all the apps in the chat. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsAppInstallationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsAppInstallationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TeamsAppInstallationCollectionResponse get(@jakarta.annotation.Nullable f return this.requestAdapter.send(requestInfo, errorMapping, TeamsAppInstallationCollectionResponse::createFromDiscriminatorValue); } /** - * Install a teamsApp to the specified chat. + * Create new navigation property to installedApps for chats * @param body The request body * @return a {@link TeamsAppInstallation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsAppInstallation post(@jakarta.annotation.Nonnull final TeamsAppInstallation body) { return post(body, null); } /** - * Install a teamsApp to the specified chat. + * Create new navigation property to installedApps for chats * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsAppInstallation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsAppInstallation post(@jakarta.annotation.Nonnull final TeamsAppInstallation body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public TeamsAppInstallation post(@jakarta.annotation.Nonnull final TeamsAppInsta return this.requestAdapter.send(requestInfo, errorMapping, TeamsAppInstallation::createFromDiscriminatorValue); } /** - * List all app installations within a chat. + * A collection of all the apps in the chat. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List all app installations within a chat. + * A collection of all the apps in the chat. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Install a teamsApp to the specified chat. + * Create new navigation property to installedApps for chats * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Install a teamsApp to the specified chat. + * Create new navigation property to installedApps for chats * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public InstalledAppsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new InstalledAppsRequestBuilder(rawUrl, requestAdapter); } /** - * List all app installations within a chat. + * A collection of all the apps in the chat. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/chats/item/installedapps/item/TeamsAppInstallationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/chats/item/installedapps/item/TeamsAppInstallationItemRequestBuilder.java index 5824d8c26ba..40e335e6741 100644 --- a/src/main/java/com/microsoft/graph/generated/chats/item/installedapps/item/TeamsAppInstallationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/chats/item/installedapps/item/TeamsAppInstallationItemRequestBuilder.java @@ -64,18 +64,16 @@ public TeamsAppInstallationItemRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/chats/{chat%2Did}/installedApps/{teamsAppInstallation%2Did}{?%24expand,%24select}", rawUrl); } /** - * Uninstall an app installed within a chat. + * Delete navigation property installedApps for chats * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Uninstall an app installed within a chat. + * Delete navigation property installedApps for chats * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -84,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get an app installed in a chat. + * A collection of all the apps in the chat. Nullable. * @return a {@link TeamsAppInstallation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsAppInstallation get() { return get(null); } /** - * Get an app installed in a chat. + * A collection of all the apps in the chat. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsAppInstallation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsAppInstallation get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +129,7 @@ public TeamsAppInstallation patch(@jakarta.annotation.Nonnull final TeamsAppInst return this.requestAdapter.send(requestInfo, errorMapping, TeamsAppInstallation::createFromDiscriminatorValue); } /** - * Uninstall an app installed within a chat. + * Delete navigation property installedApps for chats * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +137,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Uninstall an app installed within a chat. + * Delete navigation property installedApps for chats * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -153,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get an app installed in a chat. + * A collection of all the apps in the chat. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -161,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an app installed in a chat. + * A collection of all the apps in the chat. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -213,7 +209,7 @@ public TeamsAppInstallationItemRequestBuilder withUrl(@jakarta.annotation.Nonnul public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get an app installed in a chat. + * A collection of all the apps in the chat. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/chats/item/members/MembersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/chats/item/members/MembersRequestBuilder.java index d3224c44c45..72b10ea10f6 100644 --- a/src/main/java/com/microsoft/graph/generated/chats/item/members/MembersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/chats/item/members/MembersRequestBuilder.java @@ -69,21 +69,19 @@ public MembersRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/chats/{chat%2Did}/members{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List all conversation members in a chat or channel. + * A collection of all the members in the chat. Nullable. * @return a {@link ConversationMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMemberCollectionResponse get() { return get(null); } /** - * List all conversation members in a chat or channel. + * A collection of all the members in the chat. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMemberCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public ConversationMemberCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, ConversationMemberCollectionResponse::createFromDiscriminatorValue); } /** - * Add a conversationMember to a chat. + * Create new navigation property to members for chats * @param body The request body * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember post(@jakarta.annotation.Nonnull final ConversationMember body) { return post(body, null); } /** - * Add a conversationMember to a chat. + * Create new navigation property to members for chats * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember post(@jakarta.annotation.Nonnull final ConversationMember body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public ConversationMember post(@jakarta.annotation.Nonnull final ConversationMem return this.requestAdapter.send(requestInfo, errorMapping, ConversationMember::createFromDiscriminatorValue); } /** - * List all conversation members in a chat or channel. + * A collection of all the members in the chat. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List all conversation members in a chat or channel. + * A collection of all the members in the chat. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add a conversationMember to a chat. + * Create new navigation property to members for chats * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add a conversationMember to a chat. + * Create new navigation property to members for chats * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public MembersRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new MembersRequestBuilder(rawUrl, requestAdapter); } /** - * List all conversation members in a chat or channel. + * A collection of all the members in the chat. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/chats/item/members/item/ConversationMemberItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/chats/item/members/item/ConversationMemberItemRequestBuilder.java index 98fe724ad7d..ed6291797cf 100644 --- a/src/main/java/com/microsoft/graph/generated/chats/item/members/item/ConversationMemberItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/chats/item/members/item/ConversationMemberItemRequestBuilder.java @@ -37,18 +37,16 @@ public ConversationMemberItemRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/chats/{chat%2Did}/members/{conversationMember%2Did}{?%24expand,%24select}", rawUrl); } /** - * Remove a conversationMember from a chat. + * Delete navigation property members for chats * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove a conversationMember from a chat. + * Delete navigation property members for chats * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a conversationMember from a chat or channel. + * A collection of all the members in the chat. Nullable. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember get() { return get(null); } /** - * Retrieve a conversationMember from a chat or channel. + * A collection of all the members in the chat. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -106,7 +102,7 @@ public ConversationMember patch(@jakarta.annotation.Nonnull final ConversationMe return this.requestAdapter.send(requestInfo, errorMapping, ConversationMember::createFromDiscriminatorValue); } /** - * Remove a conversationMember from a chat. + * Delete navigation property members for chats * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -114,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove a conversationMember from a chat. + * Delete navigation property members for chats * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a conversationMember from a chat or channel. + * A collection of all the members in the chat. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a conversationMember from a chat or channel. + * A collection of all the members in the chat. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public ConversationMemberItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve a conversationMember from a chat or channel. + * A collection of all the members in the chat. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/chats/item/messages/MessagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/chats/item/messages/MessagesRequestBuilder.java index 940ae814bfa..9af1fdb0370 100644 --- a/src/main/java/com/microsoft/graph/generated/chats/item/messages/MessagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/chats/item/messages/MessagesRequestBuilder.java @@ -69,21 +69,19 @@ public MessagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/chats/{chat%2Did}/messages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of messages in a chat. This method supports federation. To list chat messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the chat. Nullable. * @return a {@link ChatMessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageCollectionResponse get() { return get(null); } /** - * Retrieve the list of messages in a chat. This method supports federation. To list chat messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the chat. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public ChatMessageCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, ChatMessageCollectionResponse::createFromDiscriminatorValue); } /** - * Send a new chatMessage in the specified chat. This API can't create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can create a chat message. + * Create new navigation property to messages for chats * @param body The request body * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body) { return post(body, null); } /** - * Send a new chatMessage in the specified chat. This API can't create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can create a chat message. + * Create new navigation property to messages for chats * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body, @jak return this.requestAdapter.send(requestInfo, errorMapping, ChatMessage::createFromDiscriminatorValue); } /** - * Retrieve the list of messages in a chat. This method supports federation. To list chat messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the chat. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of messages in a chat. This method supports federation. To list chat messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the chat. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Send a new chatMessage in the specified chat. This API can't create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can create a chat message. + * Create new navigation property to messages for chats * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Send a new chatMessage in the specified chat. This API can't create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can create a chat message. + * Create new navigation property to messages for chats * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public MessagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new MessagesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of messages in a chat. This method supports federation. To list chat messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the chat. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/chats/item/messages/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/chats/item/messages/delta/DeltaRequestBuilder.java index 52671ce3801..858dddbcb78 100644 --- a/src/main/java/com/microsoft/graph/generated/chats/item/messages/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/chats/item/messages/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/chats/{chat%2Did}/messages/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/ChatMessageItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/ChatMessageItemRequestBuilder.java index 2c2b6dcebdb..c585fd79ad4 100644 --- a/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/ChatMessageItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/ChatMessageItemRequestBuilder.java @@ -109,21 +109,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the chat. Nullable. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage get() { return get(null); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the chat. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -178,7 +176,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the chat. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -186,7 +184,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the chat. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -238,7 +236,7 @@ public ChatMessageItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final S public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the chat. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/hostedcontents/HostedContentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/hostedcontents/HostedContentsRequestBuilder.java index ff4f6d7dfce..ebbc4526a9b 100644 --- a/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/hostedcontents/HostedContentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/hostedcontents/HostedContentsRequestBuilder.java @@ -60,21 +60,19 @@ public HostedContentsRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/chats/{chat%2Did}/messages/{chatMessage%2Did}/hostedContents{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link ChatMessageHostedContentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContentCollectionResponse get() { return get(null); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageHostedContentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ChatMessageHostedContent post(@jakarta.annotation.Nonnull final ChatMessa return this.requestAdapter.send(requestInfo, errorMapping, ChatMessageHostedContent::createFromDiscriminatorValue); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public HostedContentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new HostedContentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java index 9505fdadcef..1358178df96 100644 --- a/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link ChatMessageHostedContent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContent get() { return get(null); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageHostedContent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContent get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public ChatMessageHostedContentItemRequestBuilder withUrl(@jakarta.annotation.No public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/hostedcontents/item/value/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/hostedcontents/item/value/ContentRequestBuilder.java index 446159e75b1..d9032d95d8a 100644 --- a/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/hostedcontents/item/value/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/hostedcontents/item/value/ContentRequestBuilder.java @@ -39,7 +39,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * Get media content for the navigation property hostedContents from chats * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -50,7 +49,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/replies/RepliesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/replies/RepliesRequestBuilder.java index 6012bebbbaa..2558306fd3f 100644 --- a/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/replies/RepliesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/replies/RepliesRequestBuilder.java @@ -69,21 +69,19 @@ public RepliesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/chats/{chat%2Did}/messages/{chatMessage%2Did}/replies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. * @return a {@link ChatMessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageCollectionResponse get() { return get(null); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public ChatMessageCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, ChatMessageCollectionResponse::createFromDiscriminatorValue); } /** - * Send a new reply to a chatMessage in a specified channel. + * Create new navigation property to replies for chats * @param body The request body * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body) { return post(body, null); } /** - * Send a new reply to a chatMessage in a specified channel. + * Create new navigation property to replies for chats * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body, @jak return this.requestAdapter.send(requestInfo, errorMapping, ChatMessage::createFromDiscriminatorValue); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Send a new reply to a chatMessage in a specified channel. + * Create new navigation property to replies for chats * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Send a new reply to a chatMessage in a specified channel. + * Create new navigation property to replies for chats * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public RepliesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new RepliesRequestBuilder(rawUrl, requestAdapter); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/replies/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/replies/delta/DeltaRequestBuilder.java index 192cb6d5f13..8c9c68e569b 100644 --- a/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/replies/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/replies/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/chats/{chat%2Did}/messages/{chatMessage%2Did}/replies/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/replies/item/ChatMessageItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/replies/item/ChatMessageItemRequestBuilder.java index d6d530682e1..eb765714240 100644 --- a/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/replies/item/ChatMessageItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/replies/item/ChatMessageItemRequestBuilder.java @@ -100,21 +100,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage get() { return get(null); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -169,7 +167,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -177,7 +175,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -229,7 +227,7 @@ public ChatMessageItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final S public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/replies/item/hostedcontents/HostedContentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/replies/item/hostedcontents/HostedContentsRequestBuilder.java index 91b9e9ff757..e83b63eb175 100644 --- a/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/replies/item/hostedcontents/HostedContentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/replies/item/hostedcontents/HostedContentsRequestBuilder.java @@ -60,21 +60,19 @@ public HostedContentsRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/chats/{chat%2Did}/messages/{chatMessage%2Did}/replies/{chatMessage%2Did1}/hostedContents{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link ChatMessageHostedContentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContentCollectionResponse get() { return get(null); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageHostedContentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ChatMessageHostedContent post(@jakarta.annotation.Nonnull final ChatMessa return this.requestAdapter.send(requestInfo, errorMapping, ChatMessageHostedContent::createFromDiscriminatorValue); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public HostedContentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new HostedContentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/replies/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/replies/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java index 28a2e966f55..f4906a24806 100644 --- a/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/replies/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/replies/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link ChatMessageHostedContent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContent get() { return get(null); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageHostedContent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContent get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public ChatMessageHostedContentItemRequestBuilder withUrl(@jakarta.annotation.No public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/replies/item/hostedcontents/item/value/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/replies/item/hostedcontents/item/value/ContentRequestBuilder.java index 766d0a64010..1fd0e7a427e 100644 --- a/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/replies/item/hostedcontents/item/value/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/chats/item/messages/item/replies/item/hostedcontents/item/value/ContentRequestBuilder.java @@ -39,7 +39,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * Get media content for the navigation property hostedContents from chats * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -50,7 +49,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/chats/item/permissiongrants/PermissionGrantsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/chats/item/permissiongrants/PermissionGrantsRequestBuilder.java index 937ea65a4e1..bb152f1b689 100644 --- a/src/main/java/com/microsoft/graph/generated/chats/item/permissiongrants/PermissionGrantsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/chats/item/permissiongrants/PermissionGrantsRequestBuilder.java @@ -60,21 +60,19 @@ public PermissionGrantsRequestBuilder(@jakarta.annotation.Nonnull final String r super(requestAdapter, "{+baseurl}/chats/{chat%2Did}/permissionGrants{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List all resource-specific permission grants on the chat. This list specifies the Microsoft Entra apps that have access to the chat, along with the corresponding resource-specific access that each app has. + * A collection of permissions granted to apps for the chat. * @return a {@link ResourceSpecificPermissionGrantCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ResourceSpecificPermissionGrantCollectionResponse get() { return get(null); } /** - * List all resource-specific permission grants on the chat. This list specifies the Microsoft Entra apps that have access to the chat, along with the corresponding resource-specific access that each app has. + * A collection of permissions granted to apps for the chat. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ResourceSpecificPermissionGrantCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ResourceSpecificPermissionGrantCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ResourceSpecificPermissionGrant post(@jakarta.annotation.Nonnull final Re return this.requestAdapter.send(requestInfo, errorMapping, ResourceSpecificPermissionGrant::createFromDiscriminatorValue); } /** - * List all resource-specific permission grants on the chat. This list specifies the Microsoft Entra apps that have access to the chat, along with the corresponding resource-specific access that each app has. + * A collection of permissions granted to apps for the chat. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List all resource-specific permission grants on the chat. This list specifies the Microsoft Entra apps that have access to the chat, along with the corresponding resource-specific access that each app has. + * A collection of permissions granted to apps for the chat. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public PermissionGrantsRequestBuilder withUrl(@jakarta.annotation.Nonnull final return new PermissionGrantsRequestBuilder(rawUrl, requestAdapter); } /** - * List all resource-specific permission grants on the chat. This list specifies the Microsoft Entra apps that have access to the chat, along with the corresponding resource-specific access that each app has. + * A collection of permissions granted to apps for the chat. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/chats/item/pinnedmessages/PinnedMessagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/chats/item/pinnedmessages/PinnedMessagesRequestBuilder.java index 83108f8e2fc..1c47e2b1864 100644 --- a/src/main/java/com/microsoft/graph/generated/chats/item/pinnedmessages/PinnedMessagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/chats/item/pinnedmessages/PinnedMessagesRequestBuilder.java @@ -60,21 +60,19 @@ public PinnedMessagesRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/chats/{chat%2Did}/pinnedMessages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of pinnedChatMessages in a chat. + * A collection of all the pinned messages in the chat. Nullable. * @return a {@link PinnedChatMessageInfoCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PinnedChatMessageInfoCollectionResponse get() { return get(null); } /** - * Get a list of pinnedChatMessages in a chat. + * A collection of all the pinned messages in the chat. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PinnedChatMessageInfoCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PinnedChatMessageInfoCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public PinnedChatMessageInfoCollectionResponse get(@jakarta.annotation.Nullable return this.requestAdapter.send(requestInfo, errorMapping, PinnedChatMessageInfoCollectionResponse::createFromDiscriminatorValue); } /** - * Pin a chat message in the specified chat. This API cannot create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can pin a chat message. + * Create new navigation property to pinnedMessages for chats * @param body The request body * @return a {@link PinnedChatMessageInfo} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PinnedChatMessageInfo post(@jakarta.annotation.Nonnull final PinnedChatMessageInfo body) { return post(body, null); } /** - * Pin a chat message in the specified chat. This API cannot create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can pin a chat message. + * Create new navigation property to pinnedMessages for chats * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PinnedChatMessageInfo} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PinnedChatMessageInfo post(@jakarta.annotation.Nonnull final PinnedChatMessageInfo body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public PinnedChatMessageInfo post(@jakarta.annotation.Nonnull final PinnedChatMe return this.requestAdapter.send(requestInfo, errorMapping, PinnedChatMessageInfo::createFromDiscriminatorValue); } /** - * Get a list of pinnedChatMessages in a chat. + * A collection of all the pinned messages in the chat. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of pinnedChatMessages in a chat. + * A collection of all the pinned messages in the chat. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Pin a chat message in the specified chat. This API cannot create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can pin a chat message. + * Create new navigation property to pinnedMessages for chats * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Pin a chat message in the specified chat. This API cannot create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can pin a chat message. + * Create new navigation property to pinnedMessages for chats * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public PinnedMessagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new PinnedMessagesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of pinnedChatMessages in a chat. + * A collection of all the pinned messages in the chat. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/chats/item/pinnedmessages/item/PinnedChatMessageInfoItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/chats/item/pinnedmessages/item/PinnedChatMessageInfoItemRequestBuilder.java index 20fc3b3227a..483fab6d664 100644 --- a/src/main/java/com/microsoft/graph/generated/chats/item/pinnedmessages/item/PinnedChatMessageInfoItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/chats/item/pinnedmessages/item/PinnedChatMessageInfoItemRequestBuilder.java @@ -46,18 +46,16 @@ public PinnedChatMessageInfoItemRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/chats/{chat%2Did}/pinnedMessages/{pinnedChatMessageInfo%2Did}{?%24expand,%24select}", rawUrl); } /** - * Unpin a message from a chat. + * Delete navigation property pinnedMessages for chats * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Unpin a message from a chat. + * Delete navigation property pinnedMessages for chats * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -113,7 +111,7 @@ public PinnedChatMessageInfo patch(@jakarta.annotation.Nonnull final PinnedChatM return this.requestAdapter.send(requestInfo, errorMapping, PinnedChatMessageInfo::createFromDiscriminatorValue); } /** - * Unpin a message from a chat. + * Delete navigation property pinnedMessages for chats * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -121,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Unpin a message from a chat. + * Delete navigation property pinnedMessages for chats * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/chats/item/tabs/TabsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/chats/item/tabs/TabsRequestBuilder.java index 3ef88a58c70..845225cff26 100644 --- a/src/main/java/com/microsoft/graph/generated/chats/item/tabs/TabsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/chats/item/tabs/TabsRequestBuilder.java @@ -60,21 +60,19 @@ public TabsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka super(requestAdapter, "{+baseurl}/chats/{chat%2Did}/tabs{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of tabs in the specified chat. + * A collection of all the tabs in the chat. Nullable. * @return a {@link TeamsTabCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTabCollectionResponse get() { return get(null); } /** - * Retrieve the list of tabs in the specified chat. + * A collection of all the tabs in the chat. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsTabCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTabCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TeamsTabCollectionResponse get(@jakarta.annotation.Nullable final java.ut return this.requestAdapter.send(requestInfo, errorMapping, TeamsTabCollectionResponse::createFromDiscriminatorValue); } /** - * Add (pin) a tab to the specified chat. The corresponding app must already be installed in the chat. + * Create new navigation property to tabs for chats * @param body The request body * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab post(@jakarta.annotation.Nonnull final TeamsTab body) { return post(body, null); } /** - * Add (pin) a tab to the specified chat. The corresponding app must already be installed in the chat. + * Create new navigation property to tabs for chats * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab post(@jakarta.annotation.Nonnull final TeamsTab body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public TeamsTab post(@jakarta.annotation.Nonnull final TeamsTab body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, TeamsTab::createFromDiscriminatorValue); } /** - * Retrieve the list of tabs in the specified chat. + * A collection of all the tabs in the chat. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of tabs in the specified chat. + * A collection of all the tabs in the chat. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add (pin) a tab to the specified chat. The corresponding app must already be installed in the chat. + * Create new navigation property to tabs for chats * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add (pin) a tab to the specified chat. The corresponding app must already be installed in the chat. + * Create new navigation property to tabs for chats * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public TabsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr return new TabsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of tabs in the specified chat. + * A collection of all the tabs in the chat. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/chats/item/tabs/item/TeamsTabItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/chats/item/tabs/item/TeamsTabItemRequestBuilder.java index 04a3902359e..733219b4f99 100644 --- a/src/main/java/com/microsoft/graph/generated/chats/item/tabs/item/TeamsTabItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/chats/item/tabs/item/TeamsTabItemRequestBuilder.java @@ -46,18 +46,16 @@ public TeamsTabItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/chats/{chat%2Did}/tabs/{teamsTab%2Did}{?%24expand,%24select}", rawUrl); } /** - * Remove (unpin) a tab from the specified chat. + * Delete navigation property tabs for chats * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove (unpin) a tab from the specified chat. + * Delete navigation property tabs for chats * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of the specified tab in a chat. + * A collection of all the tabs in the chat. Nullable. * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab get() { return get(null); } /** - * Retrieve the properties and relationships of the specified tab in a chat. + * A collection of all the tabs in the chat. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public TeamsTab get(@jakarta.annotation.Nullable final java.util.function.Consum return this.requestAdapter.send(requestInfo, errorMapping, TeamsTab::createFromDiscriminatorValue); } /** - * Update the properties of the specified tab in a chat. This can be used to configure the content of the tab. + * Update the navigation property tabs in chats * @param body The request body * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab patch(@jakarta.annotation.Nonnull final TeamsTab body) { return patch(body, null); } /** - * Update the properties of the specified tab in a chat. This can be used to configure the content of the tab. + * Update the navigation property tabs in chats * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab patch(@jakarta.annotation.Nonnull final TeamsTab body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public TeamsTab patch(@jakarta.annotation.Nonnull final TeamsTab body, @jakarta. return this.requestAdapter.send(requestInfo, errorMapping, TeamsTab::createFromDiscriminatorValue); } /** - * Remove (unpin) a tab from the specified chat. + * Delete navigation property tabs for chats * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove (unpin) a tab from the specified chat. + * Delete navigation property tabs for chats * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of the specified tab in a chat. + * A collection of all the tabs in the chat. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of the specified tab in a chat. + * A collection of all the tabs in the chat. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of the specified tab in a chat. This can be used to configure the content of the tab. + * Update the navigation property tabs in chats * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of the specified tab in a chat. This can be used to configure the content of the tab. + * Update the navigation property tabs in chats * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public TeamsTabItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of the specified tab in a chat. + * A collection of all the tabs in the chat. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/communications/callrecords/CallRecordsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/communications/callrecords/CallRecordsRequestBuilder.java index e179a5beab0..23ab657b5da 100644 --- a/src/main/java/com/microsoft/graph/generated/communications/callrecords/CallRecordsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/communications/callrecords/CallRecordsRequestBuilder.java @@ -63,7 +63,7 @@ public CallRecordsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/communications/callRecords{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the properties and relationships of a callRecord object. There are two ways to get the id of a callRecord: You can use the $expand query parameter to optionally include session and segment details, as shown in the Get full details example. When you expand session details, the maximum page size is 60 sessions. + * Get callRecords from communications * @return a {@link CallRecordCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -72,7 +72,7 @@ public CallRecordCollectionResponse get() { return get(null); } /** - * Retrieve the properties and relationships of a callRecord object. There are two ways to get the id of a callRecord: You can use the $expand query parameter to optionally include session and segment details, as shown in the Get full details example. When you expand session details, the maximum page size is 60 sessions. + * Get callRecords from communications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CallRecordCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -134,7 +134,7 @@ public CallRecord post(@jakarta.annotation.Nonnull final CallRecord body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, CallRecord::createFromDiscriminatorValue); } /** - * Retrieve the properties and relationships of a callRecord object. There are two ways to get the id of a callRecord: You can use the $expand query parameter to optionally include session and segment details, as shown in the Get full details example. When you expand session details, the maximum page size is 60 sessions. + * Get callRecords from communications * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -142,7 +142,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a callRecord object. There are two ways to get the id of a callRecord: You can use the $expand query parameter to optionally include session and segment details, as shown in the Get full details example. When you expand session details, the maximum page size is 60 sessions. + * Get callRecords from communications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -188,7 +188,7 @@ public CallRecordsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new CallRecordsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the properties and relationships of a callRecord object. There are two ways to get the id of a callRecord: You can use the $expand query parameter to optionally include session and segment details, as shown in the Get full details example. When you expand session details, the maximum page size is 60 sessions. + * Get callRecords from communications */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/communications/callrecords/item/CallRecordItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/communications/callrecords/item/CallRecordItemRequestBuilder.java index 6b01bf6a664..d25c6c4458c 100644 --- a/src/main/java/com/microsoft/graph/generated/communications/callrecords/item/CallRecordItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/communications/callrecords/item/CallRecordItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a callRecord object. There are two ways to get the id of a callRecord: You can use the $expand query parameter to optionally include session and segment details, as shown in the Get full details example. When you expand session details, the maximum page size is 60 sessions. + * Get callRecords from communications * @return a {@link CallRecord} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CallRecord get() { return get(null); } /** - * Retrieve the properties and relationships of a callRecord object. There are two ways to get the id of a callRecord: You can use the $expand query parameter to optionally include session and segment details, as shown in the Get full details example. When you expand session details, the maximum page size is 60 sessions. + * Get callRecords from communications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CallRecord} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CallRecord get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a callRecord object. There are two ways to get the id of a callRecord: You can use the $expand query parameter to optionally include session and segment details, as shown in the Get full details example. When you expand session details, the maximum page size is 60 sessions. + * Get callRecords from communications * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a callRecord object. There are two ways to get the id of a callRecord: You can use the $expand query parameter to optionally include session and segment details, as shown in the Get full details example. When you expand session details, the maximum page size is 60 sessions. + * Get callRecords from communications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public CallRecordItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final St public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a callRecord object. There are two ways to get the id of a callRecord: You can use the $expand query parameter to optionally include session and segment details, as shown in the Get full details example. When you expand session details, the maximum page size is 60 sessions. + * Get callRecords from communications */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/communications/callrecords/item/sessions/SessionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/communications/callrecords/item/sessions/SessionsRequestBuilder.java index f46978ddbae..9f8af215bf2 100644 --- a/src/main/java/com/microsoft/graph/generated/communications/callrecords/item/sessions/SessionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/communications/callrecords/item/sessions/SessionsRequestBuilder.java @@ -60,21 +60,19 @@ public SessionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/communications/callRecords/{callRecord%2Did}/sessions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of sessions associated with a callRecord object. If the sessions list is truncated, a sessions@odata.nextLink value will be provided to retrieve the next page of sessions. The maximum page size for sessions is 60 entries. + * 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. * @return a {@link SessionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SessionCollectionResponse get() { return get(null); } /** - * Retrieve the list of sessions associated with a callRecord object. If the sessions list is truncated, a sessions@odata.nextLink value will be provided to retrieve the next page of sessions. The maximum page size for sessions is 60 entries. + * 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. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SessionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SessionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Session post(@jakarta.annotation.Nonnull final Session body, @jakarta.ann return this.requestAdapter.send(requestInfo, errorMapping, Session::createFromDiscriminatorValue); } /** - * Retrieve the list of sessions associated with a callRecord object. If the sessions list is truncated, a sessions@odata.nextLink value will be provided to retrieve the next page of sessions. The maximum page size for sessions is 60 entries. + * 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. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of sessions associated with a callRecord object. If the sessions list is truncated, a sessions@odata.nextLink value will be provided to retrieve the next page of sessions. The maximum page size for sessions is 60 entries. + * 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. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public SessionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new SessionsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of sessions associated with a callRecord object. If the sessions list is truncated, a sessions@odata.nextLink value will be provided to retrieve the next page of sessions. The maximum page size for sessions is 60 entries. + * 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. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/communications/calls/CallsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/communications/calls/CallsRequestBuilder.java index 6ab9c8703f1..e5cad50e84b 100644 --- a/src/main/java/com/microsoft/graph/generated/communications/calls/CallsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/communications/calls/CallsRequestBuilder.java @@ -69,7 +69,7 @@ public CallsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/communications/calls{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the properties and relationships of a call object. + * Get calls from communications * @return a {@link CallCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -78,7 +78,7 @@ public CallCollectionResponse get() { return get(null); } /** - * Retrieve the properties and relationships of a call object. + * Get calls from communications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CallCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -91,23 +91,21 @@ public CallCollectionResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, CallCollectionResponse::createFromDiscriminatorValue); } /** - * Create call enables your bot to create a new outgoing peer-to-peer or group call, or join an existing meeting. You will need to register the calling bot and go through the list of permissions needed as mentioned below. + * Create new navigation property to calls for communications * @param body The request body * @return a {@link Call} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Call post(@jakarta.annotation.Nonnull final Call body) { return post(body, null); } /** - * Create call enables your bot to create a new outgoing peer-to-peer or group call, or join an existing meeting. You will need to register the calling bot and go through the list of permissions needed as mentioned below. + * Create new navigation property to calls for communications * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Call} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Call post(@jakarta.annotation.Nonnull final Call body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -118,7 +116,7 @@ public Call post(@jakarta.annotation.Nonnull final Call body, @jakarta.annotatio return this.requestAdapter.send(requestInfo, errorMapping, Call::createFromDiscriminatorValue); } /** - * Retrieve the properties and relationships of a call object. + * Get calls from communications * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -126,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a call object. + * Get calls from communications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -138,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create call enables your bot to create a new outgoing peer-to-peer or group call, or join an existing meeting. You will need to register the calling bot and go through the list of permissions needed as mentioned below. + * Create new navigation property to calls for communications * @param body The request body * @return a {@link RequestInformation} */ @@ -147,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create call enables your bot to create a new outgoing peer-to-peer or group call, or join an existing meeting. You will need to register the calling bot and go through the list of permissions needed as mentioned below. + * Create new navigation property to calls for communications * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -172,7 +170,7 @@ public CallsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new CallsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the properties and relationships of a call object. + * Get calls from communications */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/communications/calls/item/CallItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/communications/calls/item/CallItemRequestBuilder.java index 423c164760e..79ce809a02a 100644 --- a/src/main/java/com/microsoft/graph/generated/communications/calls/item/CallItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/communications/calls/item/CallItemRequestBuilder.java @@ -208,18 +208,16 @@ public CallItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/communications/calls/{call%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete or hang up an active call. For group calls, this will only delete your call leg and the underlying group call will still continue. + * Delete navigation property calls for communications * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete or hang up an active call. For group calls, this will only delete your call leg and the underlying group call will still continue. + * Delete navigation property calls for communications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -228,21 +226,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a call object. + * Get calls from communications * @return a {@link Call} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Call get() { return get(null); } /** - * Retrieve the properties and relationships of a call object. + * Get calls from communications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Call} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Call get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -277,7 +273,7 @@ public Call patch(@jakarta.annotation.Nonnull final Call body, @jakarta.annotati return this.requestAdapter.send(requestInfo, errorMapping, Call::createFromDiscriminatorValue); } /** - * Delete or hang up an active call. For group calls, this will only delete your call leg and the underlying group call will still continue. + * Delete navigation property calls for communications * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -285,7 +281,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete or hang up an active call. For group calls, this will only delete your call leg and the underlying group call will still continue. + * Delete navigation property calls for communications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -297,7 +293,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a call object. + * Get calls from communications * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -305,7 +301,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a call object. + * Get calls from communications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -357,7 +353,7 @@ public CallItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a call object. + * Get calls from communications */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/communications/calls/item/audioroutinggroups/AudioRoutingGroupsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/communications/calls/item/audioroutinggroups/AudioRoutingGroupsRequestBuilder.java index 12f4fc59095..3db2e0ddf7e 100644 --- a/src/main/java/com/microsoft/graph/generated/communications/calls/item/audioroutinggroups/AudioRoutingGroupsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/communications/calls/item/audioroutinggroups/AudioRoutingGroupsRequestBuilder.java @@ -60,21 +60,19 @@ public AudioRoutingGroupsRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/communications/calls/{call%2Did}/audioRoutingGroups{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of audioRoutingGroup objects. + * Get audioRoutingGroups from communications * @return a {@link AudioRoutingGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AudioRoutingGroupCollectionResponse get() { return get(null); } /** - * Retrieve a list of audioRoutingGroup objects. + * Get audioRoutingGroups from communications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AudioRoutingGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AudioRoutingGroupCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public AudioRoutingGroupCollectionResponse get(@jakarta.annotation.Nullable fina return this.requestAdapter.send(requestInfo, errorMapping, AudioRoutingGroupCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new audioRoutingGroup. + * Create new navigation property to audioRoutingGroups for communications * @param body The request body * @return a {@link AudioRoutingGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AudioRoutingGroup post(@jakarta.annotation.Nonnull final AudioRoutingGroup body) { return post(body, null); } /** - * Create a new audioRoutingGroup. + * Create new navigation property to audioRoutingGroups for communications * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AudioRoutingGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AudioRoutingGroup post(@jakarta.annotation.Nonnull final AudioRoutingGroup body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public AudioRoutingGroup post(@jakarta.annotation.Nonnull final AudioRoutingGrou return this.requestAdapter.send(requestInfo, errorMapping, AudioRoutingGroup::createFromDiscriminatorValue); } /** - * Retrieve a list of audioRoutingGroup objects. + * Get audioRoutingGroups from communications * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of audioRoutingGroup objects. + * Get audioRoutingGroups from communications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new audioRoutingGroup. + * Create new navigation property to audioRoutingGroups for communications * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new audioRoutingGroup. + * Create new navigation property to audioRoutingGroups for communications * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public AudioRoutingGroupsRequestBuilder withUrl(@jakarta.annotation.Nonnull fina return new AudioRoutingGroupsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of audioRoutingGroup objects. + * Get audioRoutingGroups from communications */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/communications/calls/item/audioroutinggroups/item/AudioRoutingGroupItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/communications/calls/item/audioroutinggroups/item/AudioRoutingGroupItemRequestBuilder.java index 7dd102e72ef..b2685c11c8d 100644 --- a/src/main/java/com/microsoft/graph/generated/communications/calls/item/audioroutinggroups/item/AudioRoutingGroupItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/communications/calls/item/audioroutinggroups/item/AudioRoutingGroupItemRequestBuilder.java @@ -37,18 +37,16 @@ public AudioRoutingGroupItemRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/communications/calls/{call%2Did}/audioRoutingGroups/{audioRoutingGroup%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete the specified audioRoutingGroup. + * Delete navigation property audioRoutingGroups for communications * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete the specified audioRoutingGroup. + * Delete navigation property audioRoutingGroups for communications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of an audioRoutingGroup object. + * Get audioRoutingGroups from communications * @return a {@link AudioRoutingGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AudioRoutingGroup get() { return get(null); } /** - * Retrieve the properties and relationships of an audioRoutingGroup object. + * Get audioRoutingGroups from communications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AudioRoutingGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AudioRoutingGroup get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public AudioRoutingGroup get(@jakarta.annotation.Nullable final java.util.functi return this.requestAdapter.send(requestInfo, errorMapping, AudioRoutingGroup::createFromDiscriminatorValue); } /** - * Modify sources and receivers of an audioRoutingGroup. + * Update the navigation property audioRoutingGroups in communications * @param body The request body * @return a {@link AudioRoutingGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AudioRoutingGroup patch(@jakarta.annotation.Nonnull final AudioRoutingGroup body) { return patch(body, null); } /** - * Modify sources and receivers of an audioRoutingGroup. + * Update the navigation property audioRoutingGroups in communications * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AudioRoutingGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AudioRoutingGroup patch(@jakarta.annotation.Nonnull final AudioRoutingGroup body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public AudioRoutingGroup patch(@jakarta.annotation.Nonnull final AudioRoutingGro return this.requestAdapter.send(requestInfo, errorMapping, AudioRoutingGroup::createFromDiscriminatorValue); } /** - * Delete the specified audioRoutingGroup. + * Delete navigation property audioRoutingGroups for communications * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete the specified audioRoutingGroup. + * Delete navigation property audioRoutingGroups for communications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of an audioRoutingGroup object. + * Get audioRoutingGroups from communications * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of an audioRoutingGroup object. + * Get audioRoutingGroups from communications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Modify sources and receivers of an audioRoutingGroup. + * Update the navigation property audioRoutingGroups in communications * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Modify sources and receivers of an audioRoutingGroup. + * Update the navigation property audioRoutingGroups in communications * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public AudioRoutingGroupItemRequestBuilder withUrl(@jakarta.annotation.Nonnull f public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of an audioRoutingGroup object. + * Get audioRoutingGroups from communications */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/communications/calls/item/contentsharingsessions/ContentSharingSessionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/communications/calls/item/contentsharingsessions/ContentSharingSessionsRequestBuilder.java index d5fb6215f76..305bf7e3cab 100644 --- a/src/main/java/com/microsoft/graph/generated/communications/calls/item/contentsharingsessions/ContentSharingSessionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/communications/calls/item/contentsharingsessions/ContentSharingSessionsRequestBuilder.java @@ -60,21 +60,19 @@ public ContentSharingSessionsRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/communications/calls/{call%2Did}/contentSharingSessions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of contentSharingSession objects in a call. + * Get contentSharingSessions from communications * @return a {@link ContentSharingSessionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentSharingSessionCollectionResponse get() { return get(null); } /** - * Retrieve a list of contentSharingSession objects in a call. + * Get contentSharingSessions from communications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ContentSharingSessionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentSharingSessionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ContentSharingSession post(@jakarta.annotation.Nonnull final ContentShari return this.requestAdapter.send(requestInfo, errorMapping, ContentSharingSession::createFromDiscriminatorValue); } /** - * Retrieve a list of contentSharingSession objects in a call. + * Get contentSharingSessions from communications * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of contentSharingSession objects in a call. + * Get contentSharingSessions from communications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public ContentSharingSessionsRequestBuilder withUrl(@jakarta.annotation.Nonnull return new ContentSharingSessionsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of contentSharingSession objects in a call. + * Get contentSharingSessions from communications */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/communications/calls/item/contentsharingsessions/item/ContentSharingSessionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/communications/calls/item/contentsharingsessions/item/ContentSharingSessionItemRequestBuilder.java index c7025008b69..ee7325473a7 100644 --- a/src/main/java/com/microsoft/graph/generated/communications/calls/item/contentsharingsessions/item/ContentSharingSessionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/communications/calls/item/contentsharingsessions/item/ContentSharingSessionItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties of a contentSharingSession object in a call. + * Get contentSharingSessions from communications * @return a {@link ContentSharingSession} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentSharingSession get() { return get(null); } /** - * Retrieve the properties of a contentSharingSession object in a call. + * Get contentSharingSessions from communications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ContentSharingSession} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentSharingSession get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties of a contentSharingSession object in a call. + * Get contentSharingSessions from communications * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties of a contentSharingSession object in a call. + * Get contentSharingSessions from communications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public ContentSharingSessionItemRequestBuilder withUrl(@jakarta.annotation.Nonnu public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties of a contentSharingSession object in a call. + * Get contentSharingSessions from communications */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/communications/calls/item/operations/OperationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/communications/calls/item/operations/OperationsRequestBuilder.java index 93237234911..45ae156b159 100644 --- a/src/main/java/com/microsoft/graph/generated/communications/calls/item/operations/OperationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/communications/calls/item/operations/OperationsRequestBuilder.java @@ -60,7 +60,7 @@ public OperationsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/communications/calls/{call%2Did}/operations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the status of an operation that adds the large gallery view to a call. + * Get operations from communications * @return a {@link CommsOperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public CommsOperationCollectionResponse get() { return get(null); } /** - * Get the status of an operation that adds the large gallery view to a call. + * Get operations from communications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CommsOperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public CommsOperation post(@jakarta.annotation.Nonnull final CommsOperation body return this.requestAdapter.send(requestInfo, errorMapping, CommsOperation::createFromDiscriminatorValue); } /** - * Get the status of an operation that adds the large gallery view to a call. + * Get operations from communications * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the status of an operation that adds the large gallery view to a call. + * Get operations from communications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public OperationsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new OperationsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the status of an operation that adds the large gallery view to a call. + * Get operations from communications */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/communications/calls/item/operations/item/CommsOperationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/communications/calls/item/operations/item/CommsOperationItemRequestBuilder.java index 8882d7f3131..e8f4351c0b5 100644 --- a/src/main/java/com/microsoft/graph/generated/communications/calls/item/operations/item/CommsOperationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/communications/calls/item/operations/item/CommsOperationItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the status of an operation that adds the large gallery view to a call. + * Get operations from communications * @return a {@link CommsOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CommsOperation get() { return get(null); } /** - * Get the status of an operation that adds the large gallery view to a call. + * Get operations from communications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CommsOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CommsOperation get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the status of an operation that adds the large gallery view to a call. + * Get operations from communications * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the status of an operation that adds the large gallery view to a call. + * Get operations from communications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public CommsOperationItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fina public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the status of an operation that adds the large gallery view to a call. + * Get operations from communications */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/communications/calls/item/participants/ParticipantsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/communications/calls/item/participants/ParticipantsRequestBuilder.java index ad44d7d2680..c4d5ccc2b9c 100644 --- a/src/main/java/com/microsoft/graph/generated/communications/calls/item/participants/ParticipantsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/communications/calls/item/participants/ParticipantsRequestBuilder.java @@ -69,21 +69,19 @@ public ParticipantsRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/communications/calls/{call%2Did}/participants{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of participant objects in the call. + * Get participants from communications * @return a {@link ParticipantCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ParticipantCollectionResponse get() { return get(null); } /** - * Retrieve a list of participant objects in the call. + * Get participants from communications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ParticipantCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ParticipantCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -118,7 +116,7 @@ public Participant post(@jakarta.annotation.Nonnull final Participant body, @jak return this.requestAdapter.send(requestInfo, errorMapping, Participant::createFromDiscriminatorValue); } /** - * Retrieve a list of participant objects in the call. + * Get participants from communications * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -126,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of participant objects in the call. + * Get participants from communications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -172,7 +170,7 @@ public ParticipantsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri return new ParticipantsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of participant objects in the call. + * Get participants from communications */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/communications/calls/item/participants/invite/InviteRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/communications/calls/item/participants/invite/InviteRequestBuilder.java index 5675abf7a1b..471c548e60f 100644 --- a/src/main/java/com/microsoft/graph/generated/communications/calls/item/participants/invite/InviteRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/communications/calls/item/participants/invite/InviteRequestBuilder.java @@ -36,23 +36,23 @@ public InviteRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/communications/calls/{call%2Did}/participants/invite", rawUrl); } /** - * Delete a specific participant in a call. In some situations, it is appropriate for an application to remove a participant from an active call. This action can be done before or after the participant answers the call. When an active caller is removed, they are immediately dropped from the call with no pre- or post-removal notification. When an invited participant is removed, any outstanding add participant request is canceled. + * Invite participants to the active call. For more information about how to handle operations, see commsOperation. * @param body The request body * @return a {@link InviteParticipantsOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here + * @see Find more info here */ @jakarta.annotation.Nullable public InviteParticipantsOperation post(@jakarta.annotation.Nonnull final InvitePostRequestBody body) { return post(body, null); } /** - * Delete a specific participant in a call. In some situations, it is appropriate for an application to remove a participant from an active call. This action can be done before or after the participant answers the call. When an active caller is removed, they are immediately dropped from the call with no pre- or post-removal notification. When an invited participant is removed, any outstanding add participant request is canceled. + * Invite participants to the active call. For more information about how to handle operations, see commsOperation. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InviteParticipantsOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here + * @see Find more info here */ @jakarta.annotation.Nullable public InviteParticipantsOperation post(@jakarta.annotation.Nonnull final InvitePostRequestBody body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -63,7 +63,7 @@ public InviteParticipantsOperation post(@jakarta.annotation.Nonnull final Invite return this.requestAdapter.send(requestInfo, errorMapping, InviteParticipantsOperation::createFromDiscriminatorValue); } /** - * Delete a specific participant in a call. In some situations, it is appropriate for an application to remove a participant from an active call. This action can be done before or after the participant answers the call. When an active caller is removed, they are immediately dropped from the call with no pre- or post-removal notification. When an invited participant is removed, any outstanding add participant request is canceled. + * Invite participants to the active call. For more information about how to handle operations, see commsOperation. * @param body The request body * @return a {@link RequestInformation} */ @@ -72,7 +72,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Delete a specific participant in a call. In some situations, it is appropriate for an application to remove a participant from an active call. This action can be done before or after the participant answers the call. When an active caller is removed, they are immediately dropped from the call with no pre- or post-removal notification. When an invited participant is removed, any outstanding add participant request is canceled. + * Invite participants to the active call. For more information about how to handle operations, see commsOperation. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/communications/calls/item/participants/item/ParticipantItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/communications/calls/item/participants/item/ParticipantItemRequestBuilder.java index bd2e106adfb..f2ff3d31b55 100644 --- a/src/main/java/com/microsoft/graph/generated/communications/calls/item/participants/item/ParticipantItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/communications/calls/item/participants/item/ParticipantItemRequestBuilder.java @@ -64,18 +64,16 @@ public ParticipantItemRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/communications/calls/{call%2Did}/participants/{participant%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a specific participant in a call. In some situations, it is appropriate for an application to remove a participant from an active call. This action can be done before or after the participant answers the call. When an active caller is removed, they are immediately dropped from the call with no pre- or post-removal notification. When an invited participant is removed, any outstanding add participant request is canceled. + * Delete navigation property participants for communications * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a specific participant in a call. In some situations, it is appropriate for an application to remove a participant from an active call. This action can be done before or after the participant answers the call. When an active caller is removed, they are immediately dropped from the call with no pre- or post-removal notification. When an invited participant is removed, any outstanding add participant request is canceled. + * Delete navigation property participants for communications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -84,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a participant object. + * Get participants from communications * @return a {@link Participant} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Participant get() { return get(null); } /** - * Retrieve the properties and relationships of a participant object. + * Get participants from communications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Participant} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Participant get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +129,7 @@ public Participant patch(@jakarta.annotation.Nonnull final Participant body, @ja return this.requestAdapter.send(requestInfo, errorMapping, Participant::createFromDiscriminatorValue); } /** - * Delete a specific participant in a call. In some situations, it is appropriate for an application to remove a participant from an active call. This action can be done before or after the participant answers the call. When an active caller is removed, they are immediately dropped from the call with no pre- or post-removal notification. When an invited participant is removed, any outstanding add participant request is canceled. + * Delete navigation property participants for communications * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +137,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a specific participant in a call. In some situations, it is appropriate for an application to remove a participant from an active call. This action can be done before or after the participant answers the call. When an active caller is removed, they are immediately dropped from the call with no pre- or post-removal notification. When an invited participant is removed, any outstanding add participant request is canceled. + * Delete navigation property participants for communications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -153,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a participant object. + * Get participants from communications * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -161,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a participant object. + * Get participants from communications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -213,7 +209,7 @@ public ParticipantItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final S public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a participant object. + * Get participants from communications */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/communications/onlinemeetings/OnlineMeetingsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/communications/onlinemeetings/OnlineMeetingsRequestBuilder.java index 7debedd3228..2de9d44c1d5 100644 --- a/src/main/java/com/microsoft/graph/generated/communications/onlinemeetings/OnlineMeetingsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/communications/onlinemeetings/OnlineMeetingsRequestBuilder.java @@ -69,21 +69,19 @@ public OnlineMeetingsRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/communications/onlineMeetings{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the properties and relationships of an onlineMeeting object. For example, you can: Teams live event attendee report (deprecated) is an online meeting artifact. For details, see Online meeting artifacts and permissions. + * Get onlineMeetings from communications * @return a {@link OnlineMeetingCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnlineMeetingCollectionResponse get() { return get(null); } /** - * Retrieve the properties and relationships of an onlineMeeting object. For example, you can: Teams live event attendee report (deprecated) is an online meeting artifact. For details, see Online meeting artifacts and permissions. + * Get onlineMeetings from communications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnlineMeetingCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnlineMeetingCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -118,7 +116,7 @@ public OnlineMeeting post(@jakarta.annotation.Nonnull final OnlineMeeting body, return this.requestAdapter.send(requestInfo, errorMapping, OnlineMeeting::createFromDiscriminatorValue); } /** - * Retrieve the properties and relationships of an onlineMeeting object. For example, you can: Teams live event attendee report (deprecated) is an online meeting artifact. For details, see Online meeting artifacts and permissions. + * Get onlineMeetings from communications * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -126,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of an onlineMeeting object. For example, you can: Teams live event attendee report (deprecated) is an online meeting artifact. For details, see Online meeting artifacts and permissions. + * Get onlineMeetings from communications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -172,7 +170,7 @@ public OnlineMeetingsRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new OnlineMeetingsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the properties and relationships of an onlineMeeting object. For example, you can: Teams live event attendee report (deprecated) is an online meeting artifact. For details, see Online meeting artifacts and permissions. + * Get onlineMeetings from communications */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/communications/onlinemeetings/item/attendancereports/item/attendancerecords/AttendanceRecordsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/communications/onlinemeetings/item/attendancereports/item/attendancerecords/AttendanceRecordsRequestBuilder.java index d0acd889d3d..be955d34973 100644 --- a/src/main/java/com/microsoft/graph/generated/communications/onlinemeetings/item/attendancereports/item/attendancerecords/AttendanceRecordsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/communications/onlinemeetings/item/attendancereports/item/attendancerecords/AttendanceRecordsRequestBuilder.java @@ -60,21 +60,19 @@ public AttendanceRecordsRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/communications/onlineMeetings/{onlineMeeting%2Did}/attendanceReports/{meetingAttendanceReport%2Did}/attendanceRecords{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of attendanceRecord objects and their properties. + * List of attendance records of an attendance report. Read-only. * @return a {@link AttendanceRecordCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttendanceRecordCollectionResponse get() { return get(null); } /** - * Get a list of attendanceRecord objects and their properties. + * List of attendance records of an attendance report. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttendanceRecordCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttendanceRecordCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public AttendanceRecord post(@jakarta.annotation.Nonnull final AttendanceRecord return this.requestAdapter.send(requestInfo, errorMapping, AttendanceRecord::createFromDiscriminatorValue); } /** - * Get a list of attendanceRecord objects and their properties. + * List of attendance records of an attendance report. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of attendanceRecord objects and their properties. + * List of attendance records of an attendance report. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public AttendanceRecordsRequestBuilder withUrl(@jakarta.annotation.Nonnull final return new AttendanceRecordsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of attendanceRecord objects and their properties. + * List of attendance records of an attendance report. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/communications/onlinemeetings/item/attendeereport/AttendeeReportRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/communications/onlinemeetings/item/attendeereport/AttendeeReportRequestBuilder.java index ba774af437f..b9f1da96130 100644 --- a/src/main/java/com/microsoft/graph/generated/communications/onlinemeetings/item/attendeereport/AttendeeReportRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/communications/onlinemeetings/item/attendeereport/AttendeeReportRequestBuilder.java @@ -39,7 +39,6 @@ public AttendeeReportRequestBuilder(@jakarta.annotation.Nonnull final String raw * Get attendeeReport for the navigation property onlineMeetings from communications * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -50,7 +49,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/communications/onlinemeetings/item/getvirtualappointmentjoinweburl/GetVirtualAppointmentJoinWebUrlRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/communications/onlinemeetings/item/getvirtualappointmentjoinweburl/GetVirtualAppointmentJoinWebUrlRequestBuilder.java index d0f205f438e..9d603634171 100644 --- a/src/main/java/com/microsoft/graph/generated/communications/onlinemeetings/item/getvirtualappointmentjoinweburl/GetVirtualAppointmentJoinWebUrlRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/communications/onlinemeetings/item/getvirtualappointmentjoinweburl/GetVirtualAppointmentJoinWebUrlRequestBuilder.java @@ -35,19 +35,21 @@ public GetVirtualAppointmentJoinWebUrlRequestBuilder(@jakarta.annotation.Nonnull super(requestAdapter, "{+baseurl}/communications/onlineMeetings/{onlineMeeting%2Did}/getVirtualAppointmentJoinWebUrl()", rawUrl); } /** - * Invoke function getVirtualAppointmentJoinWebUrl + * Get a join web URL for a Microsoft Virtual Appointment. This web URL includes enhanced business-to-customer experiences such as mobile browser join and virtual lobby rooms. With Teams Premium, you can configure a custom lobby room experience for attendees by adding your company logo and access the Virtual Appointments usage report for organizational analytics. * @return a {@link GetVirtualAppointmentJoinWebUrlGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetVirtualAppointmentJoinWebUrlGetResponse get() { return get(null); } /** - * Invoke function getVirtualAppointmentJoinWebUrl + * Get a join web URL for a Microsoft Virtual Appointment. This web URL includes enhanced business-to-customer experiences such as mobile browser join and virtual lobby rooms. With Teams Premium, you can configure a custom lobby room experience for attendees by adding your company logo and access the Virtual Appointments usage report for organizational analytics. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GetVirtualAppointmentJoinWebUrlGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetVirtualAppointmentJoinWebUrlGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -57,7 +59,7 @@ public GetVirtualAppointmentJoinWebUrlGetResponse get(@jakarta.annotation.Nullab return this.requestAdapter.send(requestInfo, errorMapping, GetVirtualAppointmentJoinWebUrlGetResponse::createFromDiscriminatorValue); } /** - * Invoke function getVirtualAppointmentJoinWebUrl + * Get a join web URL for a Microsoft Virtual Appointment. This web URL includes enhanced business-to-customer experiences such as mobile browser join and virtual lobby rooms. With Teams Premium, you can configure a custom lobby room experience for attendees by adding your company logo and access the Virtual Appointments usage report for organizational analytics. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -65,7 +67,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getVirtualAppointmentJoinWebUrl + * Get a join web URL for a Microsoft Virtual Appointment. This web URL includes enhanced business-to-customer experiences such as mobile browser join and virtual lobby rooms. With Teams Premium, you can configure a custom lobby room experience for attendees by adding your company logo and access the Virtual Appointments usage report for organizational analytics. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/communications/onlinemeetings/item/recordings/RecordingsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/communications/onlinemeetings/item/recordings/RecordingsRequestBuilder.java index 589c4e5a42e..ac3a4205afe 100644 --- a/src/main/java/com/microsoft/graph/generated/communications/onlinemeetings/item/recordings/RecordingsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/communications/onlinemeetings/item/recordings/RecordingsRequestBuilder.java @@ -60,7 +60,7 @@ public RecordingsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/communications/onlineMeetings/{onlineMeeting%2Did}/recordings{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a callRecording object associated with a scheduled onlineMeeting. This API doesn't support getting call recordings from channel meetings. For a recording, this API returns the metadata of the single recording associated with the online meeting. For the content of a recording, this API returns the stream of bytes associated with the recording. + * The recordings of an online meeting. Read-only. * @return a {@link CallRecordingCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public CallRecordingCollectionResponse get() { return get(null); } /** - * Get a callRecording object associated with a scheduled onlineMeeting. This API doesn't support getting call recordings from channel meetings. For a recording, this API returns the metadata of the single recording associated with the online meeting. For the content of a recording, this API returns the stream of bytes associated with the recording. + * The recordings of an online meeting. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CallRecordingCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public CallRecording post(@jakarta.annotation.Nonnull final CallRecording body, return this.requestAdapter.send(requestInfo, errorMapping, CallRecording::createFromDiscriminatorValue); } /** - * Get a callRecording object associated with a scheduled onlineMeeting. This API doesn't support getting call recordings from channel meetings. For a recording, this API returns the metadata of the single recording associated with the online meeting. For the content of a recording, this API returns the stream of bytes associated with the recording. + * The recordings of an online meeting. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a callRecording object associated with a scheduled onlineMeeting. This API doesn't support getting call recordings from channel meetings. For a recording, this API returns the metadata of the single recording associated with the online meeting. For the content of a recording, this API returns the stream of bytes associated with the recording. + * The recordings of an online meeting. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public RecordingsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new RecordingsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a callRecording object associated with a scheduled onlineMeeting. This API doesn't support getting call recordings from channel meetings. For a recording, this API returns the metadata of the single recording associated with the online meeting. For the content of a recording, this API returns the stream of bytes associated with the recording. + * The recordings of an online meeting. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/communications/onlinemeetings/item/recordings/item/CallRecordingItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/communications/onlinemeetings/item/recordings/item/CallRecordingItemRequestBuilder.java index a75b875a8a3..3513e4e83e6 100644 --- a/src/main/java/com/microsoft/graph/generated/communications/onlinemeetings/item/recordings/item/CallRecordingItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/communications/onlinemeetings/item/recordings/item/CallRecordingItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get a callRecording object associated with a scheduled onlineMeeting. This API doesn't support getting call recordings from channel meetings. For a recording, this API returns the metadata of the single recording associated with the online meeting. For the content of a recording, this API returns the stream of bytes associated with the recording. + * The recordings of an online meeting. Read-only. * @return a {@link CallRecording} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CallRecording get() { return get(null); } /** - * Get a callRecording object associated with a scheduled onlineMeeting. This API doesn't support getting call recordings from channel meetings. For a recording, this API returns the metadata of the single recording associated with the online meeting. For the content of a recording, this API returns the stream of bytes associated with the recording. + * The recordings of an online meeting. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CallRecording} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CallRecording get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get a callRecording object associated with a scheduled onlineMeeting. This API doesn't support getting call recordings from channel meetings. For a recording, this API returns the metadata of the single recording associated with the online meeting. For the content of a recording, this API returns the stream of bytes associated with the recording. + * The recordings of an online meeting. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a callRecording object associated with a scheduled onlineMeeting. This API doesn't support getting call recordings from channel meetings. For a recording, this API returns the metadata of the single recording associated with the online meeting. For the content of a recording, this API returns the stream of bytes associated with the recording. + * The recordings of an online meeting. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public CallRecordingItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get a callRecording object associated with a scheduled onlineMeeting. This API doesn't support getting call recordings from channel meetings. For a recording, this API returns the metadata of the single recording associated with the online meeting. For the content of a recording, this API returns the stream of bytes associated with the recording. + * The recordings of an online meeting. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/communications/onlinemeetings/item/transcripts/TranscriptsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/communications/onlinemeetings/item/transcripts/TranscriptsRequestBuilder.java index e075a2c4988..51b871df8a6 100644 --- a/src/main/java/com/microsoft/graph/generated/communications/onlinemeetings/item/transcripts/TranscriptsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/communications/onlinemeetings/item/transcripts/TranscriptsRequestBuilder.java @@ -60,21 +60,19 @@ public TranscriptsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/communications/onlineMeetings/{onlineMeeting%2Did}/transcripts{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of callTranscript objects associated with a scheduled onlineMeeting. This API doesn't support getting call transcripts from channel meetings. + * The transcripts of an online meeting. Read-only. * @return a {@link CallTranscriptCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CallTranscriptCollectionResponse get() { return get(null); } /** - * Retrieve the list of callTranscript objects associated with a scheduled onlineMeeting. This API doesn't support getting call transcripts from channel meetings. + * The transcripts of an online meeting. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CallTranscriptCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CallTranscriptCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public CallTranscript post(@jakarta.annotation.Nonnull final CallTranscript body return this.requestAdapter.send(requestInfo, errorMapping, CallTranscript::createFromDiscriminatorValue); } /** - * Retrieve the list of callTranscript objects associated with a scheduled onlineMeeting. This API doesn't support getting call transcripts from channel meetings. + * The transcripts of an online meeting. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of callTranscript objects associated with a scheduled onlineMeeting. This API doesn't support getting call transcripts from channel meetings. + * The transcripts of an online meeting. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public TranscriptsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new TranscriptsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of callTranscript objects associated with a scheduled onlineMeeting. This API doesn't support getting call transcripts from channel meetings. + * The transcripts of an online meeting. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/communications/onlinemeetings/item/transcripts/item/CallTranscriptItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/communications/onlinemeetings/item/transcripts/item/CallTranscriptItemRequestBuilder.java index 3189c8a756c..d4e19de3b31 100644 --- a/src/main/java/com/microsoft/graph/generated/communications/onlinemeetings/item/transcripts/item/CallTranscriptItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/communications/onlinemeetings/item/transcripts/item/CallTranscriptItemRequestBuilder.java @@ -73,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a callTranscript object associated with a scheduled onlineMeeting. This API doesn't support getting call transcripts from channel meetings. Retrieving the transcript returns the metadata of the single transcript associated with the online meeting. Retrieving the content of the transcript returns the stream of text associated with the transcript. + * The transcripts of an online meeting. Read-only. * @return a {@link CallTranscript} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CallTranscript get() { return get(null); } /** - * Retrieve a callTranscript object associated with a scheduled onlineMeeting. This API doesn't support getting call transcripts from channel meetings. Retrieving the transcript returns the metadata of the single transcript associated with the online meeting. Retrieving the content of the transcript returns the stream of text associated with the transcript. + * The transcripts of an online meeting. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CallTranscript} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CallTranscript get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -142,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a callTranscript object associated with a scheduled onlineMeeting. This API doesn't support getting call transcripts from channel meetings. Retrieving the transcript returns the metadata of the single transcript associated with the online meeting. Retrieving the content of the transcript returns the stream of text associated with the transcript. + * The transcripts of an online meeting. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -150,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a callTranscript object associated with a scheduled onlineMeeting. This API doesn't support getting call transcripts from channel meetings. Retrieving the transcript returns the metadata of the single transcript associated with the online meeting. Retrieving the content of the transcript returns the stream of text associated with the transcript. + * The transcripts of an online meeting. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -202,7 +200,7 @@ public CallTranscriptItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fina public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve a callTranscript object associated with a scheduled onlineMeeting. This API doesn't support getting call transcripts from channel meetings. Retrieving the transcript returns the metadata of the single transcript associated with the online meeting. Retrieving the content of the transcript returns the stream of text associated with the transcript. + * The transcripts of an online meeting. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/communications/onlinemeetings/item/transcripts/item/content/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/communications/onlinemeetings/item/transcripts/item/content/ContentRequestBuilder.java index 19f23b9661b..15103c722b1 100644 --- a/src/main/java/com/microsoft/graph/generated/communications/onlinemeetings/item/transcripts/item/content/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/communications/onlinemeetings/item/transcripts/item/content/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * The content of the transcript. Read-only. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/communications/onlinemeetings/item/transcripts/item/metadatacontent/MetadataContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/communications/onlinemeetings/item/transcripts/item/metadatacontent/MetadataContentRequestBuilder.java index a0a6bca40c8..c1b285db6ce 100644 --- a/src/main/java/com/microsoft/graph/generated/communications/onlinemeetings/item/transcripts/item/metadatacontent/MetadataContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/communications/onlinemeetings/item/transcripts/item/metadatacontent/MetadataContentRequestBuilder.java @@ -39,7 +39,6 @@ public MetadataContentRequestBuilder(@jakarta.annotation.Nonnull final String ra * The time-aligned metadata of the utterances in the transcript. Read-only. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -50,7 +49,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/communications/presences/PresencesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/communications/presences/PresencesRequestBuilder.java index 4ad04bb7a4d..392e021ba36 100644 --- a/src/main/java/com/microsoft/graph/generated/communications/presences/PresencesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/communications/presences/PresencesRequestBuilder.java @@ -60,7 +60,7 @@ public PresencesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/communications/presences{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a user's presence information. + * Get presences from communications * @return a {@link PresenceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public PresenceCollectionResponse get() { return get(null); } /** - * Get a user's presence information. + * Get presences from communications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PresenceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public Presence post(@jakarta.annotation.Nonnull final Presence body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, Presence::createFromDiscriminatorValue); } /** - * Get a user's presence information. + * Get presences from communications * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a user's presence information. + * Get presences from communications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public PresencesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new PresencesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a user's presence information. + * Get presences from communications */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/communications/presences/item/PresenceItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/communications/presences/item/PresenceItemRequestBuilder.java index 4d2d2e420c9..7dbcaec0c49 100644 --- a/src/main/java/com/microsoft/graph/generated/communications/presences/item/PresenceItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/communications/presences/item/PresenceItemRequestBuilder.java @@ -100,21 +100,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get a user's presence information. + * Get presences from communications * @return a {@link Presence} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Presence get() { return get(null); } /** - * Get a user's presence information. + * Get presences from communications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Presence} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Presence get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -169,7 +167,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get a user's presence information. + * Get presences from communications * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -177,7 +175,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a user's presence information. + * Get presences from communications * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -229,7 +227,7 @@ public PresenceItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get a user's presence information. + * Get presences from communications */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/connections/item/groups/GroupsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/connections/item/groups/GroupsRequestBuilder.java index e842223c5a4..6324d9e7ef2 100644 --- a/src/main/java/com/microsoft/graph/generated/connections/item/groups/GroupsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/connections/item/groups/GroupsRequestBuilder.java @@ -60,7 +60,7 @@ public GroupsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/connections/{externalConnection%2Did}/groups{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get an externalGroup object. + * Get groups from connections * @return a {@link ExternalGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public ExternalGroupCollectionResponse get() { return get(null); } /** - * Get an externalGroup object. + * Get groups from connections * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExternalGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -82,23 +82,21 @@ public ExternalGroupCollectionResponse get(@jakarta.annotation.Nullable final ja return this.requestAdapter.send(requestInfo, errorMapping, ExternalGroupCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new externalGroup object. + * Create new navigation property to groups for connections * @param body The request body * @return a {@link ExternalGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ExternalGroup post(@jakarta.annotation.Nonnull final ExternalGroup body) { return post(body, null); } /** - * Create a new externalGroup object. + * Create new navigation property to groups for connections * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExternalGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ExternalGroup post(@jakarta.annotation.Nonnull final ExternalGroup body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ExternalGroup post(@jakarta.annotation.Nonnull final ExternalGroup body, return this.requestAdapter.send(requestInfo, errorMapping, ExternalGroup::createFromDiscriminatorValue); } /** - * Get an externalGroup object. + * Get groups from connections * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an externalGroup object. + * Get groups from connections * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -129,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new externalGroup object. + * Create new navigation property to groups for connections * @param body The request body * @return a {@link RequestInformation} */ @@ -138,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new externalGroup object. + * Create new navigation property to groups for connections * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -163,7 +161,7 @@ public GroupsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw return new GroupsRequestBuilder(rawUrl, requestAdapter); } /** - * Get an externalGroup object. + * Get groups from connections */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/connections/item/groups/item/ExternalGroupItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/connections/item/groups/item/ExternalGroupItemRequestBuilder.java index e95bad08a46..a7290cb2933 100644 --- a/src/main/java/com/microsoft/graph/generated/connections/item/groups/item/ExternalGroupItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/connections/item/groups/item/ExternalGroupItemRequestBuilder.java @@ -46,18 +46,16 @@ public ExternalGroupItemRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/connections/{externalConnection%2Did}/groups/{externalGroup%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an externalGroup object. + * Delete navigation property groups for connections * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an externalGroup object. + * Delete navigation property groups for connections * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get an externalGroup object. + * Get groups from connections * @return a {@link ExternalGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ExternalGroup get() { return get(null); } /** - * Get an externalGroup object. + * Get groups from connections * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExternalGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ExternalGroup get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public ExternalGroup get(@jakarta.annotation.Nullable final java.util.function.C return this.requestAdapter.send(requestInfo, errorMapping, ExternalGroup::createFromDiscriminatorValue); } /** - * Update the properties of an externalGroup object. + * Update the navigation property groups in connections * @param body The request body * @return a {@link ExternalGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ExternalGroup patch(@jakarta.annotation.Nonnull final ExternalGroup body) { return patch(body, null); } /** - * Update the properties of an externalGroup object. + * Update the navigation property groups in connections * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExternalGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ExternalGroup patch(@jakarta.annotation.Nonnull final ExternalGroup body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public ExternalGroup patch(@jakarta.annotation.Nonnull final ExternalGroup body, return this.requestAdapter.send(requestInfo, errorMapping, ExternalGroup::createFromDiscriminatorValue); } /** - * Delete an externalGroup object. + * Delete navigation property groups for connections * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an externalGroup object. + * Delete navigation property groups for connections * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get an externalGroup object. + * Get groups from connections * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an externalGroup object. + * Get groups from connections * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an externalGroup object. + * Update the navigation property groups in connections * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an externalGroup object. + * Update the navigation property groups in connections * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public ExternalGroupItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get an externalGroup object. + * Get groups from connections */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/connections/item/groups/item/members/MembersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/connections/item/groups/item/members/MembersRequestBuilder.java index e401fd00e19..ff2d0af8ce7 100644 --- a/src/main/java/com/microsoft/graph/generated/connections/item/groups/item/members/MembersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/connections/item/groups/item/members/MembersRequestBuilder.java @@ -82,23 +82,21 @@ public IdentityCollectionResponse get(@jakarta.annotation.Nullable final java.ut return this.requestAdapter.send(requestInfo, errorMapping, IdentityCollectionResponse::createFromDiscriminatorValue); } /** - * Create an identity resource for a new member in an externalGroup. + * Create new navigation property to members for connections * @param body The request body * @return a {@link Identity} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Identity post(@jakarta.annotation.Nonnull final Identity body) { return post(body, null); } /** - * Create an identity resource for a new member in an externalGroup. + * Create new navigation property to members for connections * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Identity} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Identity post(@jakarta.annotation.Nonnull final Identity body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -129,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an identity resource for a new member in an externalGroup. + * Create new navigation property to members for connections * @param body The request body * @return a {@link RequestInformation} */ @@ -138,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an identity resource for a new member in an externalGroup. + * Create new navigation property to members for connections * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/connections/item/groups/item/members/item/IdentityItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/connections/item/groups/item/members/item/IdentityItemRequestBuilder.java index b433946559e..c909237b1aa 100644 --- a/src/main/java/com/microsoft/graph/generated/connections/item/groups/item/members/item/IdentityItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/connections/item/groups/item/members/item/IdentityItemRequestBuilder.java @@ -37,18 +37,16 @@ public IdentityItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/connections/{externalConnection%2Did}/groups/{externalGroup%2Did}/members/{identity%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an identity resource to remove the corresponding member from an externalGroup. + * Delete navigation property members for connections * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an identity resource to remove the corresponding member from an externalGroup. + * Delete navigation property members for connections * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -104,7 +102,7 @@ public Identity patch(@jakarta.annotation.Nonnull final Identity body, @jakarta. return this.requestAdapter.send(requestInfo, errorMapping, Identity::createFromDiscriminatorValue); } /** - * Delete an identity resource to remove the corresponding member from an externalGroup. + * Delete navigation property members for connections * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -112,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an identity resource to remove the corresponding member from an externalGroup. + * Delete navigation property members for connections * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/connections/item/items/ItemsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/connections/item/items/ItemsRequestBuilder.java index 0626694ff7d..2b6e21b509f 100644 --- a/src/main/java/com/microsoft/graph/generated/connections/item/items/ItemsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/connections/item/items/ItemsRequestBuilder.java @@ -60,7 +60,7 @@ public ItemsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/connections/{externalConnection%2Did}/items{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Read the properties and relationships of an externalItem object. + * Get items from connections * @return a {@link ExternalItemCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public ExternalItemCollectionResponse get() { return get(null); } /** - * Read the properties and relationships of an externalItem object. + * Get items from connections * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExternalItemCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public ExternalItem post(@jakarta.annotation.Nonnull final ExternalItem body, @j return this.requestAdapter.send(requestInfo, errorMapping, ExternalItem::createFromDiscriminatorValue); } /** - * Read the properties and relationships of an externalItem object. + * Get items from connections * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of an externalItem object. + * Get items from connections * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public ItemsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new ItemsRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of an externalItem object. + * Get items from connections */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/connections/item/items/item/ExternalItemItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/connections/item/items/item/ExternalItemItemRequestBuilder.java index 4aecbb6368c..3616e0e9c81 100644 --- a/src/main/java/com/microsoft/graph/generated/connections/item/items/item/ExternalItemItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/connections/item/items/item/ExternalItemItemRequestBuilder.java @@ -55,18 +55,16 @@ public ExternalItemItemRequestBuilder(@jakarta.annotation.Nonnull final String r super(requestAdapter, "{+baseurl}/connections/{externalConnection%2Did}/items/{externalItem%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an externalItem object. + * Delete navigation property items for connections * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an externalItem object. + * Delete navigation property items for connections * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -75,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of an externalItem object. + * Get items from connections * @return a {@link ExternalItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ExternalItem get() { return get(null); } /** - * Read the properties and relationships of an externalItem object. + * Get items from connections * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExternalItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ExternalItem get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +120,7 @@ public ExternalItem put(@jakarta.annotation.Nonnull final ExternalItem body, @ja return this.requestAdapter.send(requestInfo, errorMapping, ExternalItem::createFromDiscriminatorValue); } /** - * Delete an externalItem object. + * Delete navigation property items for connections * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +128,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an externalItem object. + * Delete navigation property items for connections * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -144,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of an externalItem object. + * Get items from connections * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -152,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of an externalItem object. + * Get items from connections * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -204,7 +200,7 @@ public ExternalItemItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of an externalItem object. + * Get items from connections */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/connections/item/operations/OperationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/connections/item/operations/OperationsRequestBuilder.java index 68e55fc54e2..dfcce7cdc04 100644 --- a/src/main/java/com/microsoft/graph/generated/connections/item/operations/OperationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/connections/item/operations/OperationsRequestBuilder.java @@ -60,7 +60,7 @@ public OperationsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/connections/{externalConnection%2Did}/operations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Read the properties and relationships of a connectionOperation object. + * Get operations from connections * @return a {@link ConnectionOperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public ConnectionOperationCollectionResponse get() { return get(null); } /** - * Read the properties and relationships of a connectionOperation object. + * Get operations from connections * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConnectionOperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public ConnectionOperation post(@jakarta.annotation.Nonnull final ConnectionOper return this.requestAdapter.send(requestInfo, errorMapping, ConnectionOperation::createFromDiscriminatorValue); } /** - * Read the properties and relationships of a connectionOperation object. + * Get operations from connections * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a connectionOperation object. + * Get operations from connections * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public OperationsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new OperationsRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of a connectionOperation object. + * Get operations from connections */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/connections/item/operations/item/ConnectionOperationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/connections/item/operations/item/ConnectionOperationItemRequestBuilder.java index 9b11b8141f5..8fc6f0d0037 100644 --- a/src/main/java/com/microsoft/graph/generated/connections/item/operations/item/ConnectionOperationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/connections/item/operations/item/ConnectionOperationItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a connectionOperation object. + * Get operations from connections * @return a {@link ConnectionOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConnectionOperation get() { return get(null); } /** - * Read the properties and relationships of a connectionOperation object. + * Get operations from connections * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConnectionOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConnectionOperation get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a connectionOperation object. + * Get operations from connections * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a connectionOperation object. + * Get operations from connections * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public ConnectionOperationItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a connectionOperation object. + * Get operations from connections */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/connections/item/schema/SchemaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/connections/item/schema/SchemaRequestBuilder.java index 659170128f4..f2a0156b36f 100644 --- a/src/main/java/com/microsoft/graph/generated/connections/item/schema/SchemaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/connections/item/schema/SchemaRequestBuilder.java @@ -37,21 +37,19 @@ public SchemaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/connections/{externalConnection%2Did}/schema{?%24expand,%24select}", rawUrl); } /** - * Read the properties and relationships of a schema object. + * Get schema from connections * @return a {@link Schema} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Schema get() { return get(null); } /** - * Read the properties and relationships of a schema object. + * Get schema from connections * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Schema} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Schema get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -61,23 +59,21 @@ public Schema get(@jakarta.annotation.Nullable final java.util.function.Consumer return this.requestAdapter.send(requestInfo, errorMapping, Schema::createFromDiscriminatorValue); } /** - * Create a new schema object. + * Update the navigation property schema in connections * @param body The request body * @return a {@link Schema} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Schema patch(@jakarta.annotation.Nonnull final Schema body) { return patch(body, null); } /** - * Create a new schema object. + * Update the navigation property schema in connections * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Schema} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Schema patch(@jakarta.annotation.Nonnull final Schema body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -88,7 +84,7 @@ public Schema patch(@jakarta.annotation.Nonnull final Schema body, @jakarta.anno return this.requestAdapter.send(requestInfo, errorMapping, Schema::createFromDiscriminatorValue); } /** - * Read the properties and relationships of a schema object. + * Get schema from connections * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -96,7 +92,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a schema object. + * Get schema from connections * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -108,7 +104,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new schema object. + * Update the navigation property schema in connections * @param body The request body * @return a {@link RequestInformation} */ @@ -117,7 +113,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Create a new schema object. + * Update the navigation property schema in connections * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -142,7 +138,7 @@ public SchemaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw return new SchemaRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of a schema object. + * Get schema from connections */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/contacts/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/contacts/delta/DeltaRequestBuilder.java index 7bbe39d0914..2b2e3fc210f 100644 --- a/src/main/java/com/microsoft/graph/generated/contacts/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/contacts/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/contacts/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Get newly created, updated, or deleted organizational contacts without having to perform a full read of the entire collection. See change tracking for details. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Get newly created, updated, or deleted organizational contacts without having to perform a full read of the entire collection. See change tracking for details. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Get newly created, updated, or deleted organizational contacts without having to perform a full read of the entire collection. See change tracking for details. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Get newly created, updated, or deleted organizational contacts without having to perform a full read of the entire collection. See change tracking for details. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Get newly created, updated, or deleted organizational contacts without having to perform a full read of the entire collection. See change tracking for details. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/contacts/item/directreports/DirectReportsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/contacts/item/directreports/DirectReportsRequestBuilder.java index b90645e52a9..2c6e09a23ea 100644 --- a/src/main/java/com/microsoft/graph/generated/contacts/item/directreports/DirectReportsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/contacts/item/directreports/DirectReportsRequestBuilder.java @@ -80,7 +80,6 @@ public DirectReportsRequestBuilder(@jakarta.annotation.Nonnull final String rawU * The contact's direct reports. (The users and contacts that have their manager property set to this contact.) Read-only. Nullable. Supports $expand. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get() { @@ -91,7 +90,6 @@ public DirectoryObjectCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/contacts/item/manager/ManagerRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/contacts/item/manager/ManagerRequestBuilder.java index c1a6d90db1d..82e8b8d1f06 100644 --- a/src/main/java/com/microsoft/graph/generated/contacts/item/manager/ManagerRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/contacts/item/manager/ManagerRequestBuilder.java @@ -37,21 +37,19 @@ public ManagerRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/contacts/{orgContact%2Did}/manager{?%24expand,%24select}", rawUrl); } /** - * Get this organizational contact's manager. + * The user or contact that is this contact's manager. Read-only. Supports $expand and $filter (eq) by id. * @return a {@link DirectoryObject} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObject get() { return get(null); } /** - * Get this organizational contact's manager. + * The user or contact that is this contact's manager. Read-only. Supports $expand and $filter (eq) by id. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DirectoryObject} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObject get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -61,7 +59,7 @@ public DirectoryObject get(@jakarta.annotation.Nullable final java.util.function return this.requestAdapter.send(requestInfo, errorMapping, DirectoryObject::createFromDiscriminatorValue); } /** - * Get this organizational contact's manager. + * The user or contact that is this contact's manager. Read-only. Supports $expand and $filter (eq) by id. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -69,7 +67,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get this organizational contact's manager. + * The user or contact that is this contact's manager. Read-only. Supports $expand and $filter (eq) by id. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -91,7 +89,7 @@ public ManagerRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new ManagerRequestBuilder(rawUrl, requestAdapter); } /** - * Get this organizational contact's manager. + * The user or contact that is this contact's manager. Read-only. Supports $expand and $filter (eq) by id. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/contacts/item/memberof/MemberOfRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/contacts/item/memberof/MemberOfRequestBuilder.java index b66511b76fe..4cb97e54c1f 100644 --- a/src/main/java/com/microsoft/graph/generated/contacts/item/memberof/MemberOfRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/contacts/item/memberof/MemberOfRequestBuilder.java @@ -80,7 +80,6 @@ public MemberOfRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ * Groups that this contact is a member of. Read-only. Nullable. Supports $expand. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get() { @@ -91,7 +90,6 @@ public DirectoryObjectCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/contacts/item/transitivememberof/TransitiveMemberOfRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/contacts/item/transitivememberof/TransitiveMemberOfRequestBuilder.java index 6c15bff14f8..ca489d917c9 100644 --- a/src/main/java/com/microsoft/graph/generated/contacts/item/transitivememberof/TransitiveMemberOfRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/contacts/item/transitivememberof/TransitiveMemberOfRequestBuilder.java @@ -80,7 +80,6 @@ public TransitiveMemberOfRequestBuilder(@jakarta.annotation.Nonnull final String * Groups that this contact is a member of, including groups that the contact is nested under. Read-only. Nullable. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get() { @@ -91,7 +90,6 @@ public DirectoryObjectCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/contracts/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/contracts/delta/DeltaRequestBuilder.java index 5a6a752f0f2..2fc4d038a90 100644 --- a/src/main/java/com/microsoft/graph/generated/contracts/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/contracts/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/contracts/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Get newly created, updated, or deleted directory objects without performing a full read of the entire directoryObject collection. For more information about the delta function, see Use delta query to track changes in Microsoft Graph data for details. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Get newly created, updated, or deleted directory objects without performing a full read of the entire directoryObject collection. For more information about the delta function, see Use delta query to track changes in Microsoft Graph data for details. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Get newly created, updated, or deleted directory objects without performing a full read of the entire directoryObject collection. For more information about the delta function, see Use delta query to track changes in Microsoft Graph data for details. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Get newly created, updated, or deleted directory objects without performing a full read of the entire directoryObject collection. For more information about the delta function, see Use delta query to track changes in Microsoft Graph data for details. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Get newly created, updated, or deleted directory objects without performing a full read of the entire directoryObject collection. For more information about the delta function, see Use delta query to track changes in Microsoft Graph data for details. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/DeviceAppManagementRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/DeviceAppManagementRequestBuilder.java index c8129dbf898..e6886e0cf91 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/DeviceAppManagementRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/DeviceAppManagementRequestBuilder.java @@ -200,7 +200,7 @@ public DeviceAppManagement get(@jakarta.annotation.Nullable final java.util.func * @param body The request body * @return a {@link DeviceAppManagement} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here + * @see Find more info here */ @jakarta.annotation.Nullable public DeviceAppManagement patch(@jakarta.annotation.Nonnull final DeviceAppManagement body) { @@ -212,7 +212,7 @@ public DeviceAppManagement patch(@jakarta.annotation.Nonnull final DeviceAppMana * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceAppManagement} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here + * @see Find more info here */ @jakarta.annotation.Nullable public DeviceAppManagement patch(@jakarta.annotation.Nonnull final DeviceAppManagement body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/androidmanagedappprotections/AndroidManagedAppProtectionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/androidmanagedappprotections/AndroidManagedAppProtectionsRequestBuilder.java index 56664b084da..0dcc7cb200a 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/androidmanagedappprotections/AndroidManagedAppProtectionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/androidmanagedappprotections/AndroidManagedAppProtectionsRequestBuilder.java @@ -60,21 +60,19 @@ public AndroidManagedAppProtectionsRequestBuilder(@jakarta.annotation.Nonnull fi super(requestAdapter, "{+baseurl}/deviceAppManagement/androidManagedAppProtections{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the androidManagedAppProtection objects. + * Android managed app policies. * @return a {@link AndroidManagedAppProtectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AndroidManagedAppProtectionCollectionResponse get() { return get(null); } /** - * List properties and relationships of the androidManagedAppProtection objects. + * Android managed app policies. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AndroidManagedAppProtectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AndroidManagedAppProtectionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public AndroidManagedAppProtectionCollectionResponse get(@jakarta.annotation.Nul return this.requestAdapter.send(requestInfo, errorMapping, AndroidManagedAppProtectionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new androidManagedAppProtection object. + * Create new navigation property to androidManagedAppProtections for deviceAppManagement * @param body The request body * @return a {@link AndroidManagedAppProtection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AndroidManagedAppProtection post(@jakarta.annotation.Nonnull final AndroidManagedAppProtection body) { return post(body, null); } /** - * Create a new androidManagedAppProtection object. + * Create new navigation property to androidManagedAppProtections for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AndroidManagedAppProtection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AndroidManagedAppProtection post(@jakarta.annotation.Nonnull final AndroidManagedAppProtection body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public AndroidManagedAppProtection post(@jakarta.annotation.Nonnull final Androi return this.requestAdapter.send(requestInfo, errorMapping, AndroidManagedAppProtection::createFromDiscriminatorValue); } /** - * List properties and relationships of the androidManagedAppProtection objects. + * Android managed app policies. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the androidManagedAppProtection objects. + * Android managed app policies. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new androidManagedAppProtection object. + * Create new navigation property to androidManagedAppProtections for deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new androidManagedAppProtection object. + * Create new navigation property to androidManagedAppProtections for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public AndroidManagedAppProtectionsRequestBuilder withUrl(@jakarta.annotation.No return new AndroidManagedAppProtectionsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the androidManagedAppProtection objects. + * Android managed app policies. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/androidmanagedappprotections/item/AndroidManagedAppProtectionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/androidmanagedappprotections/item/AndroidManagedAppProtectionItemRequestBuilder.java index 470913c14ba..8d634964e63 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/androidmanagedappprotections/item/AndroidManagedAppProtectionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/androidmanagedappprotections/item/AndroidManagedAppProtectionItemRequestBuilder.java @@ -64,18 +64,16 @@ public AndroidManagedAppProtectionItemRequestBuilder(@jakarta.annotation.Nonnull super(requestAdapter, "{+baseurl}/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a androidManagedAppProtection. + * Delete navigation property androidManagedAppProtections for deviceAppManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a androidManagedAppProtection. + * Delete navigation property androidManagedAppProtections for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -84,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the androidManagedAppProtection object. + * Android managed app policies. * @return a {@link AndroidManagedAppProtection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AndroidManagedAppProtection get() { return get(null); } /** - * Read properties and relationships of the androidManagedAppProtection object. + * Android managed app policies. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AndroidManagedAppProtection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AndroidManagedAppProtection get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,23 +104,21 @@ public AndroidManagedAppProtection get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, AndroidManagedAppProtection::createFromDiscriminatorValue); } /** - * Update the properties of a androidManagedAppProtection object. + * Update the navigation property androidManagedAppProtections in deviceAppManagement * @param body The request body * @return a {@link AndroidManagedAppProtection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AndroidManagedAppProtection patch(@jakarta.annotation.Nonnull final AndroidManagedAppProtection body) { return patch(body, null); } /** - * Update the properties of a androidManagedAppProtection object. + * Update the navigation property androidManagedAppProtections in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AndroidManagedAppProtection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AndroidManagedAppProtection patch(@jakarta.annotation.Nonnull final AndroidManagedAppProtection body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +129,7 @@ public AndroidManagedAppProtection patch(@jakarta.annotation.Nonnull final Andro return this.requestAdapter.send(requestInfo, errorMapping, AndroidManagedAppProtection::createFromDiscriminatorValue); } /** - * Deletes a androidManagedAppProtection. + * Delete navigation property androidManagedAppProtections for deviceAppManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +137,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a androidManagedAppProtection. + * Delete navigation property androidManagedAppProtections for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the androidManagedAppProtection object. + * Android managed app policies. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -163,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the androidManagedAppProtection object. + * Android managed app policies. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -175,7 +169,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a androidManagedAppProtection object. + * Update the navigation property androidManagedAppProtections in deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -184,7 +178,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a androidManagedAppProtection object. + * Update the navigation property androidManagedAppProtections in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -215,7 +209,7 @@ public AndroidManagedAppProtectionItemRequestBuilder withUrl(@jakarta.annotation public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the androidManagedAppProtection object. + * Android managed app policies. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/defaultmanagedappprotections/DefaultManagedAppProtectionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/defaultmanagedappprotections/DefaultManagedAppProtectionsRequestBuilder.java index 01a0125e825..cfa8d810332 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/defaultmanagedappprotections/DefaultManagedAppProtectionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/defaultmanagedappprotections/DefaultManagedAppProtectionsRequestBuilder.java @@ -60,21 +60,19 @@ public DefaultManagedAppProtectionsRequestBuilder(@jakarta.annotation.Nonnull fi super(requestAdapter, "{+baseurl}/deviceAppManagement/defaultManagedAppProtections{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the defaultManagedAppProtection objects. + * Default managed app policies. * @return a {@link DefaultManagedAppProtectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DefaultManagedAppProtectionCollectionResponse get() { return get(null); } /** - * List properties and relationships of the defaultManagedAppProtection objects. + * Default managed app policies. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DefaultManagedAppProtectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DefaultManagedAppProtectionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public DefaultManagedAppProtectionCollectionResponse get(@jakarta.annotation.Nul return this.requestAdapter.send(requestInfo, errorMapping, DefaultManagedAppProtectionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new defaultManagedAppProtection object. + * Create new navigation property to defaultManagedAppProtections for deviceAppManagement * @param body The request body * @return a {@link DefaultManagedAppProtection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DefaultManagedAppProtection post(@jakarta.annotation.Nonnull final DefaultManagedAppProtection body) { return post(body, null); } /** - * Create a new defaultManagedAppProtection object. + * Create new navigation property to defaultManagedAppProtections for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DefaultManagedAppProtection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DefaultManagedAppProtection post(@jakarta.annotation.Nonnull final DefaultManagedAppProtection body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public DefaultManagedAppProtection post(@jakarta.annotation.Nonnull final Defaul return this.requestAdapter.send(requestInfo, errorMapping, DefaultManagedAppProtection::createFromDiscriminatorValue); } /** - * List properties and relationships of the defaultManagedAppProtection objects. + * Default managed app policies. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the defaultManagedAppProtection objects. + * Default managed app policies. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new defaultManagedAppProtection object. + * Create new navigation property to defaultManagedAppProtections for deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new defaultManagedAppProtection object. + * Create new navigation property to defaultManagedAppProtections for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public DefaultManagedAppProtectionsRequestBuilder withUrl(@jakarta.annotation.No return new DefaultManagedAppProtectionsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the defaultManagedAppProtection objects. + * Default managed app policies. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/defaultmanagedappprotections/item/DefaultManagedAppProtectionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/defaultmanagedappprotections/item/DefaultManagedAppProtectionItemRequestBuilder.java index dadc15e7c38..a3b08d2ffb2 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/defaultmanagedappprotections/item/DefaultManagedAppProtectionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/defaultmanagedappprotections/item/DefaultManagedAppProtectionItemRequestBuilder.java @@ -55,18 +55,16 @@ public DefaultManagedAppProtectionItemRequestBuilder(@jakarta.annotation.Nonnull super(requestAdapter, "{+baseurl}/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a defaultManagedAppProtection. + * Delete navigation property defaultManagedAppProtections for deviceAppManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a defaultManagedAppProtection. + * Delete navigation property defaultManagedAppProtections for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -75,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the defaultManagedAppProtection object. + * Default managed app policies. * @return a {@link DefaultManagedAppProtection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DefaultManagedAppProtection get() { return get(null); } /** - * Read properties and relationships of the defaultManagedAppProtection object. + * Default managed app policies. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DefaultManagedAppProtection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DefaultManagedAppProtection get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -99,23 +95,21 @@ public DefaultManagedAppProtection get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, DefaultManagedAppProtection::createFromDiscriminatorValue); } /** - * Update the properties of a defaultManagedAppProtection object. + * Update the navigation property defaultManagedAppProtections in deviceAppManagement * @param body The request body * @return a {@link DefaultManagedAppProtection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DefaultManagedAppProtection patch(@jakarta.annotation.Nonnull final DefaultManagedAppProtection body) { return patch(body, null); } /** - * Update the properties of a defaultManagedAppProtection object. + * Update the navigation property defaultManagedAppProtections in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DefaultManagedAppProtection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DefaultManagedAppProtection patch(@jakarta.annotation.Nonnull final DefaultManagedAppProtection body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +120,7 @@ public DefaultManagedAppProtection patch(@jakarta.annotation.Nonnull final Defau return this.requestAdapter.send(requestInfo, errorMapping, DefaultManagedAppProtection::createFromDiscriminatorValue); } /** - * Deletes a defaultManagedAppProtection. + * Delete navigation property defaultManagedAppProtections for deviceAppManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +128,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a defaultManagedAppProtection. + * Delete navigation property defaultManagedAppProtections for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the defaultManagedAppProtection object. + * Default managed app policies. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -154,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the defaultManagedAppProtection object. + * Default managed app policies. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a defaultManagedAppProtection object. + * Update the navigation property defaultManagedAppProtections in deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -175,7 +169,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a defaultManagedAppProtection object. + * Update the navigation property defaultManagedAppProtections in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -206,7 +200,7 @@ public DefaultManagedAppProtectionItemRequestBuilder withUrl(@jakarta.annotation public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the defaultManagedAppProtection object. + * Default managed app policies. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/iosmanagedappprotections/IosManagedAppProtectionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/iosmanagedappprotections/IosManagedAppProtectionsRequestBuilder.java index 789b5909f28..b17ec7663f2 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/iosmanagedappprotections/IosManagedAppProtectionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/iosmanagedappprotections/IosManagedAppProtectionsRequestBuilder.java @@ -60,21 +60,19 @@ public IosManagedAppProtectionsRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/deviceAppManagement/iosManagedAppProtections{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the iosManagedAppProtection objects. + * iOS managed app policies. * @return a {@link IosManagedAppProtectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IosManagedAppProtectionCollectionResponse get() { return get(null); } /** - * List properties and relationships of the iosManagedAppProtection objects. + * iOS managed app policies. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link IosManagedAppProtectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IosManagedAppProtectionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public IosManagedAppProtectionCollectionResponse get(@jakarta.annotation.Nullabl return this.requestAdapter.send(requestInfo, errorMapping, IosManagedAppProtectionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new iosManagedAppProtection object. + * Create new navigation property to iosManagedAppProtections for deviceAppManagement * @param body The request body * @return a {@link IosManagedAppProtection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IosManagedAppProtection post(@jakarta.annotation.Nonnull final IosManagedAppProtection body) { return post(body, null); } /** - * Create a new iosManagedAppProtection object. + * Create new navigation property to iosManagedAppProtections for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link IosManagedAppProtection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IosManagedAppProtection post(@jakarta.annotation.Nonnull final IosManagedAppProtection body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public IosManagedAppProtection post(@jakarta.annotation.Nonnull final IosManaged return this.requestAdapter.send(requestInfo, errorMapping, IosManagedAppProtection::createFromDiscriminatorValue); } /** - * List properties and relationships of the iosManagedAppProtection objects. + * iOS managed app policies. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the iosManagedAppProtection objects. + * iOS managed app policies. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new iosManagedAppProtection object. + * Create new navigation property to iosManagedAppProtections for deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new iosManagedAppProtection object. + * Create new navigation property to iosManagedAppProtections for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public IosManagedAppProtectionsRequestBuilder withUrl(@jakarta.annotation.Nonnul return new IosManagedAppProtectionsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the iosManagedAppProtection objects. + * iOS managed app policies. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/iosmanagedappprotections/item/IosManagedAppProtectionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/iosmanagedappprotections/item/IosManagedAppProtectionItemRequestBuilder.java index 9adde4bfc5a..aa8b43f74ab 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/iosmanagedappprotections/item/IosManagedAppProtectionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/iosmanagedappprotections/item/IosManagedAppProtectionItemRequestBuilder.java @@ -64,18 +64,16 @@ public IosManagedAppProtectionItemRequestBuilder(@jakarta.annotation.Nonnull fin super(requestAdapter, "{+baseurl}/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a iosManagedAppProtection. + * Delete navigation property iosManagedAppProtections for deviceAppManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a iosManagedAppProtection. + * Delete navigation property iosManagedAppProtections for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -84,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the iosManagedAppProtection object. + * iOS managed app policies. * @return a {@link IosManagedAppProtection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IosManagedAppProtection get() { return get(null); } /** - * Read properties and relationships of the iosManagedAppProtection object. + * iOS managed app policies. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link IosManagedAppProtection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IosManagedAppProtection get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,23 +104,21 @@ public IosManagedAppProtection get(@jakarta.annotation.Nullable final java.util. return this.requestAdapter.send(requestInfo, errorMapping, IosManagedAppProtection::createFromDiscriminatorValue); } /** - * Update the properties of a iosManagedAppProtection object. + * Update the navigation property iosManagedAppProtections in deviceAppManagement * @param body The request body * @return a {@link IosManagedAppProtection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IosManagedAppProtection patch(@jakarta.annotation.Nonnull final IosManagedAppProtection body) { return patch(body, null); } /** - * Update the properties of a iosManagedAppProtection object. + * Update the navigation property iosManagedAppProtections in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link IosManagedAppProtection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IosManagedAppProtection patch(@jakarta.annotation.Nonnull final IosManagedAppProtection body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +129,7 @@ public IosManagedAppProtection patch(@jakarta.annotation.Nonnull final IosManage return this.requestAdapter.send(requestInfo, errorMapping, IosManagedAppProtection::createFromDiscriminatorValue); } /** - * Deletes a iosManagedAppProtection. + * Delete navigation property iosManagedAppProtections for deviceAppManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +137,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a iosManagedAppProtection. + * Delete navigation property iosManagedAppProtections for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the iosManagedAppProtection object. + * iOS managed app policies. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -163,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the iosManagedAppProtection object. + * iOS managed app policies. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -175,7 +169,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a iosManagedAppProtection object. + * Update the navigation property iosManagedAppProtections in deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -184,7 +178,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a iosManagedAppProtection object. + * Update the navigation property iosManagedAppProtections in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -215,7 +209,7 @@ public IosManagedAppProtectionItemRequestBuilder withUrl(@jakarta.annotation.Non public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the iosManagedAppProtection object. + * iOS managed app policies. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/iosmanagedappprotections/item/apps/AppsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/iosmanagedappprotections/item/apps/AppsRequestBuilder.java index 6b88a3727dd..757e57d9ebc 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/iosmanagedappprotections/item/apps/AppsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/iosmanagedappprotections/item/apps/AppsRequestBuilder.java @@ -60,21 +60,19 @@ public AppsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka super(requestAdapter, "{+baseurl}/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection%2Did}/apps{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the managedMobileApp objects. + * List of apps to which the policy is deployed. * @return a {@link ManagedMobileAppCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedMobileAppCollectionResponse get() { return get(null); } /** - * List properties and relationships of the managedMobileApp objects. + * List of apps to which the policy is deployed. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedMobileAppCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedMobileAppCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public ManagedMobileAppCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, ManagedMobileAppCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new managedMobileApp object. + * Create new navigation property to apps for deviceAppManagement * @param body The request body * @return a {@link ManagedMobileApp} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedMobileApp post(@jakarta.annotation.Nonnull final ManagedMobileApp body) { return post(body, null); } /** - * Create a new managedMobileApp object. + * Create new navigation property to apps for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedMobileApp} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedMobileApp post(@jakarta.annotation.Nonnull final ManagedMobileApp body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public ManagedMobileApp post(@jakarta.annotation.Nonnull final ManagedMobileApp return this.requestAdapter.send(requestInfo, errorMapping, ManagedMobileApp::createFromDiscriminatorValue); } /** - * List properties and relationships of the managedMobileApp objects. + * List of apps to which the policy is deployed. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the managedMobileApp objects. + * List of apps to which the policy is deployed. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new managedMobileApp object. + * Create new navigation property to apps for deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new managedMobileApp object. + * Create new navigation property to apps for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public AppsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr return new AppsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the managedMobileApp objects. + * List of apps to which the policy is deployed. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/iosmanagedappprotections/item/apps/item/ManagedMobileAppItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/iosmanagedappprotections/item/apps/item/ManagedMobileAppItemRequestBuilder.java index 09399e875f4..8df22adcfca 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/iosmanagedappprotections/item/apps/item/ManagedMobileAppItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/iosmanagedappprotections/item/apps/item/ManagedMobileAppItemRequestBuilder.java @@ -37,18 +37,16 @@ public ManagedMobileAppItemRequestBuilder(@jakarta.annotation.Nonnull final Stri super(requestAdapter, "{+baseurl}/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection%2Did}/apps/{managedMobileApp%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a managedMobileApp. + * Delete navigation property apps for deviceAppManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a managedMobileApp. + * Delete navigation property apps for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the managedMobileApp object. + * List of apps to which the policy is deployed. * @return a {@link ManagedMobileApp} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedMobileApp get() { return get(null); } /** - * Read properties and relationships of the managedMobileApp object. + * List of apps to which the policy is deployed. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedMobileApp} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedMobileApp get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public ManagedMobileApp get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, ManagedMobileApp::createFromDiscriminatorValue); } /** - * Update the properties of a managedMobileApp object. + * Update the navigation property apps in deviceAppManagement * @param body The request body * @return a {@link ManagedMobileApp} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedMobileApp patch(@jakarta.annotation.Nonnull final ManagedMobileApp body) { return patch(body, null); } /** - * Update the properties of a managedMobileApp object. + * Update the navigation property apps in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedMobileApp} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedMobileApp patch(@jakarta.annotation.Nonnull final ManagedMobileApp body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public ManagedMobileApp patch(@jakarta.annotation.Nonnull final ManagedMobileApp return this.requestAdapter.send(requestInfo, errorMapping, ManagedMobileApp::createFromDiscriminatorValue); } /** - * Deletes a managedMobileApp. + * Delete navigation property apps for deviceAppManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a managedMobileApp. + * Delete navigation property apps for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the managedMobileApp object. + * List of apps to which the policy is deployed. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the managedMobileApp object. + * List of apps to which the policy is deployed. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a managedMobileApp object. + * Update the navigation property apps in deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a managedMobileApp object. + * Update the navigation property apps in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public ManagedMobileAppItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fi public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the managedMobileApp object. + * List of apps to which the policy is deployed. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/iosmanagedappprotections/item/deploymentsummary/DeploymentSummaryRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/iosmanagedappprotections/item/deploymentsummary/DeploymentSummaryRequestBuilder.java index 982c1b2f555..17d7e5bc7ab 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/iosmanagedappprotections/item/deploymentsummary/DeploymentSummaryRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/iosmanagedappprotections/item/deploymentsummary/DeploymentSummaryRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the managedAppPolicyDeploymentSummary object. + * Navigation property to deployment summary of the configuration. * @return a {@link ManagedAppPolicyDeploymentSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedAppPolicyDeploymentSummary get() { return get(null); } /** - * Read properties and relationships of the managedAppPolicyDeploymentSummary object. + * Navigation property to deployment summary of the configuration. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedAppPolicyDeploymentSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedAppPolicyDeploymentSummary get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public ManagedAppPolicyDeploymentSummary get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, ManagedAppPolicyDeploymentSummary::createFromDiscriminatorValue); } /** - * Update the properties of a managedAppPolicyDeploymentSummary object. + * Update the navigation property deploymentSummary in deviceAppManagement * @param body The request body * @return a {@link ManagedAppPolicyDeploymentSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedAppPolicyDeploymentSummary patch(@jakarta.annotation.Nonnull final ManagedAppPolicyDeploymentSummary body) { return patch(body, null); } /** - * Update the properties of a managedAppPolicyDeploymentSummary object. + * Update the navigation property deploymentSummary in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedAppPolicyDeploymentSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedAppPolicyDeploymentSummary patch(@jakarta.annotation.Nonnull final ManagedAppPolicyDeploymentSummary body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the managedAppPolicyDeploymentSummary object. + * Navigation property to deployment summary of the configuration. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the managedAppPolicyDeploymentSummary object. + * Navigation property to deployment summary of the configuration. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a managedAppPolicyDeploymentSummary object. + * Update the navigation property deploymentSummary in deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a managedAppPolicyDeploymentSummary object. + * Update the navigation property deploymentSummary in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public DeploymentSummaryRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the managedAppPolicyDeploymentSummary object. + * Navigation property to deployment summary of the configuration. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedapppolicies/ManagedAppPoliciesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedapppolicies/ManagedAppPoliciesRequestBuilder.java index 9108410b3e3..f04b54d27f4 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedapppolicies/ManagedAppPoliciesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedapppolicies/ManagedAppPoliciesRequestBuilder.java @@ -60,21 +60,19 @@ public ManagedAppPoliciesRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/deviceAppManagement/managedAppPolicies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the targetedManagedAppProtection objects. + * Managed app policies. * @return a {@link ManagedAppPolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedAppPolicyCollectionResponse get() { return get(null); } /** - * List properties and relationships of the targetedManagedAppProtection objects. + * Managed app policies. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedAppPolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedAppPolicyCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ManagedAppPolicy post(@jakarta.annotation.Nonnull final ManagedAppPolicy return this.requestAdapter.send(requestInfo, errorMapping, ManagedAppPolicy::createFromDiscriminatorValue); } /** - * List properties and relationships of the targetedManagedAppProtection objects. + * Managed app policies. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the targetedManagedAppProtection objects. + * Managed app policies. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public ManagedAppPoliciesRequestBuilder withUrl(@jakarta.annotation.Nonnull fina return new ManagedAppPoliciesRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the targetedManagedAppProtection objects. + * Managed app policies. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedapppolicies/item/ManagedAppPolicyItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedapppolicies/item/ManagedAppPolicyItemRequestBuilder.java index 1eff5341195..fe76795ff3e 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedapppolicies/item/ManagedAppPolicyItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedapppolicies/item/ManagedAppPolicyItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the targetedManagedAppProtection object. + * Managed app policies. * @return a {@link ManagedAppPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedAppPolicy get() { return get(null); } /** - * Read properties and relationships of the targetedManagedAppProtection object. + * Managed app policies. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedAppPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedAppPolicy get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the targetedManagedAppProtection object. + * Managed app policies. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the targetedManagedAppProtection object. + * Managed app policies. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public ManagedAppPolicyItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fi public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the targetedManagedAppProtection object. + * Managed app policies. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/ManagedAppRegistrationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/ManagedAppRegistrationsRequestBuilder.java index 73ca8b4688a..7dab560de8e 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/ManagedAppRegistrationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/ManagedAppRegistrationsRequestBuilder.java @@ -69,21 +69,19 @@ public ManagedAppRegistrationsRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/deviceAppManagement/managedAppRegistrations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the androidManagedAppRegistration objects. + * The managed app registrations. * @return a {@link ManagedAppRegistrationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedAppRegistrationCollectionResponse get() { return get(null); } /** - * List properties and relationships of the androidManagedAppRegistration objects. + * The managed app registrations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedAppRegistrationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedAppRegistrationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public ManagedAppRegistrationCollectionResponse get(@jakarta.annotation.Nullable return this.requestAdapter.send(requestInfo, errorMapping, ManagedAppRegistrationCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new androidManagedAppRegistration object. + * Create new navigation property to managedAppRegistrations for deviceAppManagement * @param body The request body * @return a {@link ManagedAppRegistration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedAppRegistration post(@jakarta.annotation.Nonnull final ManagedAppRegistration body) { return post(body, null); } /** - * Create a new androidManagedAppRegistration object. + * Create new navigation property to managedAppRegistrations for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedAppRegistration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedAppRegistration post(@jakarta.annotation.Nonnull final ManagedAppRegistration body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public ManagedAppRegistration post(@jakarta.annotation.Nonnull final ManagedAppR return this.requestAdapter.send(requestInfo, errorMapping, ManagedAppRegistration::createFromDiscriminatorValue); } /** - * List properties and relationships of the androidManagedAppRegistration objects. + * The managed app registrations. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the androidManagedAppRegistration objects. + * The managed app registrations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new androidManagedAppRegistration object. + * Create new navigation property to managedAppRegistrations for deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new androidManagedAppRegistration object. + * Create new navigation property to managedAppRegistrations for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public ManagedAppRegistrationsRequestBuilder withUrl(@jakarta.annotation.Nonnull return new ManagedAppRegistrationsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the androidManagedAppRegistration objects. + * The managed app registrations. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/getuseridswithflaggedappregistration/GetUserIdsWithFlaggedAppRegistrationRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/getuseridswithflaggedappregistration/GetUserIdsWithFlaggedAppRegistrationRequestBuilder.java index 5deeb65f90e..81c03d35abc 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/getuseridswithflaggedappregistration/GetUserIdsWithFlaggedAppRegistrationRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/getuseridswithflaggedappregistration/GetUserIdsWithFlaggedAppRegistrationRequestBuilder.java @@ -36,19 +36,21 @@ public GetUserIdsWithFlaggedAppRegistrationRequestBuilder(@jakarta.annotation.No super(requestAdapter, "{+baseurl}/deviceAppManagement/managedAppRegistrations/getUserIdsWithFlaggedAppRegistration(){?%24count,%24filter,%24search,%24skip,%24top}", rawUrl); } /** - * Invoke function getUserIdsWithFlaggedAppRegistration + * Not yet documented * @return a {@link GetUserIdsWithFlaggedAppRegistrationGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetUserIdsWithFlaggedAppRegistrationGetResponse get() { return get(null); } /** - * Invoke function getUserIdsWithFlaggedAppRegistration + * Not yet documented * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GetUserIdsWithFlaggedAppRegistrationGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetUserIdsWithFlaggedAppRegistrationGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public GetUserIdsWithFlaggedAppRegistrationGetResponse get(@jakarta.annotation.N return this.requestAdapter.send(requestInfo, errorMapping, GetUserIdsWithFlaggedAppRegistrationGetResponse::createFromDiscriminatorValue); } /** - * Invoke function getUserIdsWithFlaggedAppRegistration + * Not yet documented * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getUserIdsWithFlaggedAppRegistration + * Not yet documented * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public GetUserIdsWithFlaggedAppRegistrationRequestBuilder withUrl(@jakarta.annot return new GetUserIdsWithFlaggedAppRegistrationRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function getUserIdsWithFlaggedAppRegistration + * Not yet documented */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/item/ManagedAppRegistrationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/item/ManagedAppRegistrationItemRequestBuilder.java index 7bedaf1be58..d9f23353aaf 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/item/ManagedAppRegistrationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/item/ManagedAppRegistrationItemRequestBuilder.java @@ -82,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the iosManagedAppRegistration object. + * The managed app registrations. * @return a {@link ManagedAppRegistration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedAppRegistration get() { return get(null); } /** - * Read properties and relationships of the iosManagedAppRegistration object. + * The managed app registrations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedAppRegistration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedAppRegistration get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -151,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the iosManagedAppRegistration object. + * The managed app registrations. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -159,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the iosManagedAppRegistration object. + * The managed app registrations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -211,7 +209,7 @@ public ManagedAppRegistrationItemRequestBuilder withUrl(@jakarta.annotation.Nonn public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the iosManagedAppRegistration object. + * The managed app registrations. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/item/operations/OperationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/item/operations/OperationsRequestBuilder.java index 615db07672f..2bdc321d656 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/item/operations/OperationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/item/operations/OperationsRequestBuilder.java @@ -60,21 +60,19 @@ public OperationsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/deviceAppManagement/managedAppRegistrations/{managedAppRegistration%2Did}/operations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the managedAppOperation objects. + * Zero or more long running operations triggered on the app registration. * @return a {@link ManagedAppOperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedAppOperationCollectionResponse get() { return get(null); } /** - * List properties and relationships of the managedAppOperation objects. + * Zero or more long running operations triggered on the app registration. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedAppOperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedAppOperationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public ManagedAppOperationCollectionResponse get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, ManagedAppOperationCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new managedAppOperation object. + * Create new navigation property to operations for deviceAppManagement * @param body The request body * @return a {@link ManagedAppOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedAppOperation post(@jakarta.annotation.Nonnull final ManagedAppOperation body) { return post(body, null); } /** - * Create a new managedAppOperation object. + * Create new navigation property to operations for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedAppOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedAppOperation post(@jakarta.annotation.Nonnull final ManagedAppOperation body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public ManagedAppOperation post(@jakarta.annotation.Nonnull final ManagedAppOper return this.requestAdapter.send(requestInfo, errorMapping, ManagedAppOperation::createFromDiscriminatorValue); } /** - * List properties and relationships of the managedAppOperation objects. + * Zero or more long running operations triggered on the app registration. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the managedAppOperation objects. + * Zero or more long running operations triggered on the app registration. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new managedAppOperation object. + * Create new navigation property to operations for deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new managedAppOperation object. + * Create new navigation property to operations for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public OperationsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new OperationsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the managedAppOperation objects. + * Zero or more long running operations triggered on the app registration. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/item/operations/item/ManagedAppOperationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/item/operations/item/ManagedAppOperationItemRequestBuilder.java index 5f9203bf39a..1a94616cf72 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/item/operations/item/ManagedAppOperationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappregistrations/item/operations/item/ManagedAppOperationItemRequestBuilder.java @@ -37,18 +37,16 @@ public ManagedAppOperationItemRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/deviceAppManagement/managedAppRegistrations/{managedAppRegistration%2Did}/operations/{managedAppOperation%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a managedAppOperation. + * Delete navigation property operations for deviceAppManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a managedAppOperation. + * Delete navigation property operations for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the managedAppOperation object. + * Zero or more long running operations triggered on the app registration. * @return a {@link ManagedAppOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedAppOperation get() { return get(null); } /** - * Read properties and relationships of the managedAppOperation object. + * Zero or more long running operations triggered on the app registration. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedAppOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedAppOperation get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public ManagedAppOperation get(@jakarta.annotation.Nullable final java.util.func return this.requestAdapter.send(requestInfo, errorMapping, ManagedAppOperation::createFromDiscriminatorValue); } /** - * Update the properties of a managedAppOperation object. + * Update the navigation property operations in deviceAppManagement * @param body The request body * @return a {@link ManagedAppOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedAppOperation patch(@jakarta.annotation.Nonnull final ManagedAppOperation body) { return patch(body, null); } /** - * Update the properties of a managedAppOperation object. + * Update the navigation property operations in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedAppOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedAppOperation patch(@jakarta.annotation.Nonnull final ManagedAppOperation body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public ManagedAppOperation patch(@jakarta.annotation.Nonnull final ManagedAppOpe return this.requestAdapter.send(requestInfo, errorMapping, ManagedAppOperation::createFromDiscriminatorValue); } /** - * Deletes a managedAppOperation. + * Delete navigation property operations for deviceAppManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a managedAppOperation. + * Delete navigation property operations for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the managedAppOperation object. + * Zero or more long running operations triggered on the app registration. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the managedAppOperation object. + * Zero or more long running operations triggered on the app registration. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a managedAppOperation object. + * Update the navigation property operations in deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a managedAppOperation object. + * Update the navigation property operations in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public ManagedAppOperationItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the managedAppOperation object. + * Zero or more long running operations triggered on the app registration. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappstatuses/ManagedAppStatusesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappstatuses/ManagedAppStatusesRequestBuilder.java index 22537d5d889..8a2423aab5a 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappstatuses/ManagedAppStatusesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappstatuses/ManagedAppStatusesRequestBuilder.java @@ -60,21 +60,19 @@ public ManagedAppStatusesRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/deviceAppManagement/managedAppStatuses{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the managedAppStatusRaw objects. + * The managed app statuses. * @return a {@link ManagedAppStatusCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedAppStatusCollectionResponse get() { return get(null); } /** - * List properties and relationships of the managedAppStatusRaw objects. + * The managed app statuses. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedAppStatusCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedAppStatusCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ManagedAppStatus post(@jakarta.annotation.Nonnull final ManagedAppStatus return this.requestAdapter.send(requestInfo, errorMapping, ManagedAppStatus::createFromDiscriminatorValue); } /** - * List properties and relationships of the managedAppStatusRaw objects. + * The managed app statuses. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the managedAppStatusRaw objects. + * The managed app statuses. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public ManagedAppStatusesRequestBuilder withUrl(@jakarta.annotation.Nonnull fina return new ManagedAppStatusesRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the managedAppStatusRaw objects. + * The managed app statuses. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappstatuses/item/ManagedAppStatusItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappstatuses/item/ManagedAppStatusItemRequestBuilder.java index dfe8eb0ac38..d53341ba986 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappstatuses/item/ManagedAppStatusItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedappstatuses/item/ManagedAppStatusItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the managedAppStatus object. + * The managed app statuses. * @return a {@link ManagedAppStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedAppStatus get() { return get(null); } /** - * Read properties and relationships of the managedAppStatus object. + * The managed app statuses. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedAppStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedAppStatus get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the managedAppStatus object. + * The managed app statuses. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the managedAppStatus object. + * The managed app statuses. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public ManagedAppStatusItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fi public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the managedAppStatus object. + * The managed app statuses. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/ManagedEBooksRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/ManagedEBooksRequestBuilder.java index c806be424f1..bd945678034 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/ManagedEBooksRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/ManagedEBooksRequestBuilder.java @@ -60,21 +60,19 @@ public ManagedEBooksRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/deviceAppManagement/managedEBooks{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the iosVppEBook objects. + * The Managed eBook. * @return a {@link ManagedEBookCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedEBookCollectionResponse get() { return get(null); } /** - * List properties and relationships of the iosVppEBook objects. + * The Managed eBook. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedEBookCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedEBookCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public ManagedEBookCollectionResponse get(@jakarta.annotation.Nullable final jav return this.requestAdapter.send(requestInfo, errorMapping, ManagedEBookCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new iosVppEBook object. + * Create new navigation property to managedEBooks for deviceAppManagement * @param body The request body * @return a {@link ManagedEBook} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedEBook post(@jakarta.annotation.Nonnull final ManagedEBook body) { return post(body, null); } /** - * Create a new iosVppEBook object. + * Create new navigation property to managedEBooks for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedEBook} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedEBook post(@jakarta.annotation.Nonnull final ManagedEBook body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public ManagedEBook post(@jakarta.annotation.Nonnull final ManagedEBook body, @j return this.requestAdapter.send(requestInfo, errorMapping, ManagedEBook::createFromDiscriminatorValue); } /** - * List properties and relationships of the iosVppEBook objects. + * The Managed eBook. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the iosVppEBook objects. + * The Managed eBook. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new iosVppEBook object. + * Create new navigation property to managedEBooks for deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new iosVppEBook object. + * Create new navigation property to managedEBooks for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ManagedEBooksRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new ManagedEBooksRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the iosVppEBook objects. + * The Managed eBook. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/ManagedEBookItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/ManagedEBookItemRequestBuilder.java index 8f1d73a214c..5c850c0d9d9 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/ManagedEBookItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/ManagedEBookItemRequestBuilder.java @@ -82,18 +82,16 @@ public ManagedEBookItemRequestBuilder(@jakarta.annotation.Nonnull final String r super(requestAdapter, "{+baseurl}/deviceAppManagement/managedEBooks/{managedEBook%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a iosVppEBook. + * Delete navigation property managedEBooks for deviceAppManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a iosVppEBook. + * Delete navigation property managedEBooks for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -102,21 +100,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the managedEBook object. + * The Managed eBook. * @return a {@link ManagedEBook} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedEBook get() { return get(null); } /** - * Read properties and relationships of the managedEBook object. + * The Managed eBook. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedEBook} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedEBook get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,23 +122,21 @@ public ManagedEBook get(@jakarta.annotation.Nullable final java.util.function.Co return this.requestAdapter.send(requestInfo, errorMapping, ManagedEBook::createFromDiscriminatorValue); } /** - * Update the properties of a iosVppEBook object. + * Update the navigation property managedEBooks in deviceAppManagement * @param body The request body * @return a {@link ManagedEBook} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedEBook patch(@jakarta.annotation.Nonnull final ManagedEBook body) { return patch(body, null); } /** - * Update the properties of a iosVppEBook object. + * Update the navigation property managedEBooks in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedEBook} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedEBook patch(@jakarta.annotation.Nonnull final ManagedEBook body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -153,7 +147,7 @@ public ManagedEBook patch(@jakarta.annotation.Nonnull final ManagedEBook body, @ return this.requestAdapter.send(requestInfo, errorMapping, ManagedEBook::createFromDiscriminatorValue); } /** - * Deletes a iosVppEBook. + * Delete navigation property managedEBooks for deviceAppManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -161,7 +155,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a iosVppEBook. + * Delete navigation property managedEBooks for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -173,7 +167,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the managedEBook object. + * The Managed eBook. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -181,7 +175,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the managedEBook object. + * The Managed eBook. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +187,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a iosVppEBook object. + * Update the navigation property managedEBooks in deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -202,7 +196,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a iosVppEBook object. + * Update the navigation property managedEBooks in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -233,7 +227,7 @@ public ManagedEBookItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the managedEBook object. + * The Managed eBook. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/assignments/AssignmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/assignments/AssignmentsRequestBuilder.java index 84b388d943d..fc5a3b07e77 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/assignments/AssignmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/assignments/AssignmentsRequestBuilder.java @@ -60,21 +60,19 @@ public AssignmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/deviceAppManagement/managedEBooks/{managedEBook%2Did}/assignments{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the iosVppEBookAssignment objects. + * The list of assignments for this eBook. * @return a {@link ManagedEBookAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedEBookAssignmentCollectionResponse get() { return get(null); } /** - * List properties and relationships of the iosVppEBookAssignment objects. + * The list of assignments for this eBook. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedEBookAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedEBookAssignmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public ManagedEBookAssignmentCollectionResponse get(@jakarta.annotation.Nullable return this.requestAdapter.send(requestInfo, errorMapping, ManagedEBookAssignmentCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new iosVppEBookAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @return a {@link ManagedEBookAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedEBookAssignment post(@jakarta.annotation.Nonnull final ManagedEBookAssignment body) { return post(body, null); } /** - * Create a new iosVppEBookAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedEBookAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedEBookAssignment post(@jakarta.annotation.Nonnull final ManagedEBookAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public ManagedEBookAssignment post(@jakarta.annotation.Nonnull final ManagedEBoo return this.requestAdapter.send(requestInfo, errorMapping, ManagedEBookAssignment::createFromDiscriminatorValue); } /** - * List properties and relationships of the iosVppEBookAssignment objects. + * The list of assignments for this eBook. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the iosVppEBookAssignment objects. + * The list of assignments for this eBook. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new iosVppEBookAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new iosVppEBookAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public AssignmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AssignmentsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the iosVppEBookAssignment objects. + * The list of assignments for this eBook. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/assignments/item/ManagedEBookAssignmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/assignments/item/ManagedEBookAssignmentItemRequestBuilder.java index 5323ac2827f..e30349c6660 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/assignments/item/ManagedEBookAssignmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/assignments/item/ManagedEBookAssignmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public ManagedEBookAssignmentItemRequestBuilder(@jakarta.annotation.Nonnull fina super(requestAdapter, "{+baseurl}/deviceAppManagement/managedEBooks/{managedEBook%2Did}/assignments/{managedEBookAssignment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a iosVppEBookAssignment. + * Delete navigation property assignments for deviceAppManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a iosVppEBookAssignment. + * Delete navigation property assignments for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the managedEBookAssignment object. + * The list of assignments for this eBook. * @return a {@link ManagedEBookAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedEBookAssignment get() { return get(null); } /** - * Read properties and relationships of the managedEBookAssignment object. + * The list of assignments for this eBook. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedEBookAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedEBookAssignment get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public ManagedEBookAssignment get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, ManagedEBookAssignment::createFromDiscriminatorValue); } /** - * Update the properties of a managedEBookAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @return a {@link ManagedEBookAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedEBookAssignment patch(@jakarta.annotation.Nonnull final ManagedEBookAssignment body) { return patch(body, null); } /** - * Update the properties of a managedEBookAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedEBookAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedEBookAssignment patch(@jakarta.annotation.Nonnull final ManagedEBookAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public ManagedEBookAssignment patch(@jakarta.annotation.Nonnull final ManagedEBo return this.requestAdapter.send(requestInfo, errorMapping, ManagedEBookAssignment::createFromDiscriminatorValue); } /** - * Deletes a iosVppEBookAssignment. + * Delete navigation property assignments for deviceAppManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a iosVppEBookAssignment. + * Delete navigation property assignments for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the managedEBookAssignment object. + * The list of assignments for this eBook. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the managedEBookAssignment object. + * The list of assignments for this eBook. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a managedEBookAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a managedEBookAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public ManagedEBookAssignmentItemRequestBuilder withUrl(@jakarta.annotation.Nonn public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the managedEBookAssignment object. + * The list of assignments for this eBook. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/devicestates/DeviceStatesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/devicestates/DeviceStatesRequestBuilder.java index 6d202b055de..3a0f398b7df 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/devicestates/DeviceStatesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/devicestates/DeviceStatesRequestBuilder.java @@ -60,21 +60,19 @@ public DeviceStatesRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/deviceAppManagement/managedEBooks/{managedEBook%2Did}/deviceStates{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the deviceInstallState objects. + * The list of installation states for this eBook. * @return a {@link DeviceInstallStateCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceInstallStateCollectionResponse get() { return get(null); } /** - * List properties and relationships of the deviceInstallState objects. + * The list of installation states for this eBook. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceInstallStateCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceInstallStateCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public DeviceInstallStateCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, DeviceInstallStateCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new deviceInstallState object. + * Create new navigation property to deviceStates for deviceAppManagement * @param body The request body * @return a {@link DeviceInstallState} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceInstallState post(@jakarta.annotation.Nonnull final DeviceInstallState body) { return post(body, null); } /** - * Create a new deviceInstallState object. + * Create new navigation property to deviceStates for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceInstallState} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceInstallState post(@jakarta.annotation.Nonnull final DeviceInstallState body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public DeviceInstallState post(@jakarta.annotation.Nonnull final DeviceInstallSt return this.requestAdapter.send(requestInfo, errorMapping, DeviceInstallState::createFromDiscriminatorValue); } /** - * List properties and relationships of the deviceInstallState objects. + * The list of installation states for this eBook. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the deviceInstallState objects. + * The list of installation states for this eBook. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new deviceInstallState object. + * Create new navigation property to deviceStates for deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new deviceInstallState object. + * Create new navigation property to deviceStates for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public DeviceStatesRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri return new DeviceStatesRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the deviceInstallState objects. + * The list of installation states for this eBook. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/devicestates/item/DeviceInstallStateItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/devicestates/item/DeviceInstallStateItemRequestBuilder.java index d1b1e0c6754..7d4145ea099 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/devicestates/item/DeviceInstallStateItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/devicestates/item/DeviceInstallStateItemRequestBuilder.java @@ -37,18 +37,16 @@ public DeviceInstallStateItemRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/deviceAppManagement/managedEBooks/{managedEBook%2Did}/deviceStates/{deviceInstallState%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a deviceInstallState. + * Delete navigation property deviceStates for deviceAppManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a deviceInstallState. + * Delete navigation property deviceStates for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the deviceInstallState object. + * The list of installation states for this eBook. * @return a {@link DeviceInstallState} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceInstallState get() { return get(null); } /** - * Read properties and relationships of the deviceInstallState object. + * The list of installation states for this eBook. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceInstallState} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceInstallState get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public DeviceInstallState get(@jakarta.annotation.Nullable final java.util.funct return this.requestAdapter.send(requestInfo, errorMapping, DeviceInstallState::createFromDiscriminatorValue); } /** - * Update the properties of a deviceInstallState object. + * Update the navigation property deviceStates in deviceAppManagement * @param body The request body * @return a {@link DeviceInstallState} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceInstallState patch(@jakarta.annotation.Nonnull final DeviceInstallState body) { return patch(body, null); } /** - * Update the properties of a deviceInstallState object. + * Update the navigation property deviceStates in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceInstallState} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceInstallState patch(@jakarta.annotation.Nonnull final DeviceInstallState body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public DeviceInstallState patch(@jakarta.annotation.Nonnull final DeviceInstallS return this.requestAdapter.send(requestInfo, errorMapping, DeviceInstallState::createFromDiscriminatorValue); } /** - * Deletes a deviceInstallState. + * Delete navigation property deviceStates for deviceAppManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a deviceInstallState. + * Delete navigation property deviceStates for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the deviceInstallState object. + * The list of installation states for this eBook. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the deviceInstallState object. + * The list of installation states for this eBook. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a deviceInstallState object. + * Update the navigation property deviceStates in deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a deviceInstallState object. + * Update the navigation property deviceStates in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public DeviceInstallStateItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the deviceInstallState object. + * The list of installation states for this eBook. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/installsummary/InstallSummaryRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/installsummary/InstallSummaryRequestBuilder.java index 8bb6558c9bd..eba255f4602 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/installsummary/InstallSummaryRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/installsummary/InstallSummaryRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the eBookInstallSummary object. + * Mobile App Install Summary. * @return a {@link EBookInstallSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EBookInstallSummary get() { return get(null); } /** - * Read properties and relationships of the eBookInstallSummary object. + * Mobile App Install Summary. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EBookInstallSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EBookInstallSummary get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public EBookInstallSummary get(@jakarta.annotation.Nullable final java.util.func return this.requestAdapter.send(requestInfo, errorMapping, EBookInstallSummary::createFromDiscriminatorValue); } /** - * Update the properties of a eBookInstallSummary object. + * Update the navigation property installSummary in deviceAppManagement * @param body The request body * @return a {@link EBookInstallSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EBookInstallSummary patch(@jakarta.annotation.Nonnull final EBookInstallSummary body) { return patch(body, null); } /** - * Update the properties of a eBookInstallSummary object. + * Update the navigation property installSummary in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EBookInstallSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EBookInstallSummary patch(@jakarta.annotation.Nonnull final EBookInstallSummary body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the eBookInstallSummary object. + * Mobile App Install Summary. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the eBookInstallSummary object. + * Mobile App Install Summary. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a eBookInstallSummary object. + * Update the navigation property installSummary in deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a eBookInstallSummary object. + * Update the navigation property installSummary in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public InstallSummaryRequestBuilder withUrl(@jakarta.annotation.Nonnull final St public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the eBookInstallSummary object. + * Mobile App Install Summary. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/userstatesummary/UserStateSummaryRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/userstatesummary/UserStateSummaryRequestBuilder.java index 77040331580..61d9a660cab 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/userstatesummary/UserStateSummaryRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/userstatesummary/UserStateSummaryRequestBuilder.java @@ -60,21 +60,19 @@ public UserStateSummaryRequestBuilder(@jakarta.annotation.Nonnull final String r super(requestAdapter, "{+baseurl}/deviceAppManagement/managedEBooks/{managedEBook%2Did}/userStateSummary{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the userInstallStateSummary objects. + * The list of installation states for this eBook. * @return a {@link UserInstallStateSummaryCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserInstallStateSummaryCollectionResponse get() { return get(null); } /** - * List properties and relationships of the userInstallStateSummary objects. + * The list of installation states for this eBook. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UserInstallStateSummaryCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserInstallStateSummaryCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public UserInstallStateSummaryCollectionResponse get(@jakarta.annotation.Nullabl return this.requestAdapter.send(requestInfo, errorMapping, UserInstallStateSummaryCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new userInstallStateSummary object. + * Create new navigation property to userStateSummary for deviceAppManagement * @param body The request body * @return a {@link UserInstallStateSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserInstallStateSummary post(@jakarta.annotation.Nonnull final UserInstallStateSummary body) { return post(body, null); } /** - * Create a new userInstallStateSummary object. + * Create new navigation property to userStateSummary for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UserInstallStateSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserInstallStateSummary post(@jakarta.annotation.Nonnull final UserInstallStateSummary body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public UserInstallStateSummary post(@jakarta.annotation.Nonnull final UserInstal return this.requestAdapter.send(requestInfo, errorMapping, UserInstallStateSummary::createFromDiscriminatorValue); } /** - * List properties and relationships of the userInstallStateSummary objects. + * The list of installation states for this eBook. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the userInstallStateSummary objects. + * The list of installation states for this eBook. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new userInstallStateSummary object. + * Create new navigation property to userStateSummary for deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new userInstallStateSummary object. + * Create new navigation property to userStateSummary for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public UserStateSummaryRequestBuilder withUrl(@jakarta.annotation.Nonnull final return new UserStateSummaryRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the userInstallStateSummary objects. + * The list of installation states for this eBook. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/userstatesummary/item/UserInstallStateSummaryItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/userstatesummary/item/UserInstallStateSummaryItemRequestBuilder.java index 6e074369370..e6a83100de3 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/userstatesummary/item/UserInstallStateSummaryItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/managedebooks/item/userstatesummary/item/UserInstallStateSummaryItemRequestBuilder.java @@ -46,18 +46,16 @@ public UserInstallStateSummaryItemRequestBuilder(@jakarta.annotation.Nonnull fin super(requestAdapter, "{+baseurl}/deviceAppManagement/managedEBooks/{managedEBook%2Did}/userStateSummary/{userInstallStateSummary%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a userInstallStateSummary. + * Delete navigation property userStateSummary for deviceAppManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a userInstallStateSummary. + * Delete navigation property userStateSummary for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the userInstallStateSummary object. + * The list of installation states for this eBook. * @return a {@link UserInstallStateSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserInstallStateSummary get() { return get(null); } /** - * Read properties and relationships of the userInstallStateSummary object. + * The list of installation states for this eBook. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UserInstallStateSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserInstallStateSummary get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public UserInstallStateSummary get(@jakarta.annotation.Nullable final java.util. return this.requestAdapter.send(requestInfo, errorMapping, UserInstallStateSummary::createFromDiscriminatorValue); } /** - * Update the properties of a userInstallStateSummary object. + * Update the navigation property userStateSummary in deviceAppManagement * @param body The request body * @return a {@link UserInstallStateSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserInstallStateSummary patch(@jakarta.annotation.Nonnull final UserInstallStateSummary body) { return patch(body, null); } /** - * Update the properties of a userInstallStateSummary object. + * Update the navigation property userStateSummary in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UserInstallStateSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserInstallStateSummary patch(@jakarta.annotation.Nonnull final UserInstallStateSummary body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public UserInstallStateSummary patch(@jakarta.annotation.Nonnull final UserInsta return this.requestAdapter.send(requestInfo, errorMapping, UserInstallStateSummary::createFromDiscriminatorValue); } /** - * Deletes a userInstallStateSummary. + * Delete navigation property userStateSummary for deviceAppManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a userInstallStateSummary. + * Delete navigation property userStateSummary for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the userInstallStateSummary object. + * The list of installation states for this eBook. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the userInstallStateSummary object. + * The list of installation states for this eBook. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a userInstallStateSummary object. + * Update the navigation property userStateSummary in deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a userInstallStateSummary object. + * Update the navigation property userStateSummary in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public UserInstallStateSummaryItemRequestBuilder withUrl(@jakarta.annotation.Non public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the userInstallStateSummary object. + * The list of installation states for this eBook. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mdmwindowsinformationprotectionpolicies/MdmWindowsInformationProtectionPoliciesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mdmwindowsinformationprotectionpolicies/MdmWindowsInformationProtectionPoliciesRequestBuilder.java index ae6671338fa..2e4b60ef305 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mdmwindowsinformationprotectionpolicies/MdmWindowsInformationProtectionPoliciesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mdmwindowsinformationprotectionpolicies/MdmWindowsInformationProtectionPoliciesRequestBuilder.java @@ -60,21 +60,19 @@ public MdmWindowsInformationProtectionPoliciesRequestBuilder(@jakarta.annotation super(requestAdapter, "{+baseurl}/deviceAppManagement/mdmWindowsInformationProtectionPolicies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the mdmWindowsInformationProtectionPolicy objects. + * Windows information protection for apps running on devices which are MDM enrolled. * @return a {@link MdmWindowsInformationProtectionPolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MdmWindowsInformationProtectionPolicyCollectionResponse get() { return get(null); } /** - * List properties and relationships of the mdmWindowsInformationProtectionPolicy objects. + * Windows information protection for apps running on devices which are MDM enrolled. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MdmWindowsInformationProtectionPolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MdmWindowsInformationProtectionPolicyCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public MdmWindowsInformationProtectionPolicyCollectionResponse get(@jakarta.anno return this.requestAdapter.send(requestInfo, errorMapping, MdmWindowsInformationProtectionPolicyCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new mdmWindowsInformationProtectionPolicy object. + * Create new navigation property to mdmWindowsInformationProtectionPolicies for deviceAppManagement * @param body The request body * @return a {@link MdmWindowsInformationProtectionPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MdmWindowsInformationProtectionPolicy post(@jakarta.annotation.Nonnull final MdmWindowsInformationProtectionPolicy body) { return post(body, null); } /** - * Create a new mdmWindowsInformationProtectionPolicy object. + * Create new navigation property to mdmWindowsInformationProtectionPolicies for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MdmWindowsInformationProtectionPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MdmWindowsInformationProtectionPolicy post(@jakarta.annotation.Nonnull final MdmWindowsInformationProtectionPolicy body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public MdmWindowsInformationProtectionPolicy post(@jakarta.annotation.Nonnull fi return this.requestAdapter.send(requestInfo, errorMapping, MdmWindowsInformationProtectionPolicy::createFromDiscriminatorValue); } /** - * List properties and relationships of the mdmWindowsInformationProtectionPolicy objects. + * Windows information protection for apps running on devices which are MDM enrolled. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the mdmWindowsInformationProtectionPolicy objects. + * Windows information protection for apps running on devices which are MDM enrolled. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new mdmWindowsInformationProtectionPolicy object. + * Create new navigation property to mdmWindowsInformationProtectionPolicies for deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new mdmWindowsInformationProtectionPolicy object. + * Create new navigation property to mdmWindowsInformationProtectionPolicies for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public MdmWindowsInformationProtectionPoliciesRequestBuilder withUrl(@jakarta.an return new MdmWindowsInformationProtectionPoliciesRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the mdmWindowsInformationProtectionPolicy objects. + * Windows information protection for apps running on devices which are MDM enrolled. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mdmwindowsinformationprotectionpolicies/item/MdmWindowsInformationProtectionPolicyItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mdmwindowsinformationprotectionpolicies/item/MdmWindowsInformationProtectionPolicyItemRequestBuilder.java index a0b87afd472..2a50530f132 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mdmwindowsinformationprotectionpolicies/item/MdmWindowsInformationProtectionPolicyItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mdmwindowsinformationprotectionpolicies/item/MdmWindowsInformationProtectionPolicyItemRequestBuilder.java @@ -64,18 +64,16 @@ public MdmWindowsInformationProtectionPolicyItemRequestBuilder(@jakarta.annotati super(requestAdapter, "{+baseurl}/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a mdmWindowsInformationProtectionPolicy. + * Delete navigation property mdmWindowsInformationProtectionPolicies for deviceAppManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a mdmWindowsInformationProtectionPolicy. + * Delete navigation property mdmWindowsInformationProtectionPolicies for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -84,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the mdmWindowsInformationProtectionPolicy object. + * Windows information protection for apps running on devices which are MDM enrolled. * @return a {@link MdmWindowsInformationProtectionPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MdmWindowsInformationProtectionPolicy get() { return get(null); } /** - * Read properties and relationships of the mdmWindowsInformationProtectionPolicy object. + * Windows information protection for apps running on devices which are MDM enrolled. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MdmWindowsInformationProtectionPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MdmWindowsInformationProtectionPolicy get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,23 +104,21 @@ public MdmWindowsInformationProtectionPolicy get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, MdmWindowsInformationProtectionPolicy::createFromDiscriminatorValue); } /** - * Update the properties of a mdmWindowsInformationProtectionPolicy object. + * Update the navigation property mdmWindowsInformationProtectionPolicies in deviceAppManagement * @param body The request body * @return a {@link MdmWindowsInformationProtectionPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MdmWindowsInformationProtectionPolicy patch(@jakarta.annotation.Nonnull final MdmWindowsInformationProtectionPolicy body) { return patch(body, null); } /** - * Update the properties of a mdmWindowsInformationProtectionPolicy object. + * Update the navigation property mdmWindowsInformationProtectionPolicies in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MdmWindowsInformationProtectionPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MdmWindowsInformationProtectionPolicy patch(@jakarta.annotation.Nonnull final MdmWindowsInformationProtectionPolicy body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +129,7 @@ public MdmWindowsInformationProtectionPolicy patch(@jakarta.annotation.Nonnull f return this.requestAdapter.send(requestInfo, errorMapping, MdmWindowsInformationProtectionPolicy::createFromDiscriminatorValue); } /** - * Deletes a mdmWindowsInformationProtectionPolicy. + * Delete navigation property mdmWindowsInformationProtectionPolicies for deviceAppManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +137,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a mdmWindowsInformationProtectionPolicy. + * Delete navigation property mdmWindowsInformationProtectionPolicies for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the mdmWindowsInformationProtectionPolicy object. + * Windows information protection for apps running on devices which are MDM enrolled. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -163,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the mdmWindowsInformationProtectionPolicy object. + * Windows information protection for apps running on devices which are MDM enrolled. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -175,7 +169,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a mdmWindowsInformationProtectionPolicy object. + * Update the navigation property mdmWindowsInformationProtectionPolicies in deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -184,7 +178,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a mdmWindowsInformationProtectionPolicy object. + * Update the navigation property mdmWindowsInformationProtectionPolicies in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -215,7 +209,7 @@ public MdmWindowsInformationProtectionPolicyItemRequestBuilder withUrl(@jakarta. public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the mdmWindowsInformationProtectionPolicy object. + * Windows information protection for apps running on devices which are MDM enrolled. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappcategories/MobileAppCategoriesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappcategories/MobileAppCategoriesRequestBuilder.java index 7da27c00f0f..9d40d904170 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappcategories/MobileAppCategoriesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappcategories/MobileAppCategoriesRequestBuilder.java @@ -60,21 +60,19 @@ public MobileAppCategoriesRequestBuilder(@jakarta.annotation.Nonnull final Strin super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileAppCategories{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the mobileAppCategory objects. + * The mobile app categories. * @return a {@link MobileAppCategoryCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppCategoryCollectionResponse get() { return get(null); } /** - * List properties and relationships of the mobileAppCategory objects. + * The mobile app categories. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppCategoryCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppCategoryCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public MobileAppCategoryCollectionResponse get(@jakarta.annotation.Nullable fina return this.requestAdapter.send(requestInfo, errorMapping, MobileAppCategoryCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new mobileAppCategory object. + * Create new navigation property to mobileAppCategories for deviceAppManagement * @param body The request body * @return a {@link MobileAppCategory} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppCategory post(@jakarta.annotation.Nonnull final MobileAppCategory body) { return post(body, null); } /** - * Create a new mobileAppCategory object. + * Create new navigation property to mobileAppCategories for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppCategory} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppCategory post(@jakarta.annotation.Nonnull final MobileAppCategory body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public MobileAppCategory post(@jakarta.annotation.Nonnull final MobileAppCategor return this.requestAdapter.send(requestInfo, errorMapping, MobileAppCategory::createFromDiscriminatorValue); } /** - * List properties and relationships of the mobileAppCategory objects. + * The mobile app categories. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the mobileAppCategory objects. + * The mobile app categories. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new mobileAppCategory object. + * Create new navigation property to mobileAppCategories for deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new mobileAppCategory object. + * Create new navigation property to mobileAppCategories for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public MobileAppCategoriesRequestBuilder withUrl(@jakarta.annotation.Nonnull fin return new MobileAppCategoriesRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the mobileAppCategory objects. + * The mobile app categories. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappcategories/item/MobileAppCategoryItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappcategories/item/MobileAppCategoryItemRequestBuilder.java index c882096e01f..571dfe98679 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappcategories/item/MobileAppCategoryItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappcategories/item/MobileAppCategoryItemRequestBuilder.java @@ -37,18 +37,16 @@ public MobileAppCategoryItemRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileAppCategories/{mobileAppCategory%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a mobileAppCategory. + * Delete navigation property mobileAppCategories for deviceAppManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a mobileAppCategory. + * Delete navigation property mobileAppCategories for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the mobileAppCategory object. + * The mobile app categories. * @return a {@link MobileAppCategory} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppCategory get() { return get(null); } /** - * Read properties and relationships of the mobileAppCategory object. + * The mobile app categories. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppCategory} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppCategory get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public MobileAppCategory get(@jakarta.annotation.Nullable final java.util.functi return this.requestAdapter.send(requestInfo, errorMapping, MobileAppCategory::createFromDiscriminatorValue); } /** - * Update the properties of a mobileAppCategory object. + * Update the navigation property mobileAppCategories in deviceAppManagement * @param body The request body * @return a {@link MobileAppCategory} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppCategory patch(@jakarta.annotation.Nonnull final MobileAppCategory body) { return patch(body, null); } /** - * Update the properties of a mobileAppCategory object. + * Update the navigation property mobileAppCategories in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppCategory} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppCategory patch(@jakarta.annotation.Nonnull final MobileAppCategory body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public MobileAppCategory patch(@jakarta.annotation.Nonnull final MobileAppCatego return this.requestAdapter.send(requestInfo, errorMapping, MobileAppCategory::createFromDiscriminatorValue); } /** - * Deletes a mobileAppCategory. + * Delete navigation property mobileAppCategories for deviceAppManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a mobileAppCategory. + * Delete navigation property mobileAppCategories for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the mobileAppCategory object. + * The mobile app categories. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the mobileAppCategory object. + * The mobile app categories. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a mobileAppCategory object. + * Update the navigation property mobileAppCategories in deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a mobileAppCategory object. + * Update the navigation property mobileAppCategories in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public MobileAppCategoryItemRequestBuilder withUrl(@jakarta.annotation.Nonnull f public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the mobileAppCategory object. + * The mobile app categories. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/MobileAppConfigurationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/MobileAppConfigurationsRequestBuilder.java index f6ed71ee550..f8e492cd3db 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/MobileAppConfigurationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/MobileAppConfigurationsRequestBuilder.java @@ -60,21 +60,19 @@ public MobileAppConfigurationsRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileAppConfigurations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the managedDeviceMobileAppConfiguration objects. + * The Managed Device Mobile Application Configurations. * @return a {@link ManagedDeviceMobileAppConfigurationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceMobileAppConfigurationCollectionResponse get() { return get(null); } /** - * List properties and relationships of the managedDeviceMobileAppConfiguration objects. + * The Managed Device Mobile Application Configurations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedDeviceMobileAppConfigurationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceMobileAppConfigurationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public ManagedDeviceMobileAppConfigurationCollectionResponse get(@jakarta.annota return this.requestAdapter.send(requestInfo, errorMapping, ManagedDeviceMobileAppConfigurationCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new iosMobileAppConfiguration object. + * Create new navigation property to mobileAppConfigurations for deviceAppManagement * @param body The request body * @return a {@link ManagedDeviceMobileAppConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceMobileAppConfiguration post(@jakarta.annotation.Nonnull final ManagedDeviceMobileAppConfiguration body) { return post(body, null); } /** - * Create a new iosMobileAppConfiguration object. + * Create new navigation property to mobileAppConfigurations for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedDeviceMobileAppConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceMobileAppConfiguration post(@jakarta.annotation.Nonnull final ManagedDeviceMobileAppConfiguration body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public ManagedDeviceMobileAppConfiguration post(@jakarta.annotation.Nonnull fina return this.requestAdapter.send(requestInfo, errorMapping, ManagedDeviceMobileAppConfiguration::createFromDiscriminatorValue); } /** - * List properties and relationships of the managedDeviceMobileAppConfiguration objects. + * The Managed Device Mobile Application Configurations. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the managedDeviceMobileAppConfiguration objects. + * The Managed Device Mobile Application Configurations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new iosMobileAppConfiguration object. + * Create new navigation property to mobileAppConfigurations for deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new iosMobileAppConfiguration object. + * Create new navigation property to mobileAppConfigurations for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public MobileAppConfigurationsRequestBuilder withUrl(@jakarta.annotation.Nonnull return new MobileAppConfigurationsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the managedDeviceMobileAppConfiguration objects. + * The Managed Device Mobile Application Configurations. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/ManagedDeviceMobileAppConfigurationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/ManagedDeviceMobileAppConfigurationItemRequestBuilder.java index 783c561d2a9..c63f37ddd60 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/ManagedDeviceMobileAppConfigurationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/ManagedDeviceMobileAppConfigurationItemRequestBuilder.java @@ -91,18 +91,16 @@ public ManagedDeviceMobileAppConfigurationItemRequestBuilder(@jakarta.annotation super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a iosMobileAppConfiguration. + * Delete navigation property mobileAppConfigurations for deviceAppManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a iosMobileAppConfiguration. + * Delete navigation property mobileAppConfigurations for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -111,21 +109,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the managedDeviceMobileAppConfiguration object. + * The Managed Device Mobile Application Configurations. * @return a {@link ManagedDeviceMobileAppConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceMobileAppConfiguration get() { return get(null); } /** - * Read properties and relationships of the managedDeviceMobileAppConfiguration object. + * The Managed Device Mobile Application Configurations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedDeviceMobileAppConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceMobileAppConfiguration get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,23 +131,21 @@ public ManagedDeviceMobileAppConfiguration get(@jakarta.annotation.Nullable fina return this.requestAdapter.send(requestInfo, errorMapping, ManagedDeviceMobileAppConfiguration::createFromDiscriminatorValue); } /** - * Update the properties of a iosMobileAppConfiguration object. + * Update the navigation property mobileAppConfigurations in deviceAppManagement * @param body The request body * @return a {@link ManagedDeviceMobileAppConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceMobileAppConfiguration patch(@jakarta.annotation.Nonnull final ManagedDeviceMobileAppConfiguration body) { return patch(body, null); } /** - * Update the properties of a iosMobileAppConfiguration object. + * Update the navigation property mobileAppConfigurations in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedDeviceMobileAppConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceMobileAppConfiguration patch(@jakarta.annotation.Nonnull final ManagedDeviceMobileAppConfiguration body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -162,7 +156,7 @@ public ManagedDeviceMobileAppConfiguration patch(@jakarta.annotation.Nonnull fin return this.requestAdapter.send(requestInfo, errorMapping, ManagedDeviceMobileAppConfiguration::createFromDiscriminatorValue); } /** - * Deletes a iosMobileAppConfiguration. + * Delete navigation property mobileAppConfigurations for deviceAppManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -170,7 +164,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a iosMobileAppConfiguration. + * Delete navigation property mobileAppConfigurations for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -182,7 +176,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the managedDeviceMobileAppConfiguration object. + * The Managed Device Mobile Application Configurations. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -190,7 +184,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the managedDeviceMobileAppConfiguration object. + * The Managed Device Mobile Application Configurations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -202,7 +196,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a iosMobileAppConfiguration object. + * Update the navigation property mobileAppConfigurations in deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -211,7 +205,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a iosMobileAppConfiguration object. + * Update the navigation property mobileAppConfigurations in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -242,7 +236,7 @@ public ManagedDeviceMobileAppConfigurationItemRequestBuilder withUrl(@jakarta.an public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the managedDeviceMobileAppConfiguration object. + * The Managed Device Mobile Application Configurations. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/assignments/AssignmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/assignments/AssignmentsRequestBuilder.java index d25df63f401..bb8af998d72 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/assignments/AssignmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/assignments/AssignmentsRequestBuilder.java @@ -60,21 +60,19 @@ public AssignmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration%2Did}/assignments{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the managedDeviceMobileAppConfigurationAssignment objects. + * The list of group assignemenets for app configration. * @return a {@link ManagedDeviceMobileAppConfigurationAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceMobileAppConfigurationAssignmentCollectionResponse get() { return get(null); } /** - * List properties and relationships of the managedDeviceMobileAppConfigurationAssignment objects. + * The list of group assignemenets for app configration. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedDeviceMobileAppConfigurationAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceMobileAppConfigurationAssignmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public ManagedDeviceMobileAppConfigurationAssignmentCollectionResponse get(@jaka return this.requestAdapter.send(requestInfo, errorMapping, ManagedDeviceMobileAppConfigurationAssignmentCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new managedDeviceMobileAppConfigurationAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @return a {@link ManagedDeviceMobileAppConfigurationAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceMobileAppConfigurationAssignment post(@jakarta.annotation.Nonnull final ManagedDeviceMobileAppConfigurationAssignment body) { return post(body, null); } /** - * Create a new managedDeviceMobileAppConfigurationAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedDeviceMobileAppConfigurationAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceMobileAppConfigurationAssignment post(@jakarta.annotation.Nonnull final ManagedDeviceMobileAppConfigurationAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public ManagedDeviceMobileAppConfigurationAssignment post(@jakarta.annotation.No return this.requestAdapter.send(requestInfo, errorMapping, ManagedDeviceMobileAppConfigurationAssignment::createFromDiscriminatorValue); } /** - * List properties and relationships of the managedDeviceMobileAppConfigurationAssignment objects. + * The list of group assignemenets for app configration. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the managedDeviceMobileAppConfigurationAssignment objects. + * The list of group assignemenets for app configration. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new managedDeviceMobileAppConfigurationAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new managedDeviceMobileAppConfigurationAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public AssignmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AssignmentsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the managedDeviceMobileAppConfigurationAssignment objects. + * The list of group assignemenets for app configration. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/assignments/item/ManagedDeviceMobileAppConfigurationAssignmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/assignments/item/ManagedDeviceMobileAppConfigurationAssignmentItemRequestBuilder.java index c53746e49ab..095aa5291c6 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/assignments/item/ManagedDeviceMobileAppConfigurationAssignmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/assignments/item/ManagedDeviceMobileAppConfigurationAssignmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public ManagedDeviceMobileAppConfigurationAssignmentItemRequestBuilder(@jakarta. super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration%2Did}/assignments/{managedDeviceMobileAppConfigurationAssignment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a managedDeviceMobileAppConfigurationAssignment. + * Delete navigation property assignments for deviceAppManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a managedDeviceMobileAppConfigurationAssignment. + * Delete navigation property assignments for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the managedDeviceMobileAppConfigurationAssignment object. + * The list of group assignemenets for app configration. * @return a {@link ManagedDeviceMobileAppConfigurationAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceMobileAppConfigurationAssignment get() { return get(null); } /** - * Read properties and relationships of the managedDeviceMobileAppConfigurationAssignment object. + * The list of group assignemenets for app configration. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedDeviceMobileAppConfigurationAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceMobileAppConfigurationAssignment get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public ManagedDeviceMobileAppConfigurationAssignment get(@jakarta.annotation.Nul return this.requestAdapter.send(requestInfo, errorMapping, ManagedDeviceMobileAppConfigurationAssignment::createFromDiscriminatorValue); } /** - * Update the properties of a managedDeviceMobileAppConfigurationAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @return a {@link ManagedDeviceMobileAppConfigurationAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceMobileAppConfigurationAssignment patch(@jakarta.annotation.Nonnull final ManagedDeviceMobileAppConfigurationAssignment body) { return patch(body, null); } /** - * Update the properties of a managedDeviceMobileAppConfigurationAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedDeviceMobileAppConfigurationAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceMobileAppConfigurationAssignment patch(@jakarta.annotation.Nonnull final ManagedDeviceMobileAppConfigurationAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public ManagedDeviceMobileAppConfigurationAssignment patch(@jakarta.annotation.N return this.requestAdapter.send(requestInfo, errorMapping, ManagedDeviceMobileAppConfigurationAssignment::createFromDiscriminatorValue); } /** - * Deletes a managedDeviceMobileAppConfigurationAssignment. + * Delete navigation property assignments for deviceAppManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a managedDeviceMobileAppConfigurationAssignment. + * Delete navigation property assignments for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the managedDeviceMobileAppConfigurationAssignment object. + * The list of group assignemenets for app configration. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the managedDeviceMobileAppConfigurationAssignment object. + * The list of group assignemenets for app configration. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a managedDeviceMobileAppConfigurationAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a managedDeviceMobileAppConfigurationAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public ManagedDeviceMobileAppConfigurationAssignmentItemRequestBuilder withUrl(@ public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the managedDeviceMobileAppConfigurationAssignment object. + * The list of group assignemenets for app configration. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/devicestatuses/DeviceStatusesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/devicestatuses/DeviceStatusesRequestBuilder.java index 5f12f7d5e8c..dbef1cebb28 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/devicestatuses/DeviceStatusesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/devicestatuses/DeviceStatusesRequestBuilder.java @@ -60,21 +60,19 @@ public DeviceStatusesRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration%2Did}/deviceStatuses{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the managedDeviceMobileAppConfigurationDeviceStatus objects. + * List of ManagedDeviceMobileAppConfigurationDeviceStatus. * @return a {@link ManagedDeviceMobileAppConfigurationDeviceStatusCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceMobileAppConfigurationDeviceStatusCollectionResponse get() { return get(null); } /** - * List properties and relationships of the managedDeviceMobileAppConfigurationDeviceStatus objects. + * List of ManagedDeviceMobileAppConfigurationDeviceStatus. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedDeviceMobileAppConfigurationDeviceStatusCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceMobileAppConfigurationDeviceStatusCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public ManagedDeviceMobileAppConfigurationDeviceStatusCollectionResponse get(@ja return this.requestAdapter.send(requestInfo, errorMapping, ManagedDeviceMobileAppConfigurationDeviceStatusCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new managedDeviceMobileAppConfigurationDeviceStatus object. + * Create new navigation property to deviceStatuses for deviceAppManagement * @param body The request body * @return a {@link ManagedDeviceMobileAppConfigurationDeviceStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceMobileAppConfigurationDeviceStatus post(@jakarta.annotation.Nonnull final ManagedDeviceMobileAppConfigurationDeviceStatus body) { return post(body, null); } /** - * Create a new managedDeviceMobileAppConfigurationDeviceStatus object. + * Create new navigation property to deviceStatuses for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedDeviceMobileAppConfigurationDeviceStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceMobileAppConfigurationDeviceStatus post(@jakarta.annotation.Nonnull final ManagedDeviceMobileAppConfigurationDeviceStatus body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public ManagedDeviceMobileAppConfigurationDeviceStatus post(@jakarta.annotation. return this.requestAdapter.send(requestInfo, errorMapping, ManagedDeviceMobileAppConfigurationDeviceStatus::createFromDiscriminatorValue); } /** - * List properties and relationships of the managedDeviceMobileAppConfigurationDeviceStatus objects. + * List of ManagedDeviceMobileAppConfigurationDeviceStatus. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the managedDeviceMobileAppConfigurationDeviceStatus objects. + * List of ManagedDeviceMobileAppConfigurationDeviceStatus. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new managedDeviceMobileAppConfigurationDeviceStatus object. + * Create new navigation property to deviceStatuses for deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new managedDeviceMobileAppConfigurationDeviceStatus object. + * Create new navigation property to deviceStatuses for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public DeviceStatusesRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new DeviceStatusesRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the managedDeviceMobileAppConfigurationDeviceStatus objects. + * List of ManagedDeviceMobileAppConfigurationDeviceStatus. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/devicestatuses/item/ManagedDeviceMobileAppConfigurationDeviceStatusItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/devicestatuses/item/ManagedDeviceMobileAppConfigurationDeviceStatusItemRequestBuilder.java index 3d63829cdea..47ee3f5488f 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/devicestatuses/item/ManagedDeviceMobileAppConfigurationDeviceStatusItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/devicestatuses/item/ManagedDeviceMobileAppConfigurationDeviceStatusItemRequestBuilder.java @@ -37,18 +37,16 @@ public ManagedDeviceMobileAppConfigurationDeviceStatusItemRequestBuilder(@jakart super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration%2Did}/deviceStatuses/{managedDeviceMobileAppConfigurationDeviceStatus%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a managedDeviceMobileAppConfigurationDeviceStatus. + * Delete navigation property deviceStatuses for deviceAppManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a managedDeviceMobileAppConfigurationDeviceStatus. + * Delete navigation property deviceStatuses for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the managedDeviceMobileAppConfigurationDeviceStatus object. + * List of ManagedDeviceMobileAppConfigurationDeviceStatus. * @return a {@link ManagedDeviceMobileAppConfigurationDeviceStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceMobileAppConfigurationDeviceStatus get() { return get(null); } /** - * Read properties and relationships of the managedDeviceMobileAppConfigurationDeviceStatus object. + * List of ManagedDeviceMobileAppConfigurationDeviceStatus. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedDeviceMobileAppConfigurationDeviceStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceMobileAppConfigurationDeviceStatus get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public ManagedDeviceMobileAppConfigurationDeviceStatus get(@jakarta.annotation.N return this.requestAdapter.send(requestInfo, errorMapping, ManagedDeviceMobileAppConfigurationDeviceStatus::createFromDiscriminatorValue); } /** - * Update the properties of a managedDeviceMobileAppConfigurationDeviceStatus object. + * Update the navigation property deviceStatuses in deviceAppManagement * @param body The request body * @return a {@link ManagedDeviceMobileAppConfigurationDeviceStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceMobileAppConfigurationDeviceStatus patch(@jakarta.annotation.Nonnull final ManagedDeviceMobileAppConfigurationDeviceStatus body) { return patch(body, null); } /** - * Update the properties of a managedDeviceMobileAppConfigurationDeviceStatus object. + * Update the navigation property deviceStatuses in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedDeviceMobileAppConfigurationDeviceStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceMobileAppConfigurationDeviceStatus patch(@jakarta.annotation.Nonnull final ManagedDeviceMobileAppConfigurationDeviceStatus body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public ManagedDeviceMobileAppConfigurationDeviceStatus patch(@jakarta.annotation return this.requestAdapter.send(requestInfo, errorMapping, ManagedDeviceMobileAppConfigurationDeviceStatus::createFromDiscriminatorValue); } /** - * Deletes a managedDeviceMobileAppConfigurationDeviceStatus. + * Delete navigation property deviceStatuses for deviceAppManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a managedDeviceMobileAppConfigurationDeviceStatus. + * Delete navigation property deviceStatuses for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the managedDeviceMobileAppConfigurationDeviceStatus object. + * List of ManagedDeviceMobileAppConfigurationDeviceStatus. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the managedDeviceMobileAppConfigurationDeviceStatus object. + * List of ManagedDeviceMobileAppConfigurationDeviceStatus. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a managedDeviceMobileAppConfigurationDeviceStatus object. + * Update the navigation property deviceStatuses in deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a managedDeviceMobileAppConfigurationDeviceStatus object. + * Update the navigation property deviceStatuses in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public ManagedDeviceMobileAppConfigurationDeviceStatusItemRequestBuilder withUrl public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the managedDeviceMobileAppConfigurationDeviceStatus object. + * List of ManagedDeviceMobileAppConfigurationDeviceStatus. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/devicestatussummary/DeviceStatusSummaryRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/devicestatussummary/DeviceStatusSummaryRequestBuilder.java index c116420f71e..b5441b7bb5d 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/devicestatussummary/DeviceStatusSummaryRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/devicestatussummary/DeviceStatusSummaryRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the managedDeviceMobileAppConfigurationDeviceSummary object. + * App configuration device status summary. * @return a {@link ManagedDeviceMobileAppConfigurationDeviceSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceMobileAppConfigurationDeviceSummary get() { return get(null); } /** - * Read properties and relationships of the managedDeviceMobileAppConfigurationDeviceSummary object. + * App configuration device status summary. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedDeviceMobileAppConfigurationDeviceSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceMobileAppConfigurationDeviceSummary get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public ManagedDeviceMobileAppConfigurationDeviceSummary get(@jakarta.annotation. return this.requestAdapter.send(requestInfo, errorMapping, ManagedDeviceMobileAppConfigurationDeviceSummary::createFromDiscriminatorValue); } /** - * Update the properties of a managedDeviceMobileAppConfigurationDeviceSummary object. + * Update the navigation property deviceStatusSummary in deviceAppManagement * @param body The request body * @return a {@link ManagedDeviceMobileAppConfigurationDeviceSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceMobileAppConfigurationDeviceSummary patch(@jakarta.annotation.Nonnull final ManagedDeviceMobileAppConfigurationDeviceSummary body) { return patch(body, null); } /** - * Update the properties of a managedDeviceMobileAppConfigurationDeviceSummary object. + * Update the navigation property deviceStatusSummary in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedDeviceMobileAppConfigurationDeviceSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceMobileAppConfigurationDeviceSummary patch(@jakarta.annotation.Nonnull final ManagedDeviceMobileAppConfigurationDeviceSummary body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the managedDeviceMobileAppConfigurationDeviceSummary object. + * App configuration device status summary. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the managedDeviceMobileAppConfigurationDeviceSummary object. + * App configuration device status summary. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a managedDeviceMobileAppConfigurationDeviceSummary object. + * Update the navigation property deviceStatusSummary in deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a managedDeviceMobileAppConfigurationDeviceSummary object. + * Update the navigation property deviceStatusSummary in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public DeviceStatusSummaryRequestBuilder withUrl(@jakarta.annotation.Nonnull fin public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the managedDeviceMobileAppConfigurationDeviceSummary object. + * App configuration device status summary. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/userstatuses/UserStatusesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/userstatuses/UserStatusesRequestBuilder.java index 62e096d9543..0ce0f8d4f99 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/userstatuses/UserStatusesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/userstatuses/UserStatusesRequestBuilder.java @@ -60,21 +60,19 @@ public UserStatusesRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration%2Did}/userStatuses{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the managedDeviceMobileAppConfigurationUserStatus objects. + * List of ManagedDeviceMobileAppConfigurationUserStatus. * @return a {@link ManagedDeviceMobileAppConfigurationUserStatusCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceMobileAppConfigurationUserStatusCollectionResponse get() { return get(null); } /** - * List properties and relationships of the managedDeviceMobileAppConfigurationUserStatus objects. + * List of ManagedDeviceMobileAppConfigurationUserStatus. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedDeviceMobileAppConfigurationUserStatusCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceMobileAppConfigurationUserStatusCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public ManagedDeviceMobileAppConfigurationUserStatusCollectionResponse get(@jaka return this.requestAdapter.send(requestInfo, errorMapping, ManagedDeviceMobileAppConfigurationUserStatusCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new managedDeviceMobileAppConfigurationUserStatus object. + * Create new navigation property to userStatuses for deviceAppManagement * @param body The request body * @return a {@link ManagedDeviceMobileAppConfigurationUserStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceMobileAppConfigurationUserStatus post(@jakarta.annotation.Nonnull final ManagedDeviceMobileAppConfigurationUserStatus body) { return post(body, null); } /** - * Create a new managedDeviceMobileAppConfigurationUserStatus object. + * Create new navigation property to userStatuses for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedDeviceMobileAppConfigurationUserStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceMobileAppConfigurationUserStatus post(@jakarta.annotation.Nonnull final ManagedDeviceMobileAppConfigurationUserStatus body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public ManagedDeviceMobileAppConfigurationUserStatus post(@jakarta.annotation.No return this.requestAdapter.send(requestInfo, errorMapping, ManagedDeviceMobileAppConfigurationUserStatus::createFromDiscriminatorValue); } /** - * List properties and relationships of the managedDeviceMobileAppConfigurationUserStatus objects. + * List of ManagedDeviceMobileAppConfigurationUserStatus. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the managedDeviceMobileAppConfigurationUserStatus objects. + * List of ManagedDeviceMobileAppConfigurationUserStatus. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new managedDeviceMobileAppConfigurationUserStatus object. + * Create new navigation property to userStatuses for deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new managedDeviceMobileAppConfigurationUserStatus object. + * Create new navigation property to userStatuses for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public UserStatusesRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri return new UserStatusesRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the managedDeviceMobileAppConfigurationUserStatus objects. + * List of ManagedDeviceMobileAppConfigurationUserStatus. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/userstatuses/item/ManagedDeviceMobileAppConfigurationUserStatusItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/userstatuses/item/ManagedDeviceMobileAppConfigurationUserStatusItemRequestBuilder.java index 5ca8352bf3d..1c8dd2fb71d 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/userstatuses/item/ManagedDeviceMobileAppConfigurationUserStatusItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/userstatuses/item/ManagedDeviceMobileAppConfigurationUserStatusItemRequestBuilder.java @@ -37,18 +37,16 @@ public ManagedDeviceMobileAppConfigurationUserStatusItemRequestBuilder(@jakarta. super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration%2Did}/userStatuses/{managedDeviceMobileAppConfigurationUserStatus%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a managedDeviceMobileAppConfigurationUserStatus. + * Delete navigation property userStatuses for deviceAppManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a managedDeviceMobileAppConfigurationUserStatus. + * Delete navigation property userStatuses for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the managedDeviceMobileAppConfigurationUserStatus object. + * List of ManagedDeviceMobileAppConfigurationUserStatus. * @return a {@link ManagedDeviceMobileAppConfigurationUserStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceMobileAppConfigurationUserStatus get() { return get(null); } /** - * Read properties and relationships of the managedDeviceMobileAppConfigurationUserStatus object. + * List of ManagedDeviceMobileAppConfigurationUserStatus. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedDeviceMobileAppConfigurationUserStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceMobileAppConfigurationUserStatus get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public ManagedDeviceMobileAppConfigurationUserStatus get(@jakarta.annotation.Nul return this.requestAdapter.send(requestInfo, errorMapping, ManagedDeviceMobileAppConfigurationUserStatus::createFromDiscriminatorValue); } /** - * Update the properties of a managedDeviceMobileAppConfigurationUserStatus object. + * Update the navigation property userStatuses in deviceAppManagement * @param body The request body * @return a {@link ManagedDeviceMobileAppConfigurationUserStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceMobileAppConfigurationUserStatus patch(@jakarta.annotation.Nonnull final ManagedDeviceMobileAppConfigurationUserStatus body) { return patch(body, null); } /** - * Update the properties of a managedDeviceMobileAppConfigurationUserStatus object. + * Update the navigation property userStatuses in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedDeviceMobileAppConfigurationUserStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceMobileAppConfigurationUserStatus patch(@jakarta.annotation.Nonnull final ManagedDeviceMobileAppConfigurationUserStatus body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public ManagedDeviceMobileAppConfigurationUserStatus patch(@jakarta.annotation.N return this.requestAdapter.send(requestInfo, errorMapping, ManagedDeviceMobileAppConfigurationUserStatus::createFromDiscriminatorValue); } /** - * Deletes a managedDeviceMobileAppConfigurationUserStatus. + * Delete navigation property userStatuses for deviceAppManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a managedDeviceMobileAppConfigurationUserStatus. + * Delete navigation property userStatuses for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the managedDeviceMobileAppConfigurationUserStatus object. + * List of ManagedDeviceMobileAppConfigurationUserStatus. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the managedDeviceMobileAppConfigurationUserStatus object. + * List of ManagedDeviceMobileAppConfigurationUserStatus. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a managedDeviceMobileAppConfigurationUserStatus object. + * Update the navigation property userStatuses in deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a managedDeviceMobileAppConfigurationUserStatus object. + * Update the navigation property userStatuses in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public ManagedDeviceMobileAppConfigurationUserStatusItemRequestBuilder withUrl(@ public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the managedDeviceMobileAppConfigurationUserStatus object. + * List of ManagedDeviceMobileAppConfigurationUserStatus. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/userstatussummary/UserStatusSummaryRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/userstatussummary/UserStatusSummaryRequestBuilder.java index 6a3e2927c12..a8e74af6e41 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/userstatussummary/UserStatusSummaryRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileappconfigurations/item/userstatussummary/UserStatusSummaryRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the managedDeviceMobileAppConfigurationUserSummary object. + * App configuration user status summary. * @return a {@link ManagedDeviceMobileAppConfigurationUserSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceMobileAppConfigurationUserSummary get() { return get(null); } /** - * Read properties and relationships of the managedDeviceMobileAppConfigurationUserSummary object. + * App configuration user status summary. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedDeviceMobileAppConfigurationUserSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceMobileAppConfigurationUserSummary get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public ManagedDeviceMobileAppConfigurationUserSummary get(@jakarta.annotation.Nu return this.requestAdapter.send(requestInfo, errorMapping, ManagedDeviceMobileAppConfigurationUserSummary::createFromDiscriminatorValue); } /** - * Update the properties of a managedDeviceMobileAppConfigurationUserSummary object. + * Update the navigation property userStatusSummary in deviceAppManagement * @param body The request body * @return a {@link ManagedDeviceMobileAppConfigurationUserSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceMobileAppConfigurationUserSummary patch(@jakarta.annotation.Nonnull final ManagedDeviceMobileAppConfigurationUserSummary body) { return patch(body, null); } /** - * Update the properties of a managedDeviceMobileAppConfigurationUserSummary object. + * Update the navigation property userStatusSummary in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedDeviceMobileAppConfigurationUserSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceMobileAppConfigurationUserSummary patch(@jakarta.annotation.Nonnull final ManagedDeviceMobileAppConfigurationUserSummary body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the managedDeviceMobileAppConfigurationUserSummary object. + * App configuration user status summary. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the managedDeviceMobileAppConfigurationUserSummary object. + * App configuration user status summary. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a managedDeviceMobileAppConfigurationUserSummary object. + * Update the navigation property userStatusSummary in deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a managedDeviceMobileAppConfigurationUserSummary object. + * Update the navigation property userStatusSummary in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public UserStatusSummaryRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the managedDeviceMobileAppConfigurationUserSummary object. + * App configuration user status summary. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/MobileAppsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/MobileAppsRequestBuilder.java index 6dd8a7fc164..307233774f7 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/MobileAppsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/MobileAppsRequestBuilder.java @@ -204,21 +204,19 @@ public MobileAppsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the iosStoreApp objects. + * The mobile apps. * @return a {@link MobileAppCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppCollectionResponse get() { return get(null); } /** - * List properties and relationships of the iosStoreApp objects. + * The mobile apps. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -228,23 +226,21 @@ public MobileAppCollectionResponse get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, MobileAppCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new iosiPadOSWebClip object. + * Create new navigation property to mobileApps for deviceAppManagement * @param body The request body * @return a {@link MobileApp} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileApp post(@jakarta.annotation.Nonnull final MobileApp body) { return post(body, null); } /** - * Create a new iosiPadOSWebClip object. + * Create new navigation property to mobileApps for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileApp} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileApp post(@jakarta.annotation.Nonnull final MobileApp body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -255,7 +251,7 @@ public MobileApp post(@jakarta.annotation.Nonnull final MobileApp body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, MobileApp::createFromDiscriminatorValue); } /** - * List properties and relationships of the iosStoreApp objects. + * The mobile apps. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -263,7 +259,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the iosStoreApp objects. + * The mobile apps. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -275,7 +271,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new iosiPadOSWebClip object. + * Create new navigation property to mobileApps for deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -284,7 +280,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new iosiPadOSWebClip object. + * Create new navigation property to mobileApps for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -309,7 +305,7 @@ public MobileAppsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new MobileAppsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the iosStoreApp objects. + * The mobile apps. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/MobileAppItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/MobileAppItemRequestBuilder.java index f03be78e9eb..77d1670c99c 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/MobileAppItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/MobileAppItemRequestBuilder.java @@ -208,18 +208,16 @@ public MobileAppItemRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a managedIOSStoreApp. + * Delete navigation property mobileApps for deviceAppManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a managedIOSStoreApp. + * Delete navigation property mobileApps for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -228,21 +226,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the managedAndroidStoreApp object. + * The mobile apps. * @return a {@link MobileApp} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileApp get() { return get(null); } /** - * Read properties and relationships of the managedAndroidStoreApp object. + * The mobile apps. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileApp} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileApp get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -252,23 +248,21 @@ public MobileApp get(@jakarta.annotation.Nullable final java.util.function.Consu return this.requestAdapter.send(requestInfo, errorMapping, MobileApp::createFromDiscriminatorValue); } /** - * Update the properties of a managedAndroidStoreApp object. + * Update the navigation property mobileApps in deviceAppManagement * @param body The request body * @return a {@link MobileApp} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileApp patch(@jakarta.annotation.Nonnull final MobileApp body) { return patch(body, null); } /** - * Update the properties of a managedAndroidStoreApp object. + * Update the navigation property mobileApps in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileApp} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileApp patch(@jakarta.annotation.Nonnull final MobileApp body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -279,7 +273,7 @@ public MobileApp patch(@jakarta.annotation.Nonnull final MobileApp body, @jakart return this.requestAdapter.send(requestInfo, errorMapping, MobileApp::createFromDiscriminatorValue); } /** - * Deletes a managedIOSStoreApp. + * Delete navigation property mobileApps for deviceAppManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -287,7 +281,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a managedIOSStoreApp. + * Delete navigation property mobileApps for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -299,7 +293,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the managedAndroidStoreApp object. + * The mobile apps. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -307,7 +301,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the managedAndroidStoreApp object. + * The mobile apps. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -319,7 +313,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a managedAndroidStoreApp object. + * Update the navigation property mobileApps in deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -328,7 +322,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a managedAndroidStoreApp object. + * Update the navigation property mobileApps in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -359,7 +353,7 @@ public MobileAppItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the managedAndroidStoreApp object. + * The mobile apps. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/assignments/AssignmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/assignments/AssignmentsRequestBuilder.java index a4807fd4ce4..67aa573c75f 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/assignments/AssignmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/assignments/AssignmentsRequestBuilder.java @@ -60,21 +60,19 @@ public AssignmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}/assignments{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @return a {@link MobileAppAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignmentCollectionResponse get() { return get(null); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public MobileAppAssignmentCollectionResponse get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignmentCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssignment body) { return post(body, null); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssig return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public AssignmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AssignmentsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/assignments/item/MobileAppAssignmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/assignments/item/MobileAppAssignmentItemRequestBuilder.java index 068f6694bf7..9b20842cd8b 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/assignments/item/MobileAppAssignmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/assignments/item/MobileAppAssignmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public MobileAppAssignmentItemRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}/assignments/{mobileAppAssignment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment get() { return get(null); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public MobileAppAssignment get(@jakarta.annotation.Nullable final java.util.func return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssignment body) { return patch(body, null); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssi return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public MobileAppAssignmentItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphandroidlobapp/assignments/AssignmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphandroidlobapp/assignments/AssignmentsRequestBuilder.java index 6fd6abe3138..951dfea21af 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphandroidlobapp/assignments/AssignmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphandroidlobapp/assignments/AssignmentsRequestBuilder.java @@ -60,21 +60,19 @@ public AssignmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}/graph.androidLobApp/assignments{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @return a {@link MobileAppAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignmentCollectionResponse get() { return get(null); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public MobileAppAssignmentCollectionResponse get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignmentCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssignment body) { return post(body, null); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssig return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public AssignmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AssignmentsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphandroidlobapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphandroidlobapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java index 874cf0f2f1a..b6776395b36 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphandroidlobapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphandroidlobapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public MobileAppAssignmentItemRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}/graph.androidLobApp/assignments/{mobileAppAssignment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment get() { return get(null); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public MobileAppAssignment get(@jakarta.annotation.Nullable final java.util.func return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssignment body) { return patch(body, null); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssi return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public MobileAppAssignmentItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphandroidstoreapp/assignments/AssignmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphandroidstoreapp/assignments/AssignmentsRequestBuilder.java index 68db7f2bf11..b31ddadfe42 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphandroidstoreapp/assignments/AssignmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphandroidstoreapp/assignments/AssignmentsRequestBuilder.java @@ -60,21 +60,19 @@ public AssignmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}/graph.androidStoreApp/assignments{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @return a {@link MobileAppAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignmentCollectionResponse get() { return get(null); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public MobileAppAssignmentCollectionResponse get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignmentCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssignment body) { return post(body, null); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssig return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public AssignmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AssignmentsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphandroidstoreapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphandroidstoreapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java index b2bcc9c849c..358fd569ace 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphandroidstoreapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphandroidstoreapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public MobileAppAssignmentItemRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}/graph.androidStoreApp/assignments/{mobileAppAssignment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment get() { return get(null); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public MobileAppAssignment get(@jakarta.annotation.Nullable final java.util.func return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssignment body) { return patch(body, null); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssi return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public MobileAppAssignmentItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphioslobapp/assignments/AssignmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphioslobapp/assignments/AssignmentsRequestBuilder.java index 74f8dc13acd..7bb03fda32c 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphioslobapp/assignments/AssignmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphioslobapp/assignments/AssignmentsRequestBuilder.java @@ -60,21 +60,19 @@ public AssignmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}/graph.iosLobApp/assignments{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @return a {@link MobileAppAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignmentCollectionResponse get() { return get(null); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public MobileAppAssignmentCollectionResponse get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignmentCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssignment body) { return post(body, null); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssig return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public AssignmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AssignmentsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphioslobapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphioslobapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java index 609ef4a5804..6ec525b6c83 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphioslobapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphioslobapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public MobileAppAssignmentItemRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}/graph.iosLobApp/assignments/{mobileAppAssignment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment get() { return get(null); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public MobileAppAssignment get(@jakarta.annotation.Nullable final java.util.func return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssignment body) { return patch(body, null); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssi return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public MobileAppAssignmentItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphiosstoreapp/assignments/AssignmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphiosstoreapp/assignments/AssignmentsRequestBuilder.java index 6357ab2dadd..90eafc3a887 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphiosstoreapp/assignments/AssignmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphiosstoreapp/assignments/AssignmentsRequestBuilder.java @@ -60,21 +60,19 @@ public AssignmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}/graph.iosStoreApp/assignments{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @return a {@link MobileAppAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignmentCollectionResponse get() { return get(null); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public MobileAppAssignmentCollectionResponse get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignmentCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssignment body) { return post(body, null); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssig return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public AssignmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AssignmentsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphiosstoreapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphiosstoreapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java index 4df5d6c9e57..b69def5bbc0 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphiosstoreapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphiosstoreapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public MobileAppAssignmentItemRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}/graph.iosStoreApp/assignments/{mobileAppAssignment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment get() { return get(null); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public MobileAppAssignment get(@jakarta.annotation.Nullable final java.util.func return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssignment body) { return patch(body, null); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssi return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public MobileAppAssignmentItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphiosvppapp/assignments/AssignmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphiosvppapp/assignments/AssignmentsRequestBuilder.java index 59f5939261d..eab39fec864 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphiosvppapp/assignments/AssignmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphiosvppapp/assignments/AssignmentsRequestBuilder.java @@ -60,21 +60,19 @@ public AssignmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}/graph.iosVppApp/assignments{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @return a {@link MobileAppAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignmentCollectionResponse get() { return get(null); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public MobileAppAssignmentCollectionResponse get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignmentCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssignment body) { return post(body, null); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssig return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public AssignmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AssignmentsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphiosvppapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphiosvppapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java index f67aa0c8ea8..40c90d2d9ae 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphiosvppapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphiosvppapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public MobileAppAssignmentItemRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}/graph.iosVppApp/assignments/{mobileAppAssignment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment get() { return get(null); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public MobileAppAssignment get(@jakarta.annotation.Nullable final java.util.func return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssignment body) { return patch(body, null); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssi return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public MobileAppAssignmentItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmacosdmgapp/assignments/AssignmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmacosdmgapp/assignments/AssignmentsRequestBuilder.java index bdaaa69526f..b5ea4aea0f6 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmacosdmgapp/assignments/AssignmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmacosdmgapp/assignments/AssignmentsRequestBuilder.java @@ -60,21 +60,19 @@ public AssignmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}/graph.macOSDmgApp/assignments{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @return a {@link MobileAppAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignmentCollectionResponse get() { return get(null); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public MobileAppAssignmentCollectionResponse get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignmentCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssignment body) { return post(body, null); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssig return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public AssignmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AssignmentsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmacosdmgapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmacosdmgapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java index 9f538f415e0..289be781d43 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmacosdmgapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmacosdmgapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public MobileAppAssignmentItemRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}/graph.macOSDmgApp/assignments/{mobileAppAssignment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment get() { return get(null); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public MobileAppAssignment get(@jakarta.annotation.Nullable final java.util.func return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssignment body) { return patch(body, null); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssi return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public MobileAppAssignmentItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmacoslobapp/assignments/AssignmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmacoslobapp/assignments/AssignmentsRequestBuilder.java index 9a3eed2b707..f9d122aa491 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmacoslobapp/assignments/AssignmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmacoslobapp/assignments/AssignmentsRequestBuilder.java @@ -60,21 +60,19 @@ public AssignmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}/graph.macOSLobApp/assignments{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @return a {@link MobileAppAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignmentCollectionResponse get() { return get(null); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public MobileAppAssignmentCollectionResponse get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignmentCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssignment body) { return post(body, null); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssig return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public AssignmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AssignmentsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmacoslobapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmacoslobapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java index ce91d0556b0..9367a48b4bc 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmacoslobapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmacoslobapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public MobileAppAssignmentItemRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}/graph.macOSLobApp/assignments/{mobileAppAssignment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment get() { return get(null); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public MobileAppAssignment get(@jakarta.annotation.Nullable final java.util.func return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssignment body) { return patch(body, null); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssi return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public MobileAppAssignmentItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmanagedandroidlobapp/assignments/AssignmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmanagedandroidlobapp/assignments/AssignmentsRequestBuilder.java index e1d752fd061..4b345925b9b 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmanagedandroidlobapp/assignments/AssignmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmanagedandroidlobapp/assignments/AssignmentsRequestBuilder.java @@ -60,21 +60,19 @@ public AssignmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}/graph.managedAndroidLobApp/assignments{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @return a {@link MobileAppAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignmentCollectionResponse get() { return get(null); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public MobileAppAssignmentCollectionResponse get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignmentCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssignment body) { return post(body, null); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssig return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public AssignmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AssignmentsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmanagedandroidlobapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmanagedandroidlobapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java index 3d788e8aa06..8120822b286 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmanagedandroidlobapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmanagedandroidlobapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public MobileAppAssignmentItemRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}/graph.managedAndroidLobApp/assignments/{mobileAppAssignment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment get() { return get(null); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public MobileAppAssignment get(@jakarta.annotation.Nullable final java.util.func return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssignment body) { return patch(body, null); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssi return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public MobileAppAssignmentItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmanagedioslobapp/assignments/AssignmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmanagedioslobapp/assignments/AssignmentsRequestBuilder.java index 7a0fccbed7b..e23e8e06455 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmanagedioslobapp/assignments/AssignmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmanagedioslobapp/assignments/AssignmentsRequestBuilder.java @@ -60,21 +60,19 @@ public AssignmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}/graph.managedIOSLobApp/assignments{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @return a {@link MobileAppAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignmentCollectionResponse get() { return get(null); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public MobileAppAssignmentCollectionResponse get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignmentCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssignment body) { return post(body, null); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssig return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public AssignmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AssignmentsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmanagedioslobapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmanagedioslobapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java index 375546efa07..79104b2c460 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmanagedioslobapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmanagedioslobapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public MobileAppAssignmentItemRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}/graph.managedIOSLobApp/assignments/{mobileAppAssignment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment get() { return get(null); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public MobileAppAssignment get(@jakarta.annotation.Nullable final java.util.func return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssignment body) { return patch(body, null); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssi return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public MobileAppAssignmentItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmanagedmobilelobapp/assignments/AssignmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmanagedmobilelobapp/assignments/AssignmentsRequestBuilder.java index bea5696d94a..8542fc3025f 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmanagedmobilelobapp/assignments/AssignmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmanagedmobilelobapp/assignments/AssignmentsRequestBuilder.java @@ -60,21 +60,19 @@ public AssignmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}/graph.managedMobileLobApp/assignments{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @return a {@link MobileAppAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignmentCollectionResponse get() { return get(null); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public MobileAppAssignmentCollectionResponse get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignmentCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssignment body) { return post(body, null); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssig return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public AssignmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AssignmentsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmanagedmobilelobapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmanagedmobilelobapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java index 8820319c372..98325f86086 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmanagedmobilelobapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmanagedmobilelobapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public MobileAppAssignmentItemRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}/graph.managedMobileLobApp/assignments/{mobileAppAssignment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment get() { return get(null); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public MobileAppAssignment get(@jakarta.annotation.Nullable final java.util.func return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssignment body) { return patch(body, null); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssi return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public MobileAppAssignmentItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmicrosoftstoreforbusinessapp/assignments/AssignmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmicrosoftstoreforbusinessapp/assignments/AssignmentsRequestBuilder.java index 5398930a0ee..7f4bb93b5d9 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmicrosoftstoreforbusinessapp/assignments/AssignmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmicrosoftstoreforbusinessapp/assignments/AssignmentsRequestBuilder.java @@ -60,21 +60,19 @@ public AssignmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}/graph.microsoftStoreForBusinessApp/assignments{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @return a {@link MobileAppAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignmentCollectionResponse get() { return get(null); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public MobileAppAssignmentCollectionResponse get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignmentCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssignment body) { return post(body, null); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssig return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public AssignmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AssignmentsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmicrosoftstoreforbusinessapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmicrosoftstoreforbusinessapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java index 7e592ce9c84..60ff0aeb206 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmicrosoftstoreforbusinessapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphmicrosoftstoreforbusinessapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public MobileAppAssignmentItemRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}/graph.microsoftStoreForBusinessApp/assignments/{mobileAppAssignment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment get() { return get(null); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public MobileAppAssignment get(@jakarta.annotation.Nullable final java.util.func return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssignment body) { return patch(body, null); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssi return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public MobileAppAssignmentItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphwin32lobapp/assignments/AssignmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphwin32lobapp/assignments/AssignmentsRequestBuilder.java index 30df4a7d4bf..1f48c3b15a0 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphwin32lobapp/assignments/AssignmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphwin32lobapp/assignments/AssignmentsRequestBuilder.java @@ -60,21 +60,19 @@ public AssignmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}/graph.win32LobApp/assignments{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @return a {@link MobileAppAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignmentCollectionResponse get() { return get(null); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public MobileAppAssignmentCollectionResponse get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignmentCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssignment body) { return post(body, null); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssig return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public AssignmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AssignmentsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphwin32lobapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphwin32lobapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java index b941711b5c6..3226b2a8efc 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphwin32lobapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphwin32lobapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public MobileAppAssignmentItemRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}/graph.win32LobApp/assignments/{mobileAppAssignment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment get() { return get(null); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public MobileAppAssignment get(@jakarta.annotation.Nullable final java.util.func return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssignment body) { return patch(body, null); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssi return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public MobileAppAssignmentItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphwindowsappx/assignments/AssignmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphwindowsappx/assignments/AssignmentsRequestBuilder.java index fe853fdad4f..5698d0a2636 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphwindowsappx/assignments/AssignmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphwindowsappx/assignments/AssignmentsRequestBuilder.java @@ -60,21 +60,19 @@ public AssignmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}/graph.windowsAppX/assignments{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @return a {@link MobileAppAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignmentCollectionResponse get() { return get(null); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public MobileAppAssignmentCollectionResponse get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignmentCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssignment body) { return post(body, null); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssig return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public AssignmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AssignmentsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphwindowsappx/assignments/item/MobileAppAssignmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphwindowsappx/assignments/item/MobileAppAssignmentItemRequestBuilder.java index 0f22b9f05c8..c38084cc707 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphwindowsappx/assignments/item/MobileAppAssignmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphwindowsappx/assignments/item/MobileAppAssignmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public MobileAppAssignmentItemRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}/graph.windowsAppX/assignments/{mobileAppAssignment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment get() { return get(null); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public MobileAppAssignment get(@jakarta.annotation.Nullable final java.util.func return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssignment body) { return patch(body, null); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssi return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public MobileAppAssignmentItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphwindowsmobilemsi/assignments/AssignmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphwindowsmobilemsi/assignments/AssignmentsRequestBuilder.java index 379007ea5f9..6b9e90cb5d3 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphwindowsmobilemsi/assignments/AssignmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphwindowsmobilemsi/assignments/AssignmentsRequestBuilder.java @@ -60,21 +60,19 @@ public AssignmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}/graph.windowsMobileMSI/assignments{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @return a {@link MobileAppAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignmentCollectionResponse get() { return get(null); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public MobileAppAssignmentCollectionResponse get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignmentCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssignment body) { return post(body, null); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssig return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public AssignmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AssignmentsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphwindowsmobilemsi/assignments/item/MobileAppAssignmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphwindowsmobilemsi/assignments/item/MobileAppAssignmentItemRequestBuilder.java index c3f5a46a250..2d6afa92269 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphwindowsmobilemsi/assignments/item/MobileAppAssignmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphwindowsmobilemsi/assignments/item/MobileAppAssignmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public MobileAppAssignmentItemRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}/graph.windowsMobileMSI/assignments/{mobileAppAssignment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment get() { return get(null); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public MobileAppAssignment get(@jakarta.annotation.Nullable final java.util.func return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssignment body) { return patch(body, null); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssi return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public MobileAppAssignmentItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphwindowsuniversalappx/assignments/AssignmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphwindowsuniversalappx/assignments/AssignmentsRequestBuilder.java index 447cd5135cd..b956828e921 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphwindowsuniversalappx/assignments/AssignmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphwindowsuniversalappx/assignments/AssignmentsRequestBuilder.java @@ -60,21 +60,19 @@ public AssignmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}/graph.windowsUniversalAppX/assignments{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @return a {@link MobileAppAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignmentCollectionResponse get() { return get(null); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public MobileAppAssignmentCollectionResponse get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignmentCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssignment body) { return post(body, null); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssig return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public AssignmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AssignmentsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphwindowsuniversalappx/assignments/item/MobileAppAssignmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphwindowsuniversalappx/assignments/item/MobileAppAssignmentItemRequestBuilder.java index 51cdb9f9a42..b1659527169 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphwindowsuniversalappx/assignments/item/MobileAppAssignmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphwindowsuniversalappx/assignments/item/MobileAppAssignmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public MobileAppAssignmentItemRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}/graph.windowsUniversalAppX/assignments/{mobileAppAssignment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment get() { return get(null); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public MobileAppAssignment get(@jakarta.annotation.Nullable final java.util.func return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssignment body) { return patch(body, null); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssi return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public MobileAppAssignmentItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphwindowswebapp/assignments/AssignmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphwindowswebapp/assignments/AssignmentsRequestBuilder.java index 3a8c935533a..f1199e1554b 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphwindowswebapp/assignments/AssignmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphwindowswebapp/assignments/AssignmentsRequestBuilder.java @@ -60,21 +60,19 @@ public AssignmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}/graph.windowsWebApp/assignments{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @return a {@link MobileAppAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignmentCollectionResponse get() { return get(null); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public MobileAppAssignmentCollectionResponse get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignmentCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssignment body) { return post(body, null); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public MobileAppAssignment post(@jakarta.annotation.Nonnull final MobileAppAssig return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new mobileAppAssignment object. + * Create new navigation property to assignments for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public AssignmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AssignmentsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the mobileAppAssignment objects. + * The list of group assignments for this mobile app. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphwindowswebapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphwindowswebapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java index af676afa882..154ae5e6542 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphwindowswebapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/mobileapps/item/graphwindowswebapp/assignments/item/MobileAppAssignmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public MobileAppAssignmentItemRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/deviceAppManagement/mobileApps/{mobileApp%2Did}/graph.windowsWebApp/assignments/{mobileAppAssignment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment get() { return get(null); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public MobileAppAssignment get(@jakarta.annotation.Nullable final java.util.func return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssignment body) { return patch(body, null); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public MobileAppAssignment patch(@jakarta.annotation.Nonnull final MobileAppAssi return this.requestAdapter.send(requestInfo, errorMapping, MobileAppAssignment::createFromDiscriminatorValue); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a mobileAppAssignment. + * Delete navigation property assignments for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a mobileAppAssignment object. + * Update the navigation property assignments in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public MobileAppAssignmentItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the mobileAppAssignment object. + * The list of group assignments for this mobile app. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/targetedmanagedappconfigurations/TargetedManagedAppConfigurationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/targetedmanagedappconfigurations/TargetedManagedAppConfigurationsRequestBuilder.java index 5b9d2bfb4bc..018e2555c9b 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/targetedmanagedappconfigurations/TargetedManagedAppConfigurationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/targetedmanagedappconfigurations/TargetedManagedAppConfigurationsRequestBuilder.java @@ -60,21 +60,19 @@ public TargetedManagedAppConfigurationsRequestBuilder(@jakarta.annotation.Nonnul super(requestAdapter, "{+baseurl}/deviceAppManagement/targetedManagedAppConfigurations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the targetedManagedAppConfiguration objects. + * Targeted managed app configurations. * @return a {@link TargetedManagedAppConfigurationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TargetedManagedAppConfigurationCollectionResponse get() { return get(null); } /** - * List properties and relationships of the targetedManagedAppConfiguration objects. + * Targeted managed app configurations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TargetedManagedAppConfigurationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TargetedManagedAppConfigurationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TargetedManagedAppConfigurationCollectionResponse get(@jakarta.annotation return this.requestAdapter.send(requestInfo, errorMapping, TargetedManagedAppConfigurationCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new targetedManagedAppConfiguration object. + * Create new navigation property to targetedManagedAppConfigurations for deviceAppManagement * @param body The request body * @return a {@link TargetedManagedAppConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TargetedManagedAppConfiguration post(@jakarta.annotation.Nonnull final TargetedManagedAppConfiguration body) { return post(body, null); } /** - * Create a new targetedManagedAppConfiguration object. + * Create new navigation property to targetedManagedAppConfigurations for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TargetedManagedAppConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TargetedManagedAppConfiguration post(@jakarta.annotation.Nonnull final TargetedManagedAppConfiguration body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public TargetedManagedAppConfiguration post(@jakarta.annotation.Nonnull final Ta return this.requestAdapter.send(requestInfo, errorMapping, TargetedManagedAppConfiguration::createFromDiscriminatorValue); } /** - * List properties and relationships of the targetedManagedAppConfiguration objects. + * Targeted managed app configurations. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the targetedManagedAppConfiguration objects. + * Targeted managed app configurations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new targetedManagedAppConfiguration object. + * Create new navigation property to targetedManagedAppConfigurations for deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new targetedManagedAppConfiguration object. + * Create new navigation property to targetedManagedAppConfigurations for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public TargetedManagedAppConfigurationsRequestBuilder withUrl(@jakarta.annotatio return new TargetedManagedAppConfigurationsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the targetedManagedAppConfiguration objects. + * Targeted managed app configurations. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/targetedmanagedappconfigurations/item/TargetedManagedAppConfigurationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/targetedmanagedappconfigurations/item/TargetedManagedAppConfigurationItemRequestBuilder.java index 02f59b4e412..0d56327b7b1 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/targetedmanagedappconfigurations/item/TargetedManagedAppConfigurationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/targetedmanagedappconfigurations/item/TargetedManagedAppConfigurationItemRequestBuilder.java @@ -82,18 +82,16 @@ public TargetedManagedAppConfigurationItemRequestBuilder(@jakarta.annotation.Non super(requestAdapter, "{+baseurl}/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a targetedManagedAppConfiguration. + * Delete navigation property targetedManagedAppConfigurations for deviceAppManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a targetedManagedAppConfiguration. + * Delete navigation property targetedManagedAppConfigurations for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -102,21 +100,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the targetedManagedAppConfiguration object. + * Targeted managed app configurations. * @return a {@link TargetedManagedAppConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TargetedManagedAppConfiguration get() { return get(null); } /** - * Read properties and relationships of the targetedManagedAppConfiguration object. + * Targeted managed app configurations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TargetedManagedAppConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TargetedManagedAppConfiguration get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,23 +122,21 @@ public TargetedManagedAppConfiguration get(@jakarta.annotation.Nullable final ja return this.requestAdapter.send(requestInfo, errorMapping, TargetedManagedAppConfiguration::createFromDiscriminatorValue); } /** - * Update the properties of a targetedManagedAppConfiguration object. + * Update the navigation property targetedManagedAppConfigurations in deviceAppManagement * @param body The request body * @return a {@link TargetedManagedAppConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TargetedManagedAppConfiguration patch(@jakarta.annotation.Nonnull final TargetedManagedAppConfiguration body) { return patch(body, null); } /** - * Update the properties of a targetedManagedAppConfiguration object. + * Update the navigation property targetedManagedAppConfigurations in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TargetedManagedAppConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TargetedManagedAppConfiguration patch(@jakarta.annotation.Nonnull final TargetedManagedAppConfiguration body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -153,7 +147,7 @@ public TargetedManagedAppConfiguration patch(@jakarta.annotation.Nonnull final T return this.requestAdapter.send(requestInfo, errorMapping, TargetedManagedAppConfiguration::createFromDiscriminatorValue); } /** - * Deletes a targetedManagedAppConfiguration. + * Delete navigation property targetedManagedAppConfigurations for deviceAppManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -161,7 +155,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a targetedManagedAppConfiguration. + * Delete navigation property targetedManagedAppConfigurations for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -173,7 +167,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the targetedManagedAppConfiguration object. + * Targeted managed app configurations. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -181,7 +175,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the targetedManagedAppConfiguration object. + * Targeted managed app configurations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +187,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a targetedManagedAppConfiguration object. + * Update the navigation property targetedManagedAppConfigurations in deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -202,7 +196,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a targetedManagedAppConfiguration object. + * Update the navigation property targetedManagedAppConfigurations in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -233,7 +227,7 @@ public TargetedManagedAppConfigurationItemRequestBuilder withUrl(@jakarta.annota public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the targetedManagedAppConfiguration object. + * Targeted managed app configurations. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/vpptokens/VppTokensRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/vpptokens/VppTokensRequestBuilder.java index f4cbbe6bc86..451d2bd517d 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/vpptokens/VppTokensRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/vpptokens/VppTokensRequestBuilder.java @@ -60,21 +60,19 @@ public VppTokensRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/deviceAppManagement/vppTokens{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the vppToken objects. + * List of Vpp tokens for this organization. * @return a {@link VppTokenCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public VppTokenCollectionResponse get() { return get(null); } /** - * List properties and relationships of the vppToken objects. + * List of Vpp tokens for this organization. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link VppTokenCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public VppTokenCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public VppTokenCollectionResponse get(@jakarta.annotation.Nullable final java.ut return this.requestAdapter.send(requestInfo, errorMapping, VppTokenCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new vppToken object. + * Create new navigation property to vppTokens for deviceAppManagement * @param body The request body * @return a {@link VppToken} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public VppToken post(@jakarta.annotation.Nonnull final VppToken body) { return post(body, null); } /** - * Create a new vppToken object. + * Create new navigation property to vppTokens for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link VppToken} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public VppToken post(@jakarta.annotation.Nonnull final VppToken body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public VppToken post(@jakarta.annotation.Nonnull final VppToken body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, VppToken::createFromDiscriminatorValue); } /** - * List properties and relationships of the vppToken objects. + * List of Vpp tokens for this organization. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the vppToken objects. + * List of Vpp tokens for this organization. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new vppToken object. + * Create new navigation property to vppTokens for deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new vppToken object. + * Create new navigation property to vppTokens for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public VppTokensRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new VppTokensRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the vppToken objects. + * List of Vpp tokens for this organization. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/vpptokens/item/VppTokenItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/vpptokens/item/VppTokenItemRequestBuilder.java index 67eefa517aa..375da34763f 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/vpptokens/item/VppTokenItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/vpptokens/item/VppTokenItemRequestBuilder.java @@ -46,18 +46,16 @@ public VppTokenItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/deviceAppManagement/vppTokens/{vppToken%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a vppToken. + * Delete navigation property vppTokens for deviceAppManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a vppToken. + * Delete navigation property vppTokens for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the vppToken object. + * List of Vpp tokens for this organization. * @return a {@link VppToken} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public VppToken get() { return get(null); } /** - * Read properties and relationships of the vppToken object. + * List of Vpp tokens for this organization. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link VppToken} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public VppToken get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public VppToken get(@jakarta.annotation.Nullable final java.util.function.Consum return this.requestAdapter.send(requestInfo, errorMapping, VppToken::createFromDiscriminatorValue); } /** - * Update the properties of a vppToken object. + * Update the navigation property vppTokens in deviceAppManagement * @param body The request body * @return a {@link VppToken} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public VppToken patch(@jakarta.annotation.Nonnull final VppToken body) { return patch(body, null); } /** - * Update the properties of a vppToken object. + * Update the navigation property vppTokens in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link VppToken} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public VppToken patch(@jakarta.annotation.Nonnull final VppToken body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public VppToken patch(@jakarta.annotation.Nonnull final VppToken body, @jakarta. return this.requestAdapter.send(requestInfo, errorMapping, VppToken::createFromDiscriminatorValue); } /** - * Deletes a vppToken. + * Delete navigation property vppTokens for deviceAppManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a vppToken. + * Delete navigation property vppTokens for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the vppToken object. + * List of Vpp tokens for this organization. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the vppToken object. + * List of Vpp tokens for this organization. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a vppToken object. + * Update the navigation property vppTokens in deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a vppToken object. + * Update the navigation property vppTokens in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public VppTokenItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the vppToken object. + * List of Vpp tokens for this organization. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/windowsinformationprotectionpolicies/WindowsInformationProtectionPoliciesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/windowsinformationprotectionpolicies/WindowsInformationProtectionPoliciesRequestBuilder.java index 72270580e5f..0574c8427ab 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/windowsinformationprotectionpolicies/WindowsInformationProtectionPoliciesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/windowsinformationprotectionpolicies/WindowsInformationProtectionPoliciesRequestBuilder.java @@ -60,21 +60,19 @@ public WindowsInformationProtectionPoliciesRequestBuilder(@jakarta.annotation.No super(requestAdapter, "{+baseurl}/deviceAppManagement/windowsInformationProtectionPolicies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the windowsInformationProtectionPolicy objects. + * Windows information protection for apps running on devices which are not MDM enrolled. * @return a {@link WindowsInformationProtectionPolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsInformationProtectionPolicyCollectionResponse get() { return get(null); } /** - * List properties and relationships of the windowsInformationProtectionPolicy objects. + * Windows information protection for apps running on devices which are not MDM enrolled. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WindowsInformationProtectionPolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsInformationProtectionPolicyCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public WindowsInformationProtectionPolicyCollectionResponse get(@jakarta.annotat return this.requestAdapter.send(requestInfo, errorMapping, WindowsInformationProtectionPolicyCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new windowsInformationProtectionPolicy object. + * Create new navigation property to windowsInformationProtectionPolicies for deviceAppManagement * @param body The request body * @return a {@link WindowsInformationProtectionPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsInformationProtectionPolicy post(@jakarta.annotation.Nonnull final WindowsInformationProtectionPolicy body) { return post(body, null); } /** - * Create a new windowsInformationProtectionPolicy object. + * Create new navigation property to windowsInformationProtectionPolicies for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WindowsInformationProtectionPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsInformationProtectionPolicy post(@jakarta.annotation.Nonnull final WindowsInformationProtectionPolicy body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public WindowsInformationProtectionPolicy post(@jakarta.annotation.Nonnull final return this.requestAdapter.send(requestInfo, errorMapping, WindowsInformationProtectionPolicy::createFromDiscriminatorValue); } /** - * List properties and relationships of the windowsInformationProtectionPolicy objects. + * Windows information protection for apps running on devices which are not MDM enrolled. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the windowsInformationProtectionPolicy objects. + * Windows information protection for apps running on devices which are not MDM enrolled. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new windowsInformationProtectionPolicy object. + * Create new navigation property to windowsInformationProtectionPolicies for deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new windowsInformationProtectionPolicy object. + * Create new navigation property to windowsInformationProtectionPolicies for deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public WindowsInformationProtectionPoliciesRequestBuilder withUrl(@jakarta.annot return new WindowsInformationProtectionPoliciesRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the windowsInformationProtectionPolicy objects. + * Windows information protection for apps running on devices which are not MDM enrolled. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/windowsinformationprotectionpolicies/item/WindowsInformationProtectionPolicyItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/windowsinformationprotectionpolicies/item/WindowsInformationProtectionPolicyItemRequestBuilder.java index f761486d550..5e4c7450aa7 100644 --- a/src/main/java/com/microsoft/graph/generated/deviceappmanagement/windowsinformationprotectionpolicies/item/WindowsInformationProtectionPolicyItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/deviceappmanagement/windowsinformationprotectionpolicies/item/WindowsInformationProtectionPolicyItemRequestBuilder.java @@ -64,18 +64,16 @@ public WindowsInformationProtectionPolicyItemRequestBuilder(@jakarta.annotation. super(requestAdapter, "{+baseurl}/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a windowsInformationProtectionPolicy. + * Delete navigation property windowsInformationProtectionPolicies for deviceAppManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a windowsInformationProtectionPolicy. + * Delete navigation property windowsInformationProtectionPolicies for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -84,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the windowsInformationProtectionPolicy object. + * Windows information protection for apps running on devices which are not MDM enrolled. * @return a {@link WindowsInformationProtectionPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsInformationProtectionPolicy get() { return get(null); } /** - * Read properties and relationships of the windowsInformationProtectionPolicy object. + * Windows information protection for apps running on devices which are not MDM enrolled. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WindowsInformationProtectionPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsInformationProtectionPolicy get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,23 +104,21 @@ public WindowsInformationProtectionPolicy get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, WindowsInformationProtectionPolicy::createFromDiscriminatorValue); } /** - * Update the properties of a windowsInformationProtectionPolicy object. + * Update the navigation property windowsInformationProtectionPolicies in deviceAppManagement * @param body The request body * @return a {@link WindowsInformationProtectionPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsInformationProtectionPolicy patch(@jakarta.annotation.Nonnull final WindowsInformationProtectionPolicy body) { return patch(body, null); } /** - * Update the properties of a windowsInformationProtectionPolicy object. + * Update the navigation property windowsInformationProtectionPolicies in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WindowsInformationProtectionPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsInformationProtectionPolicy patch(@jakarta.annotation.Nonnull final WindowsInformationProtectionPolicy body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +129,7 @@ public WindowsInformationProtectionPolicy patch(@jakarta.annotation.Nonnull fina return this.requestAdapter.send(requestInfo, errorMapping, WindowsInformationProtectionPolicy::createFromDiscriminatorValue); } /** - * Deletes a windowsInformationProtectionPolicy. + * Delete navigation property windowsInformationProtectionPolicies for deviceAppManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +137,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a windowsInformationProtectionPolicy. + * Delete navigation property windowsInformationProtectionPolicies for deviceAppManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the windowsInformationProtectionPolicy object. + * Windows information protection for apps running on devices which are not MDM enrolled. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -163,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the windowsInformationProtectionPolicy object. + * Windows information protection for apps running on devices which are not MDM enrolled. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -175,7 +169,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a windowsInformationProtectionPolicy object. + * Update the navigation property windowsInformationProtectionPolicies in deviceAppManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -184,7 +178,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a windowsInformationProtectionPolicy object. + * Update the navigation property windowsInformationProtectionPolicies in deviceAppManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -215,7 +209,7 @@ public WindowsInformationProtectionPolicyItemRequestBuilder withUrl(@jakarta.ann public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the windowsInformationProtectionPolicy object. + * Windows information protection for apps running on devices which are not MDM enrolled. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/DeviceManagementRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/DeviceManagementRequestBuilder.java index 939401ea199..d20f06b9e3f 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/DeviceManagementRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/DeviceManagementRequestBuilder.java @@ -573,7 +573,7 @@ public DeviceManagementRequestBuilder(@jakarta.annotation.Nonnull final String r * Read properties and relationships of the deviceManagement object. * @return a {@link DeviceManagement} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here + * @see Find more info here */ @jakarta.annotation.Nullable public DeviceManagement get() { @@ -584,7 +584,7 @@ public DeviceManagement get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceManagement} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here + * @see Find more info here */ @jakarta.annotation.Nullable public DeviceManagement get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -608,7 +608,7 @@ public GetEffectivePermissionsWithScopeRequestBuilder getEffectivePermissionsWit * @param body The request body * @return a {@link DeviceManagement} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here + * @see Find more info here */ @jakarta.annotation.Nullable public DeviceManagement patch(@jakarta.annotation.Nonnull final DeviceManagement body) { @@ -620,7 +620,7 @@ public DeviceManagement patch(@jakarta.annotation.Nonnull final DeviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceManagement} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here + * @see Find more info here */ @jakarta.annotation.Nullable public DeviceManagement patch(@jakarta.annotation.Nonnull final DeviceManagement body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/applepushnotificationcertificate/ApplePushNotificationCertificateRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/applepushnotificationcertificate/ApplePushNotificationCertificateRequestBuilder.java index 751ef15bd01..49365e66f0c 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/applepushnotificationcertificate/ApplePushNotificationCertificateRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/applepushnotificationcertificate/ApplePushNotificationCertificateRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the applePushNotificationCertificate object. + * Apple push notification certificate. * @return a {@link ApplePushNotificationCertificate} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ApplePushNotificationCertificate get() { return get(null); } /** - * Read properties and relationships of the applePushNotificationCertificate object. + * Apple push notification certificate. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ApplePushNotificationCertificate} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ApplePushNotificationCertificate get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -88,23 +86,21 @@ public ApplePushNotificationCertificate get(@jakarta.annotation.Nullable final j return this.requestAdapter.send(requestInfo, errorMapping, ApplePushNotificationCertificate::createFromDiscriminatorValue); } /** - * Update the properties of a applePushNotificationCertificate object. + * Update the navigation property applePushNotificationCertificate in deviceManagement * @param body The request body * @return a {@link ApplePushNotificationCertificate} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ApplePushNotificationCertificate patch(@jakarta.annotation.Nonnull final ApplePushNotificationCertificate body) { return patch(body, null); } /** - * Update the properties of a applePushNotificationCertificate object. + * Update the navigation property applePushNotificationCertificate in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ApplePushNotificationCertificate} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ApplePushNotificationCertificate patch(@jakarta.annotation.Nonnull final ApplePushNotificationCertificate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the applePushNotificationCertificate object. + * Apple push notification certificate. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the applePushNotificationCertificate object. + * Apple push notification certificate. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a applePushNotificationCertificate object. + * Update the navigation property applePushNotificationCertificate in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -164,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a applePushNotificationCertificate object. + * Update the navigation property applePushNotificationCertificate in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -195,7 +191,7 @@ public ApplePushNotificationCertificateRequestBuilder withUrl(@jakarta.annotatio public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the applePushNotificationCertificate object. + * Apple push notification certificate. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/applepushnotificationcertificate/downloadapplepushnotificationcertificatesigningrequest/DownloadApplePushNotificationCertificateSigningRequestRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/applepushnotificationcertificate/downloadapplepushnotificationcertificatesigningrequest/DownloadApplePushNotificationCertificateSigningRequestRequestBuilder.java index 3faab8e179f..7d7909cfe91 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/applepushnotificationcertificate/downloadapplepushnotificationcertificatesigningrequest/DownloadApplePushNotificationCertificateSigningRequestRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/applepushnotificationcertificate/downloadapplepushnotificationcertificatesigningrequest/DownloadApplePushNotificationCertificateSigningRequestRequestBuilder.java @@ -38,6 +38,7 @@ public DownloadApplePushNotificationCertificateSigningRequestRequestBuilder(@jak * Download Apple push notification certificate signing request * @return a {@link DownloadApplePushNotificationCertificateSigningRequestGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DownloadApplePushNotificationCertificateSigningRequestGetResponse get() { @@ -48,6 +49,7 @@ public DownloadApplePushNotificationCertificateSigningRequestGetResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DownloadApplePushNotificationCertificateSigningRequestGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DownloadApplePushNotificationCertificateSigningRequestGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/auditevents/AuditEventsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/auditevents/AuditEventsRequestBuilder.java index ddd3d6a3bf3..92a81a500e7 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/auditevents/AuditEventsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/auditevents/AuditEventsRequestBuilder.java @@ -70,21 +70,19 @@ public AuditEventsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/deviceManagement/auditEvents{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the auditEvent objects. + * The Audit Events * @return a {@link AuditEventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuditEventCollectionResponse get() { return get(null); } /** - * List properties and relationships of the auditEvent objects. + * The Audit Events * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AuditEventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuditEventCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -104,23 +102,21 @@ public GetAuditActivityTypesWithCategoryRequestBuilder getAuditActivityTypesWith return new GetAuditActivityTypesWithCategoryRequestBuilder(pathParameters, requestAdapter, category); } /** - * Create a new auditEvent object. + * Create new navigation property to auditEvents for deviceManagement * @param body The request body * @return a {@link AuditEvent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuditEvent post(@jakarta.annotation.Nonnull final AuditEvent body) { return post(body, null); } /** - * Create a new auditEvent object. + * Create new navigation property to auditEvents for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AuditEvent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuditEvent post(@jakarta.annotation.Nonnull final AuditEvent body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -131,7 +127,7 @@ public AuditEvent post(@jakarta.annotation.Nonnull final AuditEvent body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, AuditEvent::createFromDiscriminatorValue); } /** - * List properties and relationships of the auditEvent objects. + * The Audit Events * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -139,7 +135,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the auditEvent objects. + * The Audit Events * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -151,7 +147,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new auditEvent object. + * Create new navigation property to auditEvents for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -160,7 +156,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new auditEvent object. + * Create new navigation property to auditEvents for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -185,7 +181,7 @@ public AuditEventsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AuditEventsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the auditEvent objects. + * The Audit Events */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/auditevents/getauditcategories/GetAuditCategoriesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/auditevents/getauditcategories/GetAuditCategoriesRequestBuilder.java index 46d8415b5c5..840902d536d 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/auditevents/getauditcategories/GetAuditCategoriesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/auditevents/getauditcategories/GetAuditCategoriesRequestBuilder.java @@ -36,19 +36,21 @@ public GetAuditCategoriesRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/deviceManagement/auditEvents/getAuditCategories(){?%24count,%24filter,%24search,%24skip,%24top}", rawUrl); } /** - * Invoke function getAuditCategories + * Not yet documented * @return a {@link GetAuditCategoriesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetAuditCategoriesGetResponse get() { return get(null); } /** - * Invoke function getAuditCategories + * Not yet documented * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GetAuditCategoriesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetAuditCategoriesGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public GetAuditCategoriesGetResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, GetAuditCategoriesGetResponse::createFromDiscriminatorValue); } /** - * Invoke function getAuditCategories + * Not yet documented * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getAuditCategories + * Not yet documented * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public GetAuditCategoriesRequestBuilder withUrl(@jakarta.annotation.Nonnull fina return new GetAuditCategoriesRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function getAuditCategories + * Not yet documented */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/auditevents/item/AuditEventItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/auditevents/item/AuditEventItemRequestBuilder.java index e0d705e3281..b8681b9c3c8 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/auditevents/item/AuditEventItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/auditevents/item/AuditEventItemRequestBuilder.java @@ -37,18 +37,16 @@ public AuditEventItemRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/deviceManagement/auditEvents/{auditEvent%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a auditEvent. + * Delete navigation property auditEvents for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a auditEvent. + * Delete navigation property auditEvents for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the auditEvent object. + * The Audit Events * @return a {@link AuditEvent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuditEvent get() { return get(null); } /** - * Read properties and relationships of the auditEvent object. + * The Audit Events * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AuditEvent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuditEvent get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public AuditEvent get(@jakarta.annotation.Nullable final java.util.function.Cons return this.requestAdapter.send(requestInfo, errorMapping, AuditEvent::createFromDiscriminatorValue); } /** - * Update the properties of a auditEvent object. + * Update the navigation property auditEvents in deviceManagement * @param body The request body * @return a {@link AuditEvent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuditEvent patch(@jakarta.annotation.Nonnull final AuditEvent body) { return patch(body, null); } /** - * Update the properties of a auditEvent object. + * Update the navigation property auditEvents in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AuditEvent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuditEvent patch(@jakarta.annotation.Nonnull final AuditEvent body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public AuditEvent patch(@jakarta.annotation.Nonnull final AuditEvent body, @jaka return this.requestAdapter.send(requestInfo, errorMapping, AuditEvent::createFromDiscriminatorValue); } /** - * Deletes a auditEvent. + * Delete navigation property auditEvents for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a auditEvent. + * Delete navigation property auditEvents for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the auditEvent object. + * The Audit Events * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the auditEvent object. + * The Audit Events * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a auditEvent object. + * Update the navigation property auditEvents in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a auditEvent object. + * Update the navigation property auditEvents in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public AuditEventItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final St public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the auditEvent object. + * The Audit Events */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/compliancemanagementpartners/ComplianceManagementPartnersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/compliancemanagementpartners/ComplianceManagementPartnersRequestBuilder.java index 4cae04eb9ca..bac243d10c4 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/compliancemanagementpartners/ComplianceManagementPartnersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/compliancemanagementpartners/ComplianceManagementPartnersRequestBuilder.java @@ -60,21 +60,19 @@ public ComplianceManagementPartnersRequestBuilder(@jakarta.annotation.Nonnull fi super(requestAdapter, "{+baseurl}/deviceManagement/complianceManagementPartners{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the complianceManagementPartner objects. + * The list of Compliance Management Partners configured by the tenant. * @return a {@link ComplianceManagementPartnerCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ComplianceManagementPartnerCollectionResponse get() { return get(null); } /** - * List properties and relationships of the complianceManagementPartner objects. + * The list of Compliance Management Partners configured by the tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ComplianceManagementPartnerCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ComplianceManagementPartnerCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public ComplianceManagementPartnerCollectionResponse get(@jakarta.annotation.Nul return this.requestAdapter.send(requestInfo, errorMapping, ComplianceManagementPartnerCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new complianceManagementPartner object. + * Create new navigation property to complianceManagementPartners for deviceManagement * @param body The request body * @return a {@link ComplianceManagementPartner} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ComplianceManagementPartner post(@jakarta.annotation.Nonnull final ComplianceManagementPartner body) { return post(body, null); } /** - * Create a new complianceManagementPartner object. + * Create new navigation property to complianceManagementPartners for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ComplianceManagementPartner} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ComplianceManagementPartner post(@jakarta.annotation.Nonnull final ComplianceManagementPartner body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public ComplianceManagementPartner post(@jakarta.annotation.Nonnull final Compli return this.requestAdapter.send(requestInfo, errorMapping, ComplianceManagementPartner::createFromDiscriminatorValue); } /** - * List properties and relationships of the complianceManagementPartner objects. + * The list of Compliance Management Partners configured by the tenant. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the complianceManagementPartner objects. + * The list of Compliance Management Partners configured by the tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new complianceManagementPartner object. + * Create new navigation property to complianceManagementPartners for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new complianceManagementPartner object. + * Create new navigation property to complianceManagementPartners for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ComplianceManagementPartnersRequestBuilder withUrl(@jakarta.annotation.No return new ComplianceManagementPartnersRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the complianceManagementPartner objects. + * The list of Compliance Management Partners configured by the tenant. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/compliancemanagementpartners/item/ComplianceManagementPartnerItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/compliancemanagementpartners/item/ComplianceManagementPartnerItemRequestBuilder.java index 207bbfc5158..22e3c110bd2 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/compliancemanagementpartners/item/ComplianceManagementPartnerItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/compliancemanagementpartners/item/ComplianceManagementPartnerItemRequestBuilder.java @@ -37,18 +37,16 @@ public ComplianceManagementPartnerItemRequestBuilder(@jakarta.annotation.Nonnull super(requestAdapter, "{+baseurl}/deviceManagement/complianceManagementPartners/{complianceManagementPartner%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a complianceManagementPartner. + * Delete navigation property complianceManagementPartners for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a complianceManagementPartner. + * Delete navigation property complianceManagementPartners for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the complianceManagementPartner object. + * The list of Compliance Management Partners configured by the tenant. * @return a {@link ComplianceManagementPartner} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ComplianceManagementPartner get() { return get(null); } /** - * Read properties and relationships of the complianceManagementPartner object. + * The list of Compliance Management Partners configured by the tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ComplianceManagementPartner} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ComplianceManagementPartner get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public ComplianceManagementPartner get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, ComplianceManagementPartner::createFromDiscriminatorValue); } /** - * Update the properties of a complianceManagementPartner object. + * Update the navigation property complianceManagementPartners in deviceManagement * @param body The request body * @return a {@link ComplianceManagementPartner} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ComplianceManagementPartner patch(@jakarta.annotation.Nonnull final ComplianceManagementPartner body) { return patch(body, null); } /** - * Update the properties of a complianceManagementPartner object. + * Update the navigation property complianceManagementPartners in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ComplianceManagementPartner} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ComplianceManagementPartner patch(@jakarta.annotation.Nonnull final ComplianceManagementPartner body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public ComplianceManagementPartner patch(@jakarta.annotation.Nonnull final Compl return this.requestAdapter.send(requestInfo, errorMapping, ComplianceManagementPartner::createFromDiscriminatorValue); } /** - * Deletes a complianceManagementPartner. + * Delete navigation property complianceManagementPartners for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a complianceManagementPartner. + * Delete navigation property complianceManagementPartners for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the complianceManagementPartner object. + * The list of Compliance Management Partners configured by the tenant. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the complianceManagementPartner object. + * The list of Compliance Management Partners configured by the tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a complianceManagementPartner object. + * Update the navigation property complianceManagementPartners in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a complianceManagementPartner object. + * Update the navigation property complianceManagementPartners in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public ComplianceManagementPartnerItemRequestBuilder withUrl(@jakarta.annotation public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the complianceManagementPartner object. + * The list of Compliance Management Partners configured by the tenant. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/conditionalaccesssettings/ConditionalAccessSettingsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/conditionalaccesssettings/ConditionalAccessSettingsRequestBuilder.java index 064adeba9b6..8bb5bb59d99 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/conditionalaccesssettings/ConditionalAccessSettingsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/conditionalaccesssettings/ConditionalAccessSettingsRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the onPremisesConditionalAccessSettings object. + * The Exchange on premises conditional access settings. On premises conditional access will require devices to be both enrolled and compliant for mail access * @return a {@link OnPremisesConditionalAccessSettings} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnPremisesConditionalAccessSettings get() { return get(null); } /** - * Read properties and relationships of the onPremisesConditionalAccessSettings object. + * The Exchange on premises conditional access settings. On premises conditional access will require devices to be both enrolled and compliant for mail access * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnPremisesConditionalAccessSettings} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnPremisesConditionalAccessSettings get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public OnPremisesConditionalAccessSettings get(@jakarta.annotation.Nullable fina return this.requestAdapter.send(requestInfo, errorMapping, OnPremisesConditionalAccessSettings::createFromDiscriminatorValue); } /** - * Update the properties of a onPremisesConditionalAccessSettings object. + * Update the navigation property conditionalAccessSettings in deviceManagement * @param body The request body * @return a {@link OnPremisesConditionalAccessSettings} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnPremisesConditionalAccessSettings patch(@jakarta.annotation.Nonnull final OnPremisesConditionalAccessSettings body) { return patch(body, null); } /** - * Update the properties of a onPremisesConditionalAccessSettings object. + * Update the navigation property conditionalAccessSettings in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnPremisesConditionalAccessSettings} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnPremisesConditionalAccessSettings patch(@jakarta.annotation.Nonnull final OnPremisesConditionalAccessSettings body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the onPremisesConditionalAccessSettings object. + * The Exchange on premises conditional access settings. On premises conditional access will require devices to be both enrolled and compliant for mail access * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the onPremisesConditionalAccessSettings object. + * The Exchange on premises conditional access settings. On premises conditional access will require devices to be both enrolled and compliant for mail access * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a onPremisesConditionalAccessSettings object. + * Update the navigation property conditionalAccessSettings in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a onPremisesConditionalAccessSettings object. + * Update the navigation property conditionalAccessSettings in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public ConditionalAccessSettingsRequestBuilder withUrl(@jakarta.annotation.Nonnu public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the onPremisesConditionalAccessSettings object. + * The Exchange on premises conditional access settings. On premises conditional access will require devices to be both enrolled and compliant for mail access */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/detectedapps/DetectedAppsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/detectedapps/DetectedAppsRequestBuilder.java index 6355acd7184..b7173d1b927 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/detectedapps/DetectedAppsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/detectedapps/DetectedAppsRequestBuilder.java @@ -60,21 +60,19 @@ public DetectedAppsRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/deviceManagement/detectedApps{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the detectedApp objects. + * The list of detected apps associated with a device. * @return a {@link DetectedAppCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DetectedAppCollectionResponse get() { return get(null); } /** - * List properties and relationships of the detectedApp objects. + * The list of detected apps associated with a device. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DetectedAppCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DetectedAppCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public DetectedAppCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, DetectedAppCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new detectedApp object. + * Create new navigation property to detectedApps for deviceManagement * @param body The request body * @return a {@link DetectedApp} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DetectedApp post(@jakarta.annotation.Nonnull final DetectedApp body) { return post(body, null); } /** - * Create a new detectedApp object. + * Create new navigation property to detectedApps for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DetectedApp} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DetectedApp post(@jakarta.annotation.Nonnull final DetectedApp body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public DetectedApp post(@jakarta.annotation.Nonnull final DetectedApp body, @jak return this.requestAdapter.send(requestInfo, errorMapping, DetectedApp::createFromDiscriminatorValue); } /** - * List properties and relationships of the detectedApp objects. + * The list of detected apps associated with a device. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the detectedApp objects. + * The list of detected apps associated with a device. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new detectedApp object. + * Create new navigation property to detectedApps for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new detectedApp object. + * Create new navigation property to detectedApps for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public DetectedAppsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri return new DetectedAppsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the detectedApp objects. + * The list of detected apps associated with a device. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/detectedapps/item/DetectedAppItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/detectedapps/item/DetectedAppItemRequestBuilder.java index e9525fa5b5f..4e9d235fbd8 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/detectedapps/item/DetectedAppItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/detectedapps/item/DetectedAppItemRequestBuilder.java @@ -46,18 +46,16 @@ public DetectedAppItemRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/deviceManagement/detectedApps/{detectedApp%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a detectedApp. + * Delete navigation property detectedApps for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a detectedApp. + * Delete navigation property detectedApps for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the detectedApp object. + * The list of detected apps associated with a device. * @return a {@link DetectedApp} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DetectedApp get() { return get(null); } /** - * Read properties and relationships of the detectedApp object. + * The list of detected apps associated with a device. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DetectedApp} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DetectedApp get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public DetectedApp get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.send(requestInfo, errorMapping, DetectedApp::createFromDiscriminatorValue); } /** - * Update the properties of a detectedApp object. + * Update the navigation property detectedApps in deviceManagement * @param body The request body * @return a {@link DetectedApp} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DetectedApp patch(@jakarta.annotation.Nonnull final DetectedApp body) { return patch(body, null); } /** - * Update the properties of a detectedApp object. + * Update the navigation property detectedApps in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DetectedApp} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DetectedApp patch(@jakarta.annotation.Nonnull final DetectedApp body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public DetectedApp patch(@jakarta.annotation.Nonnull final DetectedApp body, @ja return this.requestAdapter.send(requestInfo, errorMapping, DetectedApp::createFromDiscriminatorValue); } /** - * Deletes a detectedApp. + * Delete navigation property detectedApps for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a detectedApp. + * Delete navigation property detectedApps for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the detectedApp object. + * The list of detected apps associated with a device. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the detectedApp object. + * The list of detected apps associated with a device. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a detectedApp object. + * Update the navigation property detectedApps in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a detectedApp object. + * Update the navigation property detectedApps in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public DetectedAppItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final S public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the detectedApp object. + * The list of detected apps associated with a device. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecategories/DeviceCategoriesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecategories/DeviceCategoriesRequestBuilder.java index 75522484a4e..3c4bf8d4049 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecategories/DeviceCategoriesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecategories/DeviceCategoriesRequestBuilder.java @@ -60,21 +60,19 @@ public DeviceCategoriesRequestBuilder(@jakarta.annotation.Nonnull final String r super(requestAdapter, "{+baseurl}/deviceManagement/deviceCategories{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the deviceCategory objects. + * The list of device categories with the tenant. * @return a {@link DeviceCategoryCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCategoryCollectionResponse get() { return get(null); } /** - * List properties and relationships of the deviceCategory objects. + * The list of device categories with the tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceCategoryCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCategoryCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public DeviceCategoryCollectionResponse get(@jakarta.annotation.Nullable final j return this.requestAdapter.send(requestInfo, errorMapping, DeviceCategoryCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new deviceCategory object. + * Create new navigation property to deviceCategories for deviceManagement * @param body The request body * @return a {@link DeviceCategory} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCategory post(@jakarta.annotation.Nonnull final DeviceCategory body) { return post(body, null); } /** - * Create a new deviceCategory object. + * Create new navigation property to deviceCategories for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceCategory} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCategory post(@jakarta.annotation.Nonnull final DeviceCategory body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public DeviceCategory post(@jakarta.annotation.Nonnull final DeviceCategory body return this.requestAdapter.send(requestInfo, errorMapping, DeviceCategory::createFromDiscriminatorValue); } /** - * List properties and relationships of the deviceCategory objects. + * The list of device categories with the tenant. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the deviceCategory objects. + * The list of device categories with the tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new deviceCategory object. + * Create new navigation property to deviceCategories for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new deviceCategory object. + * Create new navigation property to deviceCategories for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public DeviceCategoriesRequestBuilder withUrl(@jakarta.annotation.Nonnull final return new DeviceCategoriesRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the deviceCategory objects. + * The list of device categories with the tenant. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecategories/item/DeviceCategoryItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecategories/item/DeviceCategoryItemRequestBuilder.java index 6a52e75b108..7fce917aff4 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecategories/item/DeviceCategoryItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecategories/item/DeviceCategoryItemRequestBuilder.java @@ -37,18 +37,16 @@ public DeviceCategoryItemRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/deviceManagement/deviceCategories/{deviceCategory%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a deviceCategory. + * Delete navigation property deviceCategories for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a deviceCategory. + * Delete navigation property deviceCategories for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the deviceCategory object. + * The list of device categories with the tenant. * @return a {@link DeviceCategory} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCategory get() { return get(null); } /** - * Read properties and relationships of the deviceCategory object. + * The list of device categories with the tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceCategory} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCategory get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public DeviceCategory get(@jakarta.annotation.Nullable final java.util.function. return this.requestAdapter.send(requestInfo, errorMapping, DeviceCategory::createFromDiscriminatorValue); } /** - * Update the properties of a deviceCategory object. + * Update the navigation property deviceCategories in deviceManagement * @param body The request body * @return a {@link DeviceCategory} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCategory patch(@jakarta.annotation.Nonnull final DeviceCategory body) { return patch(body, null); } /** - * Update the properties of a deviceCategory object. + * Update the navigation property deviceCategories in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceCategory} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCategory patch(@jakarta.annotation.Nonnull final DeviceCategory body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public DeviceCategory patch(@jakarta.annotation.Nonnull final DeviceCategory bod return this.requestAdapter.send(requestInfo, errorMapping, DeviceCategory::createFromDiscriminatorValue); } /** - * Deletes a deviceCategory. + * Delete navigation property deviceCategories for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a deviceCategory. + * Delete navigation property deviceCategories for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the deviceCategory object. + * The list of device categories with the tenant. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the deviceCategory object. + * The list of device categories with the tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a deviceCategory object. + * Update the navigation property deviceCategories in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a deviceCategory object. + * Update the navigation property deviceCategories in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public DeviceCategoryItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fina public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the deviceCategory object. + * The list of device categories with the tenant. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/DeviceCompliancePoliciesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/DeviceCompliancePoliciesRequestBuilder.java index 34e8d8cc966..67248b850a5 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/DeviceCompliancePoliciesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/DeviceCompliancePoliciesRequestBuilder.java @@ -60,21 +60,19 @@ public DeviceCompliancePoliciesRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/deviceManagement/deviceCompliancePolicies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the windowsPhone81CompliancePolicy objects. + * The device compliance policies. * @return a {@link DeviceCompliancePolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCompliancePolicyCollectionResponse get() { return get(null); } /** - * List properties and relationships of the windowsPhone81CompliancePolicy objects. + * The device compliance policies. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceCompliancePolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCompliancePolicyCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public DeviceCompliancePolicyCollectionResponse get(@jakarta.annotation.Nullable return this.requestAdapter.send(requestInfo, errorMapping, DeviceCompliancePolicyCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new windowsPhone81CompliancePolicy object. + * Create new navigation property to deviceCompliancePolicies for deviceManagement * @param body The request body * @return a {@link DeviceCompliancePolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCompliancePolicy post(@jakarta.annotation.Nonnull final DeviceCompliancePolicy body) { return post(body, null); } /** - * Create a new windowsPhone81CompliancePolicy object. + * Create new navigation property to deviceCompliancePolicies for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceCompliancePolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCompliancePolicy post(@jakarta.annotation.Nonnull final DeviceCompliancePolicy body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public DeviceCompliancePolicy post(@jakarta.annotation.Nonnull final DeviceCompl return this.requestAdapter.send(requestInfo, errorMapping, DeviceCompliancePolicy::createFromDiscriminatorValue); } /** - * List properties and relationships of the windowsPhone81CompliancePolicy objects. + * The device compliance policies. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the windowsPhone81CompliancePolicy objects. + * The device compliance policies. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new windowsPhone81CompliancePolicy object. + * Create new navigation property to deviceCompliancePolicies for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new windowsPhone81CompliancePolicy object. + * Create new navigation property to deviceCompliancePolicies for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public DeviceCompliancePoliciesRequestBuilder withUrl(@jakarta.annotation.Nonnul return new DeviceCompliancePoliciesRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the windowsPhone81CompliancePolicy objects. + * The device compliance policies. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/DeviceCompliancePolicyItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/DeviceCompliancePolicyItemRequestBuilder.java index dcc5741c88b..0e06031cb1b 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/DeviceCompliancePolicyItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/DeviceCompliancePolicyItemRequestBuilder.java @@ -118,18 +118,16 @@ public DeviceCompliancePolicyItemRequestBuilder(@jakarta.annotation.Nonnull fina super(requestAdapter, "{+baseurl}/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a androidCompliancePolicy. + * Delete navigation property deviceCompliancePolicies for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a androidCompliancePolicy. + * Delete navigation property deviceCompliancePolicies for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -138,21 +136,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the windowsPhone81CompliancePolicy object. + * The device compliance policies. * @return a {@link DeviceCompliancePolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCompliancePolicy get() { return get(null); } /** - * Read properties and relationships of the windowsPhone81CompliancePolicy object. + * The device compliance policies. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceCompliancePolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCompliancePolicy get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -162,23 +158,21 @@ public DeviceCompliancePolicy get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, DeviceCompliancePolicy::createFromDiscriminatorValue); } /** - * Update the properties of a windowsPhone81CompliancePolicy object. + * Update the navigation property deviceCompliancePolicies in deviceManagement * @param body The request body * @return a {@link DeviceCompliancePolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCompliancePolicy patch(@jakarta.annotation.Nonnull final DeviceCompliancePolicy body) { return patch(body, null); } /** - * Update the properties of a windowsPhone81CompliancePolicy object. + * Update the navigation property deviceCompliancePolicies in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceCompliancePolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCompliancePolicy patch(@jakarta.annotation.Nonnull final DeviceCompliancePolicy body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -189,7 +183,7 @@ public DeviceCompliancePolicy patch(@jakarta.annotation.Nonnull final DeviceComp return this.requestAdapter.send(requestInfo, errorMapping, DeviceCompliancePolicy::createFromDiscriminatorValue); } /** - * Deletes a androidCompliancePolicy. + * Delete navigation property deviceCompliancePolicies for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -197,7 +191,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a androidCompliancePolicy. + * Delete navigation property deviceCompliancePolicies for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -209,7 +203,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the windowsPhone81CompliancePolicy object. + * The device compliance policies. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -217,7 +211,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the windowsPhone81CompliancePolicy object. + * The device compliance policies. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -229,7 +223,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a windowsPhone81CompliancePolicy object. + * Update the navigation property deviceCompliancePolicies in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -238,7 +232,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a windowsPhone81CompliancePolicy object. + * Update the navigation property deviceCompliancePolicies in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -269,7 +263,7 @@ public DeviceCompliancePolicyItemRequestBuilder withUrl(@jakarta.annotation.Nonn public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the windowsPhone81CompliancePolicy object. + * The device compliance policies. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/assignments/AssignmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/assignments/AssignmentsRequestBuilder.java index 66ed3cccfec..d0fea1a337e 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/assignments/AssignmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/assignments/AssignmentsRequestBuilder.java @@ -60,21 +60,19 @@ public AssignmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy%2Did}/assignments{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the deviceCompliancePolicyAssignment objects. + * The collection of assignments for this compliance policy. * @return a {@link DeviceCompliancePolicyAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCompliancePolicyAssignmentCollectionResponse get() { return get(null); } /** - * List properties and relationships of the deviceCompliancePolicyAssignment objects. + * The collection of assignments for this compliance policy. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceCompliancePolicyAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCompliancePolicyAssignmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public DeviceCompliancePolicyAssignmentCollectionResponse get(@jakarta.annotatio return this.requestAdapter.send(requestInfo, errorMapping, DeviceCompliancePolicyAssignmentCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new deviceCompliancePolicyAssignment object. + * Create new navigation property to assignments for deviceManagement * @param body The request body * @return a {@link DeviceCompliancePolicyAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCompliancePolicyAssignment post(@jakarta.annotation.Nonnull final DeviceCompliancePolicyAssignment body) { return post(body, null); } /** - * Create a new deviceCompliancePolicyAssignment object. + * Create new navigation property to assignments for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceCompliancePolicyAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCompliancePolicyAssignment post(@jakarta.annotation.Nonnull final DeviceCompliancePolicyAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public DeviceCompliancePolicyAssignment post(@jakarta.annotation.Nonnull final D return this.requestAdapter.send(requestInfo, errorMapping, DeviceCompliancePolicyAssignment::createFromDiscriminatorValue); } /** - * List properties and relationships of the deviceCompliancePolicyAssignment objects. + * The collection of assignments for this compliance policy. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the deviceCompliancePolicyAssignment objects. + * The collection of assignments for this compliance policy. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new deviceCompliancePolicyAssignment object. + * Create new navigation property to assignments for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new deviceCompliancePolicyAssignment object. + * Create new navigation property to assignments for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public AssignmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AssignmentsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the deviceCompliancePolicyAssignment objects. + * The collection of assignments for this compliance policy. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/assignments/item/DeviceCompliancePolicyAssignmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/assignments/item/DeviceCompliancePolicyAssignmentItemRequestBuilder.java index 88d7858b1ce..9200750df91 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/assignments/item/DeviceCompliancePolicyAssignmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/assignments/item/DeviceCompliancePolicyAssignmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public DeviceCompliancePolicyAssignmentItemRequestBuilder(@jakarta.annotation.No super(requestAdapter, "{+baseurl}/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy%2Did}/assignments/{deviceCompliancePolicyAssignment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a deviceCompliancePolicyAssignment. + * Delete navigation property assignments for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a deviceCompliancePolicyAssignment. + * Delete navigation property assignments for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the deviceCompliancePolicyAssignment object. + * The collection of assignments for this compliance policy. * @return a {@link DeviceCompliancePolicyAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCompliancePolicyAssignment get() { return get(null); } /** - * Read properties and relationships of the deviceCompliancePolicyAssignment object. + * The collection of assignments for this compliance policy. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceCompliancePolicyAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCompliancePolicyAssignment get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public DeviceCompliancePolicyAssignment get(@jakarta.annotation.Nullable final j return this.requestAdapter.send(requestInfo, errorMapping, DeviceCompliancePolicyAssignment::createFromDiscriminatorValue); } /** - * Update the properties of a deviceCompliancePolicyAssignment object. + * Update the navigation property assignments in deviceManagement * @param body The request body * @return a {@link DeviceCompliancePolicyAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCompliancePolicyAssignment patch(@jakarta.annotation.Nonnull final DeviceCompliancePolicyAssignment body) { return patch(body, null); } /** - * Update the properties of a deviceCompliancePolicyAssignment object. + * Update the navigation property assignments in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceCompliancePolicyAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCompliancePolicyAssignment patch(@jakarta.annotation.Nonnull final DeviceCompliancePolicyAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public DeviceCompliancePolicyAssignment patch(@jakarta.annotation.Nonnull final return this.requestAdapter.send(requestInfo, errorMapping, DeviceCompliancePolicyAssignment::createFromDiscriminatorValue); } /** - * Deletes a deviceCompliancePolicyAssignment. + * Delete navigation property assignments for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a deviceCompliancePolicyAssignment. + * Delete navigation property assignments for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the deviceCompliancePolicyAssignment object. + * The collection of assignments for this compliance policy. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the deviceCompliancePolicyAssignment object. + * The collection of assignments for this compliance policy. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a deviceCompliancePolicyAssignment object. + * Update the navigation property assignments in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a deviceCompliancePolicyAssignment object. + * Update the navigation property assignments in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public DeviceCompliancePolicyAssignmentItemRequestBuilder withUrl(@jakarta.annot public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the deviceCompliancePolicyAssignment object. + * The collection of assignments for this compliance policy. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/devicestatuses/DeviceStatusesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/devicestatuses/DeviceStatusesRequestBuilder.java index 7f8c6253b40..39fa71b9ae2 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/devicestatuses/DeviceStatusesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/devicestatuses/DeviceStatusesRequestBuilder.java @@ -60,21 +60,19 @@ public DeviceStatusesRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy%2Did}/deviceStatuses{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the deviceComplianceDeviceStatus objects. + * List of DeviceComplianceDeviceStatus. * @return a {@link DeviceComplianceDeviceStatusCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceDeviceStatusCollectionResponse get() { return get(null); } /** - * List properties and relationships of the deviceComplianceDeviceStatus objects. + * List of DeviceComplianceDeviceStatus. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceComplianceDeviceStatusCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceDeviceStatusCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public DeviceComplianceDeviceStatusCollectionResponse get(@jakarta.annotation.Nu return this.requestAdapter.send(requestInfo, errorMapping, DeviceComplianceDeviceStatusCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new deviceComplianceDeviceStatus object. + * Create new navigation property to deviceStatuses for deviceManagement * @param body The request body * @return a {@link DeviceComplianceDeviceStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceDeviceStatus post(@jakarta.annotation.Nonnull final DeviceComplianceDeviceStatus body) { return post(body, null); } /** - * Create a new deviceComplianceDeviceStatus object. + * Create new navigation property to deviceStatuses for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceComplianceDeviceStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceDeviceStatus post(@jakarta.annotation.Nonnull final DeviceComplianceDeviceStatus body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public DeviceComplianceDeviceStatus post(@jakarta.annotation.Nonnull final Devic return this.requestAdapter.send(requestInfo, errorMapping, DeviceComplianceDeviceStatus::createFromDiscriminatorValue); } /** - * List properties and relationships of the deviceComplianceDeviceStatus objects. + * List of DeviceComplianceDeviceStatus. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the deviceComplianceDeviceStatus objects. + * List of DeviceComplianceDeviceStatus. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new deviceComplianceDeviceStatus object. + * Create new navigation property to deviceStatuses for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new deviceComplianceDeviceStatus object. + * Create new navigation property to deviceStatuses for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public DeviceStatusesRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new DeviceStatusesRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the deviceComplianceDeviceStatus objects. + * List of DeviceComplianceDeviceStatus. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/devicestatuses/item/DeviceComplianceDeviceStatusItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/devicestatuses/item/DeviceComplianceDeviceStatusItemRequestBuilder.java index 5e629eb66b5..68394f1bf27 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/devicestatuses/item/DeviceComplianceDeviceStatusItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/devicestatuses/item/DeviceComplianceDeviceStatusItemRequestBuilder.java @@ -37,18 +37,16 @@ public DeviceComplianceDeviceStatusItemRequestBuilder(@jakarta.annotation.Nonnul super(requestAdapter, "{+baseurl}/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy%2Did}/deviceStatuses/{deviceComplianceDeviceStatus%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a deviceComplianceDeviceStatus. + * Delete navigation property deviceStatuses for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a deviceComplianceDeviceStatus. + * Delete navigation property deviceStatuses for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the deviceComplianceDeviceStatus object. + * List of DeviceComplianceDeviceStatus. * @return a {@link DeviceComplianceDeviceStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceDeviceStatus get() { return get(null); } /** - * Read properties and relationships of the deviceComplianceDeviceStatus object. + * List of DeviceComplianceDeviceStatus. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceComplianceDeviceStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceDeviceStatus get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public DeviceComplianceDeviceStatus get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, DeviceComplianceDeviceStatus::createFromDiscriminatorValue); } /** - * Update the properties of a deviceComplianceDeviceStatus object. + * Update the navigation property deviceStatuses in deviceManagement * @param body The request body * @return a {@link DeviceComplianceDeviceStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceDeviceStatus patch(@jakarta.annotation.Nonnull final DeviceComplianceDeviceStatus body) { return patch(body, null); } /** - * Update the properties of a deviceComplianceDeviceStatus object. + * Update the navigation property deviceStatuses in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceComplianceDeviceStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceDeviceStatus patch(@jakarta.annotation.Nonnull final DeviceComplianceDeviceStatus body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public DeviceComplianceDeviceStatus patch(@jakarta.annotation.Nonnull final Devi return this.requestAdapter.send(requestInfo, errorMapping, DeviceComplianceDeviceStatus::createFromDiscriminatorValue); } /** - * Deletes a deviceComplianceDeviceStatus. + * Delete navigation property deviceStatuses for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a deviceComplianceDeviceStatus. + * Delete navigation property deviceStatuses for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the deviceComplianceDeviceStatus object. + * List of DeviceComplianceDeviceStatus. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the deviceComplianceDeviceStatus object. + * List of DeviceComplianceDeviceStatus. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a deviceComplianceDeviceStatus object. + * Update the navigation property deviceStatuses in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a deviceComplianceDeviceStatus object. + * Update the navigation property deviceStatuses in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public DeviceComplianceDeviceStatusItemRequestBuilder withUrl(@jakarta.annotatio public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the deviceComplianceDeviceStatus object. + * List of DeviceComplianceDeviceStatus. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/devicestatusoverview/DeviceStatusOverviewRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/devicestatusoverview/DeviceStatusOverviewRequestBuilder.java index 0e417ff690e..fe1234f20a7 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/devicestatusoverview/DeviceStatusOverviewRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/devicestatusoverview/DeviceStatusOverviewRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the deviceComplianceDeviceOverview object. + * Device compliance devices status overview * @return a {@link DeviceComplianceDeviceOverview} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceDeviceOverview get() { return get(null); } /** - * Read properties and relationships of the deviceComplianceDeviceOverview object. + * Device compliance devices status overview * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceComplianceDeviceOverview} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceDeviceOverview get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public DeviceComplianceDeviceOverview get(@jakarta.annotation.Nullable final jav return this.requestAdapter.send(requestInfo, errorMapping, DeviceComplianceDeviceOverview::createFromDiscriminatorValue); } /** - * Update the properties of a deviceComplianceDeviceOverview object. + * Update the navigation property deviceStatusOverview in deviceManagement * @param body The request body * @return a {@link DeviceComplianceDeviceOverview} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceDeviceOverview patch(@jakarta.annotation.Nonnull final DeviceComplianceDeviceOverview body) { return patch(body, null); } /** - * Update the properties of a deviceComplianceDeviceOverview object. + * Update the navigation property deviceStatusOverview in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceComplianceDeviceOverview} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceDeviceOverview patch(@jakarta.annotation.Nonnull final DeviceComplianceDeviceOverview body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the deviceComplianceDeviceOverview object. + * Device compliance devices status overview * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the deviceComplianceDeviceOverview object. + * Device compliance devices status overview * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a deviceComplianceDeviceOverview object. + * Update the navigation property deviceStatusOverview in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a deviceComplianceDeviceOverview object. + * Update the navigation property deviceStatusOverview in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public DeviceStatusOverviewRequestBuilder withUrl(@jakarta.annotation.Nonnull fi public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the deviceComplianceDeviceOverview object. + * Device compliance devices status overview */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/scheduledactionsforrule/ScheduledActionsForRuleRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/scheduledactionsforrule/ScheduledActionsForRuleRequestBuilder.java index 02659a7a21f..e3bb12aa740 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/scheduledactionsforrule/ScheduledActionsForRuleRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/scheduledactionsforrule/ScheduledActionsForRuleRequestBuilder.java @@ -60,21 +60,19 @@ public ScheduledActionsForRuleRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy%2Did}/scheduledActionsForRule{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the deviceComplianceScheduledActionForRule objects. + * The list of scheduled action per rule for this compliance policy. This is a required property when creating any individual per-platform compliance policies. * @return a {@link DeviceComplianceScheduledActionForRuleCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceScheduledActionForRuleCollectionResponse get() { return get(null); } /** - * List properties and relationships of the deviceComplianceScheduledActionForRule objects. + * The list of scheduled action per rule for this compliance policy. This is a required property when creating any individual per-platform compliance policies. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceComplianceScheduledActionForRuleCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceScheduledActionForRuleCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public DeviceComplianceScheduledActionForRuleCollectionResponse get(@jakarta.ann return this.requestAdapter.send(requestInfo, errorMapping, DeviceComplianceScheduledActionForRuleCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new deviceComplianceScheduledActionForRule object. + * Create new navigation property to scheduledActionsForRule for deviceManagement * @param body The request body * @return a {@link DeviceComplianceScheduledActionForRule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceScheduledActionForRule post(@jakarta.annotation.Nonnull final DeviceComplianceScheduledActionForRule body) { return post(body, null); } /** - * Create a new deviceComplianceScheduledActionForRule object. + * Create new navigation property to scheduledActionsForRule for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceComplianceScheduledActionForRule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceScheduledActionForRule post(@jakarta.annotation.Nonnull final DeviceComplianceScheduledActionForRule body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public DeviceComplianceScheduledActionForRule post(@jakarta.annotation.Nonnull f return this.requestAdapter.send(requestInfo, errorMapping, DeviceComplianceScheduledActionForRule::createFromDiscriminatorValue); } /** - * List properties and relationships of the deviceComplianceScheduledActionForRule objects. + * The list of scheduled action per rule for this compliance policy. This is a required property when creating any individual per-platform compliance policies. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the deviceComplianceScheduledActionForRule objects. + * The list of scheduled action per rule for this compliance policy. This is a required property when creating any individual per-platform compliance policies. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new deviceComplianceScheduledActionForRule object. + * Create new navigation property to scheduledActionsForRule for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new deviceComplianceScheduledActionForRule object. + * Create new navigation property to scheduledActionsForRule for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ScheduledActionsForRuleRequestBuilder withUrl(@jakarta.annotation.Nonnull return new ScheduledActionsForRuleRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the deviceComplianceScheduledActionForRule objects. + * The list of scheduled action per rule for this compliance policy. This is a required property when creating any individual per-platform compliance policies. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/scheduledactionsforrule/item/DeviceComplianceScheduledActionForRuleItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/scheduledactionsforrule/item/DeviceComplianceScheduledActionForRuleItemRequestBuilder.java index 46bee056521..2b5c7fff70c 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/scheduledactionsforrule/item/DeviceComplianceScheduledActionForRuleItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/scheduledactionsforrule/item/DeviceComplianceScheduledActionForRuleItemRequestBuilder.java @@ -46,18 +46,16 @@ public DeviceComplianceScheduledActionForRuleItemRequestBuilder(@jakarta.annotat super(requestAdapter, "{+baseurl}/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy%2Did}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a deviceComplianceScheduledActionForRule. + * Delete navigation property scheduledActionsForRule for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a deviceComplianceScheduledActionForRule. + * Delete navigation property scheduledActionsForRule for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the deviceComplianceScheduledActionForRule object. + * The list of scheduled action per rule for this compliance policy. This is a required property when creating any individual per-platform compliance policies. * @return a {@link DeviceComplianceScheduledActionForRule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceScheduledActionForRule get() { return get(null); } /** - * Read properties and relationships of the deviceComplianceScheduledActionForRule object. + * The list of scheduled action per rule for this compliance policy. This is a required property when creating any individual per-platform compliance policies. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceComplianceScheduledActionForRule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceScheduledActionForRule get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public DeviceComplianceScheduledActionForRule get(@jakarta.annotation.Nullable f return this.requestAdapter.send(requestInfo, errorMapping, DeviceComplianceScheduledActionForRule::createFromDiscriminatorValue); } /** - * Update the properties of a deviceComplianceScheduledActionForRule object. + * Update the navigation property scheduledActionsForRule in deviceManagement * @param body The request body * @return a {@link DeviceComplianceScheduledActionForRule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceScheduledActionForRule patch(@jakarta.annotation.Nonnull final DeviceComplianceScheduledActionForRule body) { return patch(body, null); } /** - * Update the properties of a deviceComplianceScheduledActionForRule object. + * Update the navigation property scheduledActionsForRule in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceComplianceScheduledActionForRule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceScheduledActionForRule patch(@jakarta.annotation.Nonnull final DeviceComplianceScheduledActionForRule body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public DeviceComplianceScheduledActionForRule patch(@jakarta.annotation.Nonnull return this.requestAdapter.send(requestInfo, errorMapping, DeviceComplianceScheduledActionForRule::createFromDiscriminatorValue); } /** - * Deletes a deviceComplianceScheduledActionForRule. + * Delete navigation property scheduledActionsForRule for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a deviceComplianceScheduledActionForRule. + * Delete navigation property scheduledActionsForRule for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the deviceComplianceScheduledActionForRule object. + * The list of scheduled action per rule for this compliance policy. This is a required property when creating any individual per-platform compliance policies. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the deviceComplianceScheduledActionForRule object. + * The list of scheduled action per rule for this compliance policy. This is a required property when creating any individual per-platform compliance policies. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a deviceComplianceScheduledActionForRule object. + * Update the navigation property scheduledActionsForRule in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a deviceComplianceScheduledActionForRule object. + * Update the navigation property scheduledActionsForRule in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public DeviceComplianceScheduledActionForRuleItemRequestBuilder withUrl(@jakarta public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the deviceComplianceScheduledActionForRule object. + * The list of scheduled action per rule for this compliance policy. This is a required property when creating any individual per-platform compliance policies. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/scheduledactionsforrule/item/scheduledactionconfigurations/ScheduledActionConfigurationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/scheduledactionsforrule/item/scheduledactionconfigurations/ScheduledActionConfigurationsRequestBuilder.java index f6e0075331a..9bac30642b6 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/scheduledactionsforrule/item/scheduledactionconfigurations/ScheduledActionConfigurationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/scheduledactionsforrule/item/scheduledactionconfigurations/ScheduledActionConfigurationsRequestBuilder.java @@ -60,21 +60,19 @@ public ScheduledActionConfigurationsRequestBuilder(@jakarta.annotation.Nonnull f super(requestAdapter, "{+baseurl}/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy%2Did}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule%2Did}/scheduledActionConfigurations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the deviceComplianceActionItem objects. + * The list of scheduled action configurations for this compliance policy. Compliance policy must have one and only one block scheduled action. * @return a {@link DeviceComplianceActionItemCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceActionItemCollectionResponse get() { return get(null); } /** - * List properties and relationships of the deviceComplianceActionItem objects. + * The list of scheduled action configurations for this compliance policy. Compliance policy must have one and only one block scheduled action. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceComplianceActionItemCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceActionItemCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public DeviceComplianceActionItemCollectionResponse get(@jakarta.annotation.Null return this.requestAdapter.send(requestInfo, errorMapping, DeviceComplianceActionItemCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new deviceComplianceActionItem object. + * Create new navigation property to scheduledActionConfigurations for deviceManagement * @param body The request body * @return a {@link DeviceComplianceActionItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceActionItem post(@jakarta.annotation.Nonnull final DeviceComplianceActionItem body) { return post(body, null); } /** - * Create a new deviceComplianceActionItem object. + * Create new navigation property to scheduledActionConfigurations for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceComplianceActionItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceActionItem post(@jakarta.annotation.Nonnull final DeviceComplianceActionItem body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public DeviceComplianceActionItem post(@jakarta.annotation.Nonnull final DeviceC return this.requestAdapter.send(requestInfo, errorMapping, DeviceComplianceActionItem::createFromDiscriminatorValue); } /** - * List properties and relationships of the deviceComplianceActionItem objects. + * The list of scheduled action configurations for this compliance policy. Compliance policy must have one and only one block scheduled action. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the deviceComplianceActionItem objects. + * The list of scheduled action configurations for this compliance policy. Compliance policy must have one and only one block scheduled action. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new deviceComplianceActionItem object. + * Create new navigation property to scheduledActionConfigurations for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new deviceComplianceActionItem object. + * Create new navigation property to scheduledActionConfigurations for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ScheduledActionConfigurationsRequestBuilder withUrl(@jakarta.annotation.N return new ScheduledActionConfigurationsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the deviceComplianceActionItem objects. + * The list of scheduled action configurations for this compliance policy. Compliance policy must have one and only one block scheduled action. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/scheduledactionsforrule/item/scheduledactionconfigurations/item/DeviceComplianceActionItemItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/scheduledactionsforrule/item/scheduledactionconfigurations/item/DeviceComplianceActionItemItemRequestBuilder.java index df4ea91c2eb..e844a6833f9 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/scheduledactionsforrule/item/scheduledactionconfigurations/item/DeviceComplianceActionItemItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/scheduledactionsforrule/item/scheduledactionconfigurations/item/DeviceComplianceActionItemItemRequestBuilder.java @@ -37,18 +37,16 @@ public DeviceComplianceActionItemItemRequestBuilder(@jakarta.annotation.Nonnull super(requestAdapter, "{+baseurl}/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy%2Did}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule%2Did}/scheduledActionConfigurations/{deviceComplianceActionItem%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a deviceComplianceActionItem. + * Delete navigation property scheduledActionConfigurations for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a deviceComplianceActionItem. + * Delete navigation property scheduledActionConfigurations for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the deviceComplianceActionItem object. + * The list of scheduled action configurations for this compliance policy. Compliance policy must have one and only one block scheduled action. * @return a {@link DeviceComplianceActionItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceActionItem get() { return get(null); } /** - * Read properties and relationships of the deviceComplianceActionItem object. + * The list of scheduled action configurations for this compliance policy. Compliance policy must have one and only one block scheduled action. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceComplianceActionItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceActionItem get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public DeviceComplianceActionItem get(@jakarta.annotation.Nullable final java.ut return this.requestAdapter.send(requestInfo, errorMapping, DeviceComplianceActionItem::createFromDiscriminatorValue); } /** - * Update the properties of a deviceComplianceActionItem object. + * Update the navigation property scheduledActionConfigurations in deviceManagement * @param body The request body * @return a {@link DeviceComplianceActionItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceActionItem patch(@jakarta.annotation.Nonnull final DeviceComplianceActionItem body) { return patch(body, null); } /** - * Update the properties of a deviceComplianceActionItem object. + * Update the navigation property scheduledActionConfigurations in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceComplianceActionItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceActionItem patch(@jakarta.annotation.Nonnull final DeviceComplianceActionItem body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public DeviceComplianceActionItem patch(@jakarta.annotation.Nonnull final Device return this.requestAdapter.send(requestInfo, errorMapping, DeviceComplianceActionItem::createFromDiscriminatorValue); } /** - * Deletes a deviceComplianceActionItem. + * Delete navigation property scheduledActionConfigurations for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a deviceComplianceActionItem. + * Delete navigation property scheduledActionConfigurations for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the deviceComplianceActionItem object. + * The list of scheduled action configurations for this compliance policy. Compliance policy must have one and only one block scheduled action. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the deviceComplianceActionItem object. + * The list of scheduled action configurations for this compliance policy. Compliance policy must have one and only one block scheduled action. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a deviceComplianceActionItem object. + * Update the navigation property scheduledActionConfigurations in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a deviceComplianceActionItem object. + * Update the navigation property scheduledActionConfigurations in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public DeviceComplianceActionItemItemRequestBuilder withUrl(@jakarta.annotation. public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the deviceComplianceActionItem object. + * The list of scheduled action configurations for this compliance policy. Compliance policy must have one and only one block scheduled action. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/userstatuses/UserStatusesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/userstatuses/UserStatusesRequestBuilder.java index 2ae11740929..90373624c4a 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/userstatuses/UserStatusesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/userstatuses/UserStatusesRequestBuilder.java @@ -60,21 +60,19 @@ public UserStatusesRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy%2Did}/userStatuses{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the deviceComplianceUserStatus objects. + * List of DeviceComplianceUserStatus. * @return a {@link DeviceComplianceUserStatusCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceUserStatusCollectionResponse get() { return get(null); } /** - * List properties and relationships of the deviceComplianceUserStatus objects. + * List of DeviceComplianceUserStatus. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceComplianceUserStatusCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceUserStatusCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public DeviceComplianceUserStatusCollectionResponse get(@jakarta.annotation.Null return this.requestAdapter.send(requestInfo, errorMapping, DeviceComplianceUserStatusCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new deviceComplianceUserStatus object. + * Create new navigation property to userStatuses for deviceManagement * @param body The request body * @return a {@link DeviceComplianceUserStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceUserStatus post(@jakarta.annotation.Nonnull final DeviceComplianceUserStatus body) { return post(body, null); } /** - * Create a new deviceComplianceUserStatus object. + * Create new navigation property to userStatuses for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceComplianceUserStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceUserStatus post(@jakarta.annotation.Nonnull final DeviceComplianceUserStatus body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public DeviceComplianceUserStatus post(@jakarta.annotation.Nonnull final DeviceC return this.requestAdapter.send(requestInfo, errorMapping, DeviceComplianceUserStatus::createFromDiscriminatorValue); } /** - * List properties and relationships of the deviceComplianceUserStatus objects. + * List of DeviceComplianceUserStatus. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the deviceComplianceUserStatus objects. + * List of DeviceComplianceUserStatus. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new deviceComplianceUserStatus object. + * Create new navigation property to userStatuses for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new deviceComplianceUserStatus object. + * Create new navigation property to userStatuses for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public UserStatusesRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri return new UserStatusesRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the deviceComplianceUserStatus objects. + * List of DeviceComplianceUserStatus. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/userstatuses/item/DeviceComplianceUserStatusItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/userstatuses/item/DeviceComplianceUserStatusItemRequestBuilder.java index 66b89819b5d..20c091d39cd 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/userstatuses/item/DeviceComplianceUserStatusItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/userstatuses/item/DeviceComplianceUserStatusItemRequestBuilder.java @@ -37,18 +37,16 @@ public DeviceComplianceUserStatusItemRequestBuilder(@jakarta.annotation.Nonnull super(requestAdapter, "{+baseurl}/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy%2Did}/userStatuses/{deviceComplianceUserStatus%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a deviceComplianceUserStatus. + * Delete navigation property userStatuses for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a deviceComplianceUserStatus. + * Delete navigation property userStatuses for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the deviceComplianceUserStatus object. + * List of DeviceComplianceUserStatus. * @return a {@link DeviceComplianceUserStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceUserStatus get() { return get(null); } /** - * Read properties and relationships of the deviceComplianceUserStatus object. + * List of DeviceComplianceUserStatus. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceComplianceUserStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceUserStatus get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public DeviceComplianceUserStatus get(@jakarta.annotation.Nullable final java.ut return this.requestAdapter.send(requestInfo, errorMapping, DeviceComplianceUserStatus::createFromDiscriminatorValue); } /** - * Update the properties of a deviceComplianceUserStatus object. + * Update the navigation property userStatuses in deviceManagement * @param body The request body * @return a {@link DeviceComplianceUserStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceUserStatus patch(@jakarta.annotation.Nonnull final DeviceComplianceUserStatus body) { return patch(body, null); } /** - * Update the properties of a deviceComplianceUserStatus object. + * Update the navigation property userStatuses in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceComplianceUserStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceUserStatus patch(@jakarta.annotation.Nonnull final DeviceComplianceUserStatus body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public DeviceComplianceUserStatus patch(@jakarta.annotation.Nonnull final Device return this.requestAdapter.send(requestInfo, errorMapping, DeviceComplianceUserStatus::createFromDiscriminatorValue); } /** - * Deletes a deviceComplianceUserStatus. + * Delete navigation property userStatuses for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a deviceComplianceUserStatus. + * Delete navigation property userStatuses for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the deviceComplianceUserStatus object. + * List of DeviceComplianceUserStatus. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the deviceComplianceUserStatus object. + * List of DeviceComplianceUserStatus. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a deviceComplianceUserStatus object. + * Update the navigation property userStatuses in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a deviceComplianceUserStatus object. + * Update the navigation property userStatuses in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public DeviceComplianceUserStatusItemRequestBuilder withUrl(@jakarta.annotation. public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the deviceComplianceUserStatus object. + * List of DeviceComplianceUserStatus. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/userstatusoverview/UserStatusOverviewRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/userstatusoverview/UserStatusOverviewRequestBuilder.java index 559f8b66e90..447b68bc89b 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/userstatusoverview/UserStatusOverviewRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicies/item/userstatusoverview/UserStatusOverviewRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the deviceComplianceUserOverview object. + * Device compliance users status overview * @return a {@link DeviceComplianceUserOverview} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceUserOverview get() { return get(null); } /** - * Read properties and relationships of the deviceComplianceUserOverview object. + * Device compliance users status overview * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceComplianceUserOverview} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceUserOverview get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public DeviceComplianceUserOverview get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, DeviceComplianceUserOverview::createFromDiscriminatorValue); } /** - * Update the properties of a deviceComplianceUserOverview object. + * Update the navigation property userStatusOverview in deviceManagement * @param body The request body * @return a {@link DeviceComplianceUserOverview} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceUserOverview patch(@jakarta.annotation.Nonnull final DeviceComplianceUserOverview body) { return patch(body, null); } /** - * Update the properties of a deviceComplianceUserOverview object. + * Update the navigation property userStatusOverview in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceComplianceUserOverview} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceUserOverview patch(@jakarta.annotation.Nonnull final DeviceComplianceUserOverview body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the deviceComplianceUserOverview object. + * Device compliance users status overview * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the deviceComplianceUserOverview object. + * Device compliance users status overview * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a deviceComplianceUserOverview object. + * Update the navigation property userStatusOverview in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a deviceComplianceUserOverview object. + * Update the navigation property userStatusOverview in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public UserStatusOverviewRequestBuilder withUrl(@jakarta.annotation.Nonnull fina public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the deviceComplianceUserOverview object. + * Device compliance users status overview */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicydevicestatesummary/DeviceCompliancePolicyDeviceStateSummaryRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicydevicestatesummary/DeviceCompliancePolicyDeviceStateSummaryRequestBuilder.java index 38ee5e82ed9..4a85550ed10 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicydevicestatesummary/DeviceCompliancePolicyDeviceStateSummaryRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicydevicestatesummary/DeviceCompliancePolicyDeviceStateSummaryRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the deviceCompliancePolicyDeviceStateSummary object. + * The device compliance state summary for this account. * @return a {@link DeviceCompliancePolicyDeviceStateSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCompliancePolicyDeviceStateSummary get() { return get(null); } /** - * Read properties and relationships of the deviceCompliancePolicyDeviceStateSummary object. + * The device compliance state summary for this account. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceCompliancePolicyDeviceStateSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCompliancePolicyDeviceStateSummary get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public DeviceCompliancePolicyDeviceStateSummary get(@jakarta.annotation.Nullable return this.requestAdapter.send(requestInfo, errorMapping, DeviceCompliancePolicyDeviceStateSummary::createFromDiscriminatorValue); } /** - * Update the properties of a deviceCompliancePolicyDeviceStateSummary object. + * Update the navigation property deviceCompliancePolicyDeviceStateSummary in deviceManagement * @param body The request body * @return a {@link DeviceCompliancePolicyDeviceStateSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCompliancePolicyDeviceStateSummary patch(@jakarta.annotation.Nonnull final DeviceCompliancePolicyDeviceStateSummary body) { return patch(body, null); } /** - * Update the properties of a deviceCompliancePolicyDeviceStateSummary object. + * Update the navigation property deviceCompliancePolicyDeviceStateSummary in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceCompliancePolicyDeviceStateSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCompliancePolicyDeviceStateSummary patch(@jakarta.annotation.Nonnull final DeviceCompliancePolicyDeviceStateSummary body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the deviceCompliancePolicyDeviceStateSummary object. + * The device compliance state summary for this account. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the deviceCompliancePolicyDeviceStateSummary object. + * The device compliance state summary for this account. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a deviceCompliancePolicyDeviceStateSummary object. + * Update the navigation property deviceCompliancePolicyDeviceStateSummary in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a deviceCompliancePolicyDeviceStateSummary object. + * Update the navigation property deviceCompliancePolicyDeviceStateSummary in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public DeviceCompliancePolicyDeviceStateSummaryRequestBuilder withUrl(@jakarta.a public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the deviceCompliancePolicyDeviceStateSummary object. + * The device compliance state summary for this account. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicysettingstatesummaries/DeviceCompliancePolicySettingStateSummariesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicysettingstatesummaries/DeviceCompliancePolicySettingStateSummariesRequestBuilder.java index 2188b18dec1..936fe66eeb5 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicysettingstatesummaries/DeviceCompliancePolicySettingStateSummariesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicysettingstatesummaries/DeviceCompliancePolicySettingStateSummariesRequestBuilder.java @@ -60,21 +60,19 @@ public DeviceCompliancePolicySettingStateSummariesRequestBuilder(@jakarta.annota super(requestAdapter, "{+baseurl}/deviceManagement/deviceCompliancePolicySettingStateSummaries{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the deviceCompliancePolicySettingStateSummary objects. + * The summary states of compliance policy settings for this account. * @return a {@link DeviceCompliancePolicySettingStateSummaryCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCompliancePolicySettingStateSummaryCollectionResponse get() { return get(null); } /** - * List properties and relationships of the deviceCompliancePolicySettingStateSummary objects. + * The summary states of compliance policy settings for this account. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceCompliancePolicySettingStateSummaryCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCompliancePolicySettingStateSummaryCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public DeviceCompliancePolicySettingStateSummaryCollectionResponse get(@jakarta. return this.requestAdapter.send(requestInfo, errorMapping, DeviceCompliancePolicySettingStateSummaryCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new deviceCompliancePolicySettingStateSummary object. + * Create new navigation property to deviceCompliancePolicySettingStateSummaries for deviceManagement * @param body The request body * @return a {@link DeviceCompliancePolicySettingStateSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCompliancePolicySettingStateSummary post(@jakarta.annotation.Nonnull final DeviceCompliancePolicySettingStateSummary body) { return post(body, null); } /** - * Create a new deviceCompliancePolicySettingStateSummary object. + * Create new navigation property to deviceCompliancePolicySettingStateSummaries for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceCompliancePolicySettingStateSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCompliancePolicySettingStateSummary post(@jakarta.annotation.Nonnull final DeviceCompliancePolicySettingStateSummary body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public DeviceCompliancePolicySettingStateSummary post(@jakarta.annotation.Nonnul return this.requestAdapter.send(requestInfo, errorMapping, DeviceCompliancePolicySettingStateSummary::createFromDiscriminatorValue); } /** - * List properties and relationships of the deviceCompliancePolicySettingStateSummary objects. + * The summary states of compliance policy settings for this account. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the deviceCompliancePolicySettingStateSummary objects. + * The summary states of compliance policy settings for this account. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new deviceCompliancePolicySettingStateSummary object. + * Create new navigation property to deviceCompliancePolicySettingStateSummaries for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new deviceCompliancePolicySettingStateSummary object. + * Create new navigation property to deviceCompliancePolicySettingStateSummaries for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public DeviceCompliancePolicySettingStateSummariesRequestBuilder withUrl(@jakart return new DeviceCompliancePolicySettingStateSummariesRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the deviceCompliancePolicySettingStateSummary objects. + * The summary states of compliance policy settings for this account. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicysettingstatesummaries/item/DeviceCompliancePolicySettingStateSummaryItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicysettingstatesummaries/item/DeviceCompliancePolicySettingStateSummaryItemRequestBuilder.java index 506605ba111..5dbe84cfca8 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicysettingstatesummaries/item/DeviceCompliancePolicySettingStateSummaryItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicysettingstatesummaries/item/DeviceCompliancePolicySettingStateSummaryItemRequestBuilder.java @@ -46,18 +46,16 @@ public DeviceCompliancePolicySettingStateSummaryItemRequestBuilder(@jakarta.anno super(requestAdapter, "{+baseurl}/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a deviceCompliancePolicySettingStateSummary. + * Delete navigation property deviceCompliancePolicySettingStateSummaries for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a deviceCompliancePolicySettingStateSummary. + * Delete navigation property deviceCompliancePolicySettingStateSummaries for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the deviceCompliancePolicySettingStateSummary object. + * The summary states of compliance policy settings for this account. * @return a {@link DeviceCompliancePolicySettingStateSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCompliancePolicySettingStateSummary get() { return get(null); } /** - * Read properties and relationships of the deviceCompliancePolicySettingStateSummary object. + * The summary states of compliance policy settings for this account. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceCompliancePolicySettingStateSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCompliancePolicySettingStateSummary get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public DeviceCompliancePolicySettingStateSummary get(@jakarta.annotation.Nullabl return this.requestAdapter.send(requestInfo, errorMapping, DeviceCompliancePolicySettingStateSummary::createFromDiscriminatorValue); } /** - * Update the properties of a deviceCompliancePolicySettingStateSummary object. + * Update the navigation property deviceCompliancePolicySettingStateSummaries in deviceManagement * @param body The request body * @return a {@link DeviceCompliancePolicySettingStateSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCompliancePolicySettingStateSummary patch(@jakarta.annotation.Nonnull final DeviceCompliancePolicySettingStateSummary body) { return patch(body, null); } /** - * Update the properties of a deviceCompliancePolicySettingStateSummary object. + * Update the navigation property deviceCompliancePolicySettingStateSummaries in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceCompliancePolicySettingStateSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCompliancePolicySettingStateSummary patch(@jakarta.annotation.Nonnull final DeviceCompliancePolicySettingStateSummary body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public DeviceCompliancePolicySettingStateSummary patch(@jakarta.annotation.Nonnu return this.requestAdapter.send(requestInfo, errorMapping, DeviceCompliancePolicySettingStateSummary::createFromDiscriminatorValue); } /** - * Deletes a deviceCompliancePolicySettingStateSummary. + * Delete navigation property deviceCompliancePolicySettingStateSummaries for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a deviceCompliancePolicySettingStateSummary. + * Delete navigation property deviceCompliancePolicySettingStateSummaries for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the deviceCompliancePolicySettingStateSummary object. + * The summary states of compliance policy settings for this account. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the deviceCompliancePolicySettingStateSummary object. + * The summary states of compliance policy settings for this account. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a deviceCompliancePolicySettingStateSummary object. + * Update the navigation property deviceCompliancePolicySettingStateSummaries in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a deviceCompliancePolicySettingStateSummary object. + * Update the navigation property deviceCompliancePolicySettingStateSummaries in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public DeviceCompliancePolicySettingStateSummaryItemRequestBuilder withUrl(@jaka public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the deviceCompliancePolicySettingStateSummary object. + * The summary states of compliance policy settings for this account. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicysettingstatesummaries/item/devicecompliancesettingstates/DeviceComplianceSettingStatesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicysettingstatesummaries/item/devicecompliancesettingstates/DeviceComplianceSettingStatesRequestBuilder.java index 6f3605847e3..82adaee1be0 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicysettingstatesummaries/item/devicecompliancesettingstates/DeviceComplianceSettingStatesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicysettingstatesummaries/item/devicecompliancesettingstates/DeviceComplianceSettingStatesRequestBuilder.java @@ -60,21 +60,19 @@ public DeviceComplianceSettingStatesRequestBuilder(@jakarta.annotation.Nonnull f super(requestAdapter, "{+baseurl}/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary%2Did}/deviceComplianceSettingStates{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the deviceComplianceSettingState objects. + * Not yet documented * @return a {@link DeviceComplianceSettingStateCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceSettingStateCollectionResponse get() { return get(null); } /** - * List properties and relationships of the deviceComplianceSettingState objects. + * Not yet documented * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceComplianceSettingStateCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceSettingStateCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public DeviceComplianceSettingStateCollectionResponse get(@jakarta.annotation.Nu return this.requestAdapter.send(requestInfo, errorMapping, DeviceComplianceSettingStateCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new deviceComplianceSettingState object. + * Create new navigation property to deviceComplianceSettingStates for deviceManagement * @param body The request body * @return a {@link DeviceComplianceSettingState} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceSettingState post(@jakarta.annotation.Nonnull final DeviceComplianceSettingState body) { return post(body, null); } /** - * Create a new deviceComplianceSettingState object. + * Create new navigation property to deviceComplianceSettingStates for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceComplianceSettingState} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceSettingState post(@jakarta.annotation.Nonnull final DeviceComplianceSettingState body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public DeviceComplianceSettingState post(@jakarta.annotation.Nonnull final Devic return this.requestAdapter.send(requestInfo, errorMapping, DeviceComplianceSettingState::createFromDiscriminatorValue); } /** - * List properties and relationships of the deviceComplianceSettingState objects. + * Not yet documented * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the deviceComplianceSettingState objects. + * Not yet documented * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new deviceComplianceSettingState object. + * Create new navigation property to deviceComplianceSettingStates for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new deviceComplianceSettingState object. + * Create new navigation property to deviceComplianceSettingStates for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public DeviceComplianceSettingStatesRequestBuilder withUrl(@jakarta.annotation.N return new DeviceComplianceSettingStatesRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the deviceComplianceSettingState objects. + * Not yet documented */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicysettingstatesummaries/item/devicecompliancesettingstates/item/DeviceComplianceSettingStateItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicysettingstatesummaries/item/devicecompliancesettingstates/item/DeviceComplianceSettingStateItemRequestBuilder.java index 1fe93c255f3..bb8002c5cb6 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicysettingstatesummaries/item/devicecompliancesettingstates/item/DeviceComplianceSettingStateItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicecompliancepolicysettingstatesummaries/item/devicecompliancesettingstates/item/DeviceComplianceSettingStateItemRequestBuilder.java @@ -37,18 +37,16 @@ public DeviceComplianceSettingStateItemRequestBuilder(@jakarta.annotation.Nonnul super(requestAdapter, "{+baseurl}/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary%2Did}/deviceComplianceSettingStates/{deviceComplianceSettingState%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a deviceComplianceSettingState. + * Delete navigation property deviceComplianceSettingStates for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a deviceComplianceSettingState. + * Delete navigation property deviceComplianceSettingStates for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the deviceComplianceSettingState object. + * Not yet documented * @return a {@link DeviceComplianceSettingState} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceSettingState get() { return get(null); } /** - * Read properties and relationships of the deviceComplianceSettingState object. + * Not yet documented * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceComplianceSettingState} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceSettingState get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public DeviceComplianceSettingState get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, DeviceComplianceSettingState::createFromDiscriminatorValue); } /** - * Update the properties of a deviceComplianceSettingState object. + * Update the navigation property deviceComplianceSettingStates in deviceManagement * @param body The request body * @return a {@link DeviceComplianceSettingState} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceSettingState patch(@jakarta.annotation.Nonnull final DeviceComplianceSettingState body) { return patch(body, null); } /** - * Update the properties of a deviceComplianceSettingState object. + * Update the navigation property deviceComplianceSettingStates in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceComplianceSettingState} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceComplianceSettingState patch(@jakarta.annotation.Nonnull final DeviceComplianceSettingState body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public DeviceComplianceSettingState patch(@jakarta.annotation.Nonnull final Devi return this.requestAdapter.send(requestInfo, errorMapping, DeviceComplianceSettingState::createFromDiscriminatorValue); } /** - * Deletes a deviceComplianceSettingState. + * Delete navigation property deviceComplianceSettingStates for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a deviceComplianceSettingState. + * Delete navigation property deviceComplianceSettingStates for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the deviceComplianceSettingState object. + * Not yet documented * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the deviceComplianceSettingState object. + * Not yet documented * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a deviceComplianceSettingState object. + * Update the navigation property deviceComplianceSettingStates in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a deviceComplianceSettingState object. + * Update the navigation property deviceComplianceSettingStates in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public DeviceComplianceSettingStateItemRequestBuilder withUrl(@jakarta.annotatio public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the deviceComplianceSettingState object. + * Not yet documented */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurationdevicestatesummaries/DeviceConfigurationDeviceStateSummariesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurationdevicestatesummaries/DeviceConfigurationDeviceStateSummariesRequestBuilder.java index 79ea56d6faf..f94f8a9e9a7 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurationdevicestatesummaries/DeviceConfigurationDeviceStateSummariesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurationdevicestatesummaries/DeviceConfigurationDeviceStateSummariesRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the deviceConfigurationDeviceStateSummary object. + * The device configuration device state summary for this account. * @return a {@link DeviceConfigurationDeviceStateSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfigurationDeviceStateSummary get() { return get(null); } /** - * Read properties and relationships of the deviceConfigurationDeviceStateSummary object. + * The device configuration device state summary for this account. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceConfigurationDeviceStateSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfigurationDeviceStateSummary get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public DeviceConfigurationDeviceStateSummary get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, DeviceConfigurationDeviceStateSummary::createFromDiscriminatorValue); } /** - * Update the properties of a deviceConfigurationDeviceStateSummary object. + * Update the navigation property deviceConfigurationDeviceStateSummaries in deviceManagement * @param body The request body * @return a {@link DeviceConfigurationDeviceStateSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfigurationDeviceStateSummary patch(@jakarta.annotation.Nonnull final DeviceConfigurationDeviceStateSummary body) { return patch(body, null); } /** - * Update the properties of a deviceConfigurationDeviceStateSummary object. + * Update the navigation property deviceConfigurationDeviceStateSummaries in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceConfigurationDeviceStateSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfigurationDeviceStateSummary patch(@jakarta.annotation.Nonnull final DeviceConfigurationDeviceStateSummary body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the deviceConfigurationDeviceStateSummary object. + * The device configuration device state summary for this account. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the deviceConfigurationDeviceStateSummary object. + * The device configuration device state summary for this account. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a deviceConfigurationDeviceStateSummary object. + * Update the navigation property deviceConfigurationDeviceStateSummaries in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a deviceConfigurationDeviceStateSummary object. + * Update the navigation property deviceConfigurationDeviceStateSummaries in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public DeviceConfigurationDeviceStateSummariesRequestBuilder withUrl(@jakarta.an public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the deviceConfigurationDeviceStateSummary object. + * The device configuration device state summary for this account. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/DeviceConfigurationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/DeviceConfigurationsRequestBuilder.java index b1958000345..cd140ffcdc4 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/DeviceConfigurationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/DeviceConfigurationsRequestBuilder.java @@ -60,21 +60,19 @@ public DeviceConfigurationsRequestBuilder(@jakarta.annotation.Nonnull final Stri super(requestAdapter, "{+baseurl}/deviceManagement/deviceConfigurations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the androidCustomConfiguration objects. + * The device configurations. * @return a {@link DeviceConfigurationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfigurationCollectionResponse get() { return get(null); } /** - * List properties and relationships of the androidCustomConfiguration objects. + * The device configurations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceConfigurationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfigurationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public DeviceConfigurationCollectionResponse get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, DeviceConfigurationCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new androidCustomConfiguration object. + * Create new navigation property to deviceConfigurations for deviceManagement * @param body The request body * @return a {@link DeviceConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfiguration post(@jakarta.annotation.Nonnull final DeviceConfiguration body) { return post(body, null); } /** - * Create a new androidCustomConfiguration object. + * Create new navigation property to deviceConfigurations for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfiguration post(@jakarta.annotation.Nonnull final DeviceConfiguration body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public DeviceConfiguration post(@jakarta.annotation.Nonnull final DeviceConfigur return this.requestAdapter.send(requestInfo, errorMapping, DeviceConfiguration::createFromDiscriminatorValue); } /** - * List properties and relationships of the androidCustomConfiguration objects. + * The device configurations. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the androidCustomConfiguration objects. + * The device configurations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new androidCustomConfiguration object. + * Create new navigation property to deviceConfigurations for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new androidCustomConfiguration object. + * Create new navigation property to deviceConfigurations for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public DeviceConfigurationsRequestBuilder withUrl(@jakarta.annotation.Nonnull fi return new DeviceConfigurationsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the androidCustomConfiguration objects. + * The device configurations. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/DeviceConfigurationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/DeviceConfigurationItemRequestBuilder.java index a3dafc8c3e3..5890e63ba16 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/DeviceConfigurationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/DeviceConfigurationItemRequestBuilder.java @@ -101,18 +101,16 @@ public DeviceConfigurationItemRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/deviceManagement/deviceConfigurations/{deviceConfiguration%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a editionUpgradeConfiguration. + * Delete navigation property deviceConfigurations for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a editionUpgradeConfiguration. + * Delete navigation property deviceConfigurations for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -121,21 +119,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the windowsDefenderAdvancedThreatProtectionConfiguration object. + * The device configurations. * @return a {@link DeviceConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfiguration get() { return get(null); } /** - * Read properties and relationships of the windowsDefenderAdvancedThreatProtectionConfiguration object. + * The device configurations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfiguration get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -155,23 +151,21 @@ public GetOmaSettingPlainTextValueWithSecretReferenceValueIdRequestBuilder getOm return new GetOmaSettingPlainTextValueWithSecretReferenceValueIdRequestBuilder(pathParameters, requestAdapter, secretReferenceValueId); } /** - * Update the properties of a windowsPhone81CustomConfiguration object. + * Update the navigation property deviceConfigurations in deviceManagement * @param body The request body * @return a {@link DeviceConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfiguration patch(@jakarta.annotation.Nonnull final DeviceConfiguration body) { return patch(body, null); } /** - * Update the properties of a windowsPhone81CustomConfiguration object. + * Update the navigation property deviceConfigurations in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfiguration patch(@jakarta.annotation.Nonnull final DeviceConfiguration body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -182,7 +176,7 @@ public DeviceConfiguration patch(@jakarta.annotation.Nonnull final DeviceConfigu return this.requestAdapter.send(requestInfo, errorMapping, DeviceConfiguration::createFromDiscriminatorValue); } /** - * Deletes a editionUpgradeConfiguration. + * Delete navigation property deviceConfigurations for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -190,7 +184,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a editionUpgradeConfiguration. + * Delete navigation property deviceConfigurations for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -202,7 +196,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the windowsDefenderAdvancedThreatProtectionConfiguration object. + * The device configurations. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -210,7 +204,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the windowsDefenderAdvancedThreatProtectionConfiguration object. + * The device configurations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -222,7 +216,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a windowsPhone81CustomConfiguration object. + * Update the navigation property deviceConfigurations in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -231,7 +225,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a windowsPhone81CustomConfiguration object. + * Update the navigation property deviceConfigurations in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -262,7 +256,7 @@ public DeviceConfigurationItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the windowsDefenderAdvancedThreatProtectionConfiguration object. + * The device configurations. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/assignments/AssignmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/assignments/AssignmentsRequestBuilder.java index f1978f49114..638ae4a0b8f 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/assignments/AssignmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/assignments/AssignmentsRequestBuilder.java @@ -60,21 +60,19 @@ public AssignmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/deviceManagement/deviceConfigurations/{deviceConfiguration%2Did}/assignments{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the deviceConfigurationAssignment objects. + * The list of assignments for the device configuration profile. * @return a {@link DeviceConfigurationAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfigurationAssignmentCollectionResponse get() { return get(null); } /** - * List properties and relationships of the deviceConfigurationAssignment objects. + * The list of assignments for the device configuration profile. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceConfigurationAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfigurationAssignmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public DeviceConfigurationAssignmentCollectionResponse get(@jakarta.annotation.N return this.requestAdapter.send(requestInfo, errorMapping, DeviceConfigurationAssignmentCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new deviceConfigurationAssignment object. + * Create new navigation property to assignments for deviceManagement * @param body The request body * @return a {@link DeviceConfigurationAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfigurationAssignment post(@jakarta.annotation.Nonnull final DeviceConfigurationAssignment body) { return post(body, null); } /** - * Create a new deviceConfigurationAssignment object. + * Create new navigation property to assignments for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceConfigurationAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfigurationAssignment post(@jakarta.annotation.Nonnull final DeviceConfigurationAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public DeviceConfigurationAssignment post(@jakarta.annotation.Nonnull final Devi return this.requestAdapter.send(requestInfo, errorMapping, DeviceConfigurationAssignment::createFromDiscriminatorValue); } /** - * List properties and relationships of the deviceConfigurationAssignment objects. + * The list of assignments for the device configuration profile. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the deviceConfigurationAssignment objects. + * The list of assignments for the device configuration profile. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new deviceConfigurationAssignment object. + * Create new navigation property to assignments for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new deviceConfigurationAssignment object. + * Create new navigation property to assignments for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public AssignmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AssignmentsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the deviceConfigurationAssignment objects. + * The list of assignments for the device configuration profile. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/assignments/item/DeviceConfigurationAssignmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/assignments/item/DeviceConfigurationAssignmentItemRequestBuilder.java index 7ff74ece84b..d3c4ac120b0 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/assignments/item/DeviceConfigurationAssignmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/assignments/item/DeviceConfigurationAssignmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public DeviceConfigurationAssignmentItemRequestBuilder(@jakarta.annotation.Nonnu super(requestAdapter, "{+baseurl}/deviceManagement/deviceConfigurations/{deviceConfiguration%2Did}/assignments/{deviceConfigurationAssignment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a deviceConfigurationAssignment. + * Delete navigation property assignments for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a deviceConfigurationAssignment. + * Delete navigation property assignments for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the deviceConfigurationAssignment object. + * The list of assignments for the device configuration profile. * @return a {@link DeviceConfigurationAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfigurationAssignment get() { return get(null); } /** - * Read properties and relationships of the deviceConfigurationAssignment object. + * The list of assignments for the device configuration profile. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceConfigurationAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfigurationAssignment get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public DeviceConfigurationAssignment get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, DeviceConfigurationAssignment::createFromDiscriminatorValue); } /** - * Update the properties of a deviceConfigurationAssignment object. + * Update the navigation property assignments in deviceManagement * @param body The request body * @return a {@link DeviceConfigurationAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfigurationAssignment patch(@jakarta.annotation.Nonnull final DeviceConfigurationAssignment body) { return patch(body, null); } /** - * Update the properties of a deviceConfigurationAssignment object. + * Update the navigation property assignments in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceConfigurationAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfigurationAssignment patch(@jakarta.annotation.Nonnull final DeviceConfigurationAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public DeviceConfigurationAssignment patch(@jakarta.annotation.Nonnull final Dev return this.requestAdapter.send(requestInfo, errorMapping, DeviceConfigurationAssignment::createFromDiscriminatorValue); } /** - * Deletes a deviceConfigurationAssignment. + * Delete navigation property assignments for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a deviceConfigurationAssignment. + * Delete navigation property assignments for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the deviceConfigurationAssignment object. + * The list of assignments for the device configuration profile. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the deviceConfigurationAssignment object. + * The list of assignments for the device configuration profile. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a deviceConfigurationAssignment object. + * Update the navigation property assignments in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a deviceConfigurationAssignment object. + * Update the navigation property assignments in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public DeviceConfigurationAssignmentItemRequestBuilder withUrl(@jakarta.annotati public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the deviceConfigurationAssignment object. + * The list of assignments for the device configuration profile. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/devicesettingstatesummaries/DeviceSettingStateSummariesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/devicesettingstatesummaries/DeviceSettingStateSummariesRequestBuilder.java index 125962b6318..402e0507286 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/devicesettingstatesummaries/DeviceSettingStateSummariesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/devicesettingstatesummaries/DeviceSettingStateSummariesRequestBuilder.java @@ -60,21 +60,19 @@ public DeviceSettingStateSummariesRequestBuilder(@jakarta.annotation.Nonnull fin super(requestAdapter, "{+baseurl}/deviceManagement/deviceConfigurations/{deviceConfiguration%2Did}/deviceSettingStateSummaries{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the settingStateDeviceSummary objects. + * Device Configuration Setting State Device Summary * @return a {@link SettingStateDeviceSummaryCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SettingStateDeviceSummaryCollectionResponse get() { return get(null); } /** - * List properties and relationships of the settingStateDeviceSummary objects. + * Device Configuration Setting State Device Summary * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SettingStateDeviceSummaryCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SettingStateDeviceSummaryCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public SettingStateDeviceSummaryCollectionResponse get(@jakarta.annotation.Nulla return this.requestAdapter.send(requestInfo, errorMapping, SettingStateDeviceSummaryCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new settingStateDeviceSummary object. + * Create new navigation property to deviceSettingStateSummaries for deviceManagement * @param body The request body * @return a {@link SettingStateDeviceSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SettingStateDeviceSummary post(@jakarta.annotation.Nonnull final SettingStateDeviceSummary body) { return post(body, null); } /** - * Create a new settingStateDeviceSummary object. + * Create new navigation property to deviceSettingStateSummaries for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SettingStateDeviceSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SettingStateDeviceSummary post(@jakarta.annotation.Nonnull final SettingStateDeviceSummary body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public SettingStateDeviceSummary post(@jakarta.annotation.Nonnull final SettingS return this.requestAdapter.send(requestInfo, errorMapping, SettingStateDeviceSummary::createFromDiscriminatorValue); } /** - * List properties and relationships of the settingStateDeviceSummary objects. + * Device Configuration Setting State Device Summary * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the settingStateDeviceSummary objects. + * Device Configuration Setting State Device Summary * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new settingStateDeviceSummary object. + * Create new navigation property to deviceSettingStateSummaries for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new settingStateDeviceSummary object. + * Create new navigation property to deviceSettingStateSummaries for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public DeviceSettingStateSummariesRequestBuilder withUrl(@jakarta.annotation.Non return new DeviceSettingStateSummariesRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the settingStateDeviceSummary objects. + * Device Configuration Setting State Device Summary */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/devicesettingstatesummaries/item/SettingStateDeviceSummaryItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/devicesettingstatesummaries/item/SettingStateDeviceSummaryItemRequestBuilder.java index 1f4834c970f..ece2f5b6a0d 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/devicesettingstatesummaries/item/SettingStateDeviceSummaryItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/devicesettingstatesummaries/item/SettingStateDeviceSummaryItemRequestBuilder.java @@ -37,18 +37,16 @@ public SettingStateDeviceSummaryItemRequestBuilder(@jakarta.annotation.Nonnull f super(requestAdapter, "{+baseurl}/deviceManagement/deviceConfigurations/{deviceConfiguration%2Did}/deviceSettingStateSummaries/{settingStateDeviceSummary%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a settingStateDeviceSummary. + * Delete navigation property deviceSettingStateSummaries for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a settingStateDeviceSummary. + * Delete navigation property deviceSettingStateSummaries for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the settingStateDeviceSummary object. + * Device Configuration Setting State Device Summary * @return a {@link SettingStateDeviceSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SettingStateDeviceSummary get() { return get(null); } /** - * Read properties and relationships of the settingStateDeviceSummary object. + * Device Configuration Setting State Device Summary * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SettingStateDeviceSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SettingStateDeviceSummary get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public SettingStateDeviceSummary get(@jakarta.annotation.Nullable final java.uti return this.requestAdapter.send(requestInfo, errorMapping, SettingStateDeviceSummary::createFromDiscriminatorValue); } /** - * Update the properties of a settingStateDeviceSummary object. + * Update the navigation property deviceSettingStateSummaries in deviceManagement * @param body The request body * @return a {@link SettingStateDeviceSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SettingStateDeviceSummary patch(@jakarta.annotation.Nonnull final SettingStateDeviceSummary body) { return patch(body, null); } /** - * Update the properties of a settingStateDeviceSummary object. + * Update the navigation property deviceSettingStateSummaries in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SettingStateDeviceSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SettingStateDeviceSummary patch(@jakarta.annotation.Nonnull final SettingStateDeviceSummary body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public SettingStateDeviceSummary patch(@jakarta.annotation.Nonnull final Setting return this.requestAdapter.send(requestInfo, errorMapping, SettingStateDeviceSummary::createFromDiscriminatorValue); } /** - * Deletes a settingStateDeviceSummary. + * Delete navigation property deviceSettingStateSummaries for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a settingStateDeviceSummary. + * Delete navigation property deviceSettingStateSummaries for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the settingStateDeviceSummary object. + * Device Configuration Setting State Device Summary * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the settingStateDeviceSummary object. + * Device Configuration Setting State Device Summary * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a settingStateDeviceSummary object. + * Update the navigation property deviceSettingStateSummaries in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a settingStateDeviceSummary object. + * Update the navigation property deviceSettingStateSummaries in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public SettingStateDeviceSummaryItemRequestBuilder withUrl(@jakarta.annotation.N public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the settingStateDeviceSummary object. + * Device Configuration Setting State Device Summary */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/devicestatuses/DeviceStatusesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/devicestatuses/DeviceStatusesRequestBuilder.java index eb0e6fae513..0a69fa92610 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/devicestatuses/DeviceStatusesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/devicestatuses/DeviceStatusesRequestBuilder.java @@ -60,21 +60,19 @@ public DeviceStatusesRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/deviceManagement/deviceConfigurations/{deviceConfiguration%2Did}/deviceStatuses{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the deviceConfigurationDeviceStatus objects. + * Device configuration installation status by device. * @return a {@link DeviceConfigurationDeviceStatusCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfigurationDeviceStatusCollectionResponse get() { return get(null); } /** - * List properties and relationships of the deviceConfigurationDeviceStatus objects. + * Device configuration installation status by device. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceConfigurationDeviceStatusCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfigurationDeviceStatusCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public DeviceConfigurationDeviceStatusCollectionResponse get(@jakarta.annotation return this.requestAdapter.send(requestInfo, errorMapping, DeviceConfigurationDeviceStatusCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new deviceConfigurationDeviceStatus object. + * Create new navigation property to deviceStatuses for deviceManagement * @param body The request body * @return a {@link DeviceConfigurationDeviceStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfigurationDeviceStatus post(@jakarta.annotation.Nonnull final DeviceConfigurationDeviceStatus body) { return post(body, null); } /** - * Create a new deviceConfigurationDeviceStatus object. + * Create new navigation property to deviceStatuses for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceConfigurationDeviceStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfigurationDeviceStatus post(@jakarta.annotation.Nonnull final DeviceConfigurationDeviceStatus body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public DeviceConfigurationDeviceStatus post(@jakarta.annotation.Nonnull final De return this.requestAdapter.send(requestInfo, errorMapping, DeviceConfigurationDeviceStatus::createFromDiscriminatorValue); } /** - * List properties and relationships of the deviceConfigurationDeviceStatus objects. + * Device configuration installation status by device. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the deviceConfigurationDeviceStatus objects. + * Device configuration installation status by device. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new deviceConfigurationDeviceStatus object. + * Create new navigation property to deviceStatuses for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new deviceConfigurationDeviceStatus object. + * Create new navigation property to deviceStatuses for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public DeviceStatusesRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new DeviceStatusesRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the deviceConfigurationDeviceStatus objects. + * Device configuration installation status by device. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/devicestatuses/item/DeviceConfigurationDeviceStatusItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/devicestatuses/item/DeviceConfigurationDeviceStatusItemRequestBuilder.java index 843d2e042ed..f818923b14a 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/devicestatuses/item/DeviceConfigurationDeviceStatusItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/devicestatuses/item/DeviceConfigurationDeviceStatusItemRequestBuilder.java @@ -37,18 +37,16 @@ public DeviceConfigurationDeviceStatusItemRequestBuilder(@jakarta.annotation.Non super(requestAdapter, "{+baseurl}/deviceManagement/deviceConfigurations/{deviceConfiguration%2Did}/deviceStatuses/{deviceConfigurationDeviceStatus%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a deviceConfigurationDeviceStatus. + * Delete navigation property deviceStatuses for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a deviceConfigurationDeviceStatus. + * Delete navigation property deviceStatuses for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the deviceConfigurationDeviceStatus object. + * Device configuration installation status by device. * @return a {@link DeviceConfigurationDeviceStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfigurationDeviceStatus get() { return get(null); } /** - * Read properties and relationships of the deviceConfigurationDeviceStatus object. + * Device configuration installation status by device. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceConfigurationDeviceStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfigurationDeviceStatus get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public DeviceConfigurationDeviceStatus get(@jakarta.annotation.Nullable final ja return this.requestAdapter.send(requestInfo, errorMapping, DeviceConfigurationDeviceStatus::createFromDiscriminatorValue); } /** - * Update the properties of a deviceConfigurationDeviceStatus object. + * Update the navigation property deviceStatuses in deviceManagement * @param body The request body * @return a {@link DeviceConfigurationDeviceStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfigurationDeviceStatus patch(@jakarta.annotation.Nonnull final DeviceConfigurationDeviceStatus body) { return patch(body, null); } /** - * Update the properties of a deviceConfigurationDeviceStatus object. + * Update the navigation property deviceStatuses in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceConfigurationDeviceStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfigurationDeviceStatus patch(@jakarta.annotation.Nonnull final DeviceConfigurationDeviceStatus body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public DeviceConfigurationDeviceStatus patch(@jakarta.annotation.Nonnull final D return this.requestAdapter.send(requestInfo, errorMapping, DeviceConfigurationDeviceStatus::createFromDiscriminatorValue); } /** - * Deletes a deviceConfigurationDeviceStatus. + * Delete navigation property deviceStatuses for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a deviceConfigurationDeviceStatus. + * Delete navigation property deviceStatuses for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the deviceConfigurationDeviceStatus object. + * Device configuration installation status by device. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the deviceConfigurationDeviceStatus object. + * Device configuration installation status by device. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a deviceConfigurationDeviceStatus object. + * Update the navigation property deviceStatuses in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a deviceConfigurationDeviceStatus object. + * Update the navigation property deviceStatuses in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public DeviceConfigurationDeviceStatusItemRequestBuilder withUrl(@jakarta.annota public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the deviceConfigurationDeviceStatus object. + * Device configuration installation status by device. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/devicestatusoverview/DeviceStatusOverviewRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/devicestatusoverview/DeviceStatusOverviewRequestBuilder.java index db468546e69..a3f233c458b 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/devicestatusoverview/DeviceStatusOverviewRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/devicestatusoverview/DeviceStatusOverviewRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the deviceConfigurationDeviceOverview object. + * Device Configuration devices status overview * @return a {@link DeviceConfigurationDeviceOverview} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfigurationDeviceOverview get() { return get(null); } /** - * Read properties and relationships of the deviceConfigurationDeviceOverview object. + * Device Configuration devices status overview * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceConfigurationDeviceOverview} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfigurationDeviceOverview get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public DeviceConfigurationDeviceOverview get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, DeviceConfigurationDeviceOverview::createFromDiscriminatorValue); } /** - * Update the properties of a deviceConfigurationDeviceOverview object. + * Update the navigation property deviceStatusOverview in deviceManagement * @param body The request body * @return a {@link DeviceConfigurationDeviceOverview} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfigurationDeviceOverview patch(@jakarta.annotation.Nonnull final DeviceConfigurationDeviceOverview body) { return patch(body, null); } /** - * Update the properties of a deviceConfigurationDeviceOverview object. + * Update the navigation property deviceStatusOverview in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceConfigurationDeviceOverview} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfigurationDeviceOverview patch(@jakarta.annotation.Nonnull final DeviceConfigurationDeviceOverview body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the deviceConfigurationDeviceOverview object. + * Device Configuration devices status overview * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the deviceConfigurationDeviceOverview object. + * Device Configuration devices status overview * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a deviceConfigurationDeviceOverview object. + * Update the navigation property deviceStatusOverview in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a deviceConfigurationDeviceOverview object. + * Update the navigation property deviceStatusOverview in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public DeviceStatusOverviewRequestBuilder withUrl(@jakarta.annotation.Nonnull fi public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the deviceConfigurationDeviceOverview object. + * Device Configuration devices status overview */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/userstatuses/UserStatusesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/userstatuses/UserStatusesRequestBuilder.java index d0c6b5ef843..812f903f0e6 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/userstatuses/UserStatusesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/userstatuses/UserStatusesRequestBuilder.java @@ -60,21 +60,19 @@ public UserStatusesRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/deviceManagement/deviceConfigurations/{deviceConfiguration%2Did}/userStatuses{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the deviceConfigurationUserStatus objects. + * Device configuration installation status by user. * @return a {@link DeviceConfigurationUserStatusCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfigurationUserStatusCollectionResponse get() { return get(null); } /** - * List properties and relationships of the deviceConfigurationUserStatus objects. + * Device configuration installation status by user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceConfigurationUserStatusCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfigurationUserStatusCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public DeviceConfigurationUserStatusCollectionResponse get(@jakarta.annotation.N return this.requestAdapter.send(requestInfo, errorMapping, DeviceConfigurationUserStatusCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new deviceConfigurationUserStatus object. + * Create new navigation property to userStatuses for deviceManagement * @param body The request body * @return a {@link DeviceConfigurationUserStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfigurationUserStatus post(@jakarta.annotation.Nonnull final DeviceConfigurationUserStatus body) { return post(body, null); } /** - * Create a new deviceConfigurationUserStatus object. + * Create new navigation property to userStatuses for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceConfigurationUserStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfigurationUserStatus post(@jakarta.annotation.Nonnull final DeviceConfigurationUserStatus body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public DeviceConfigurationUserStatus post(@jakarta.annotation.Nonnull final Devi return this.requestAdapter.send(requestInfo, errorMapping, DeviceConfigurationUserStatus::createFromDiscriminatorValue); } /** - * List properties and relationships of the deviceConfigurationUserStatus objects. + * Device configuration installation status by user. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the deviceConfigurationUserStatus objects. + * Device configuration installation status by user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new deviceConfigurationUserStatus object. + * Create new navigation property to userStatuses for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new deviceConfigurationUserStatus object. + * Create new navigation property to userStatuses for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public UserStatusesRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri return new UserStatusesRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the deviceConfigurationUserStatus objects. + * Device configuration installation status by user. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/userstatuses/item/DeviceConfigurationUserStatusItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/userstatuses/item/DeviceConfigurationUserStatusItemRequestBuilder.java index a9eee93f1e3..9a2c103ff69 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/userstatuses/item/DeviceConfigurationUserStatusItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/userstatuses/item/DeviceConfigurationUserStatusItemRequestBuilder.java @@ -37,18 +37,16 @@ public DeviceConfigurationUserStatusItemRequestBuilder(@jakarta.annotation.Nonnu super(requestAdapter, "{+baseurl}/deviceManagement/deviceConfigurations/{deviceConfiguration%2Did}/userStatuses/{deviceConfigurationUserStatus%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a deviceConfigurationUserStatus. + * Delete navigation property userStatuses for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a deviceConfigurationUserStatus. + * Delete navigation property userStatuses for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the deviceConfigurationUserStatus object. + * Device configuration installation status by user. * @return a {@link DeviceConfigurationUserStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfigurationUserStatus get() { return get(null); } /** - * Read properties and relationships of the deviceConfigurationUserStatus object. + * Device configuration installation status by user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceConfigurationUserStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfigurationUserStatus get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public DeviceConfigurationUserStatus get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, DeviceConfigurationUserStatus::createFromDiscriminatorValue); } /** - * Update the properties of a deviceConfigurationUserStatus object. + * Update the navigation property userStatuses in deviceManagement * @param body The request body * @return a {@link DeviceConfigurationUserStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfigurationUserStatus patch(@jakarta.annotation.Nonnull final DeviceConfigurationUserStatus body) { return patch(body, null); } /** - * Update the properties of a deviceConfigurationUserStatus object. + * Update the navigation property userStatuses in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceConfigurationUserStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfigurationUserStatus patch(@jakarta.annotation.Nonnull final DeviceConfigurationUserStatus body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public DeviceConfigurationUserStatus patch(@jakarta.annotation.Nonnull final Dev return this.requestAdapter.send(requestInfo, errorMapping, DeviceConfigurationUserStatus::createFromDiscriminatorValue); } /** - * Deletes a deviceConfigurationUserStatus. + * Delete navigation property userStatuses for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a deviceConfigurationUserStatus. + * Delete navigation property userStatuses for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the deviceConfigurationUserStatus object. + * Device configuration installation status by user. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the deviceConfigurationUserStatus object. + * Device configuration installation status by user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a deviceConfigurationUserStatus object. + * Update the navigation property userStatuses in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a deviceConfigurationUserStatus object. + * Update the navigation property userStatuses in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public DeviceConfigurationUserStatusItemRequestBuilder withUrl(@jakarta.annotati public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the deviceConfigurationUserStatus object. + * Device configuration installation status by user. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/userstatusoverview/UserStatusOverviewRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/userstatusoverview/UserStatusOverviewRequestBuilder.java index b9af08a3e42..69211a24241 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/userstatusoverview/UserStatusOverviewRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceconfigurations/item/userstatusoverview/UserStatusOverviewRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the deviceConfigurationUserOverview object. + * Device Configuration users status overview * @return a {@link DeviceConfigurationUserOverview} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfigurationUserOverview get() { return get(null); } /** - * Read properties and relationships of the deviceConfigurationUserOverview object. + * Device Configuration users status overview * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceConfigurationUserOverview} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfigurationUserOverview get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public DeviceConfigurationUserOverview get(@jakarta.annotation.Nullable final ja return this.requestAdapter.send(requestInfo, errorMapping, DeviceConfigurationUserOverview::createFromDiscriminatorValue); } /** - * Update the properties of a deviceConfigurationUserOverview object. + * Update the navigation property userStatusOverview in deviceManagement * @param body The request body * @return a {@link DeviceConfigurationUserOverview} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfigurationUserOverview patch(@jakarta.annotation.Nonnull final DeviceConfigurationUserOverview body) { return patch(body, null); } /** - * Update the properties of a deviceConfigurationUserOverview object. + * Update the navigation property userStatusOverview in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceConfigurationUserOverview} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceConfigurationUserOverview patch(@jakarta.annotation.Nonnull final DeviceConfigurationUserOverview body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the deviceConfigurationUserOverview object. + * Device Configuration users status overview * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the deviceConfigurationUserOverview object. + * Device Configuration users status overview * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a deviceConfigurationUserOverview object. + * Update the navigation property userStatusOverview in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a deviceConfigurationUserOverview object. + * Update the navigation property userStatusOverview in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public UserStatusOverviewRequestBuilder withUrl(@jakarta.annotation.Nonnull fina public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the deviceConfigurationUserOverview object. + * Device Configuration users status overview */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceenrollmentconfigurations/DeviceEnrollmentConfigurationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceenrollmentconfigurations/DeviceEnrollmentConfigurationsRequestBuilder.java index 7897bdc9c56..d340c559c3e 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceenrollmentconfigurations/DeviceEnrollmentConfigurationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceenrollmentconfigurations/DeviceEnrollmentConfigurationsRequestBuilder.java @@ -60,21 +60,19 @@ public DeviceEnrollmentConfigurationsRequestBuilder(@jakarta.annotation.Nonnull super(requestAdapter, "{+baseurl}/deviceManagement/deviceEnrollmentConfigurations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the deviceEnrollmentPlatformRestrictionsConfiguration objects. + * The list of device enrollment configurations * @return a {@link DeviceEnrollmentConfigurationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceEnrollmentConfigurationCollectionResponse get() { return get(null); } /** - * List properties and relationships of the deviceEnrollmentPlatformRestrictionsConfiguration objects. + * The list of device enrollment configurations * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceEnrollmentConfigurationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceEnrollmentConfigurationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public DeviceEnrollmentConfigurationCollectionResponse get(@jakarta.annotation.N return this.requestAdapter.send(requestInfo, errorMapping, DeviceEnrollmentConfigurationCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new deviceEnrollmentPlatformRestrictionsConfiguration object. + * Create new navigation property to deviceEnrollmentConfigurations for deviceManagement * @param body The request body * @return a {@link DeviceEnrollmentConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceEnrollmentConfiguration post(@jakarta.annotation.Nonnull final DeviceEnrollmentConfiguration body) { return post(body, null); } /** - * Create a new deviceEnrollmentPlatformRestrictionsConfiguration object. + * Create new navigation property to deviceEnrollmentConfigurations for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceEnrollmentConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceEnrollmentConfiguration post(@jakarta.annotation.Nonnull final DeviceEnrollmentConfiguration body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public DeviceEnrollmentConfiguration post(@jakarta.annotation.Nonnull final Devi return this.requestAdapter.send(requestInfo, errorMapping, DeviceEnrollmentConfiguration::createFromDiscriminatorValue); } /** - * List properties and relationships of the deviceEnrollmentPlatformRestrictionsConfiguration objects. + * The list of device enrollment configurations * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the deviceEnrollmentPlatformRestrictionsConfiguration objects. + * The list of device enrollment configurations * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new deviceEnrollmentPlatformRestrictionsConfiguration object. + * Create new navigation property to deviceEnrollmentConfigurations for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new deviceEnrollmentPlatformRestrictionsConfiguration object. + * Create new navigation property to deviceEnrollmentConfigurations for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public DeviceEnrollmentConfigurationsRequestBuilder withUrl(@jakarta.annotation. return new DeviceEnrollmentConfigurationsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the deviceEnrollmentPlatformRestrictionsConfiguration objects. + * The list of device enrollment configurations */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceenrollmentconfigurations/item/DeviceEnrollmentConfigurationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceenrollmentconfigurations/item/DeviceEnrollmentConfigurationItemRequestBuilder.java index 2d68767d79f..262994109ed 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceenrollmentconfigurations/item/DeviceEnrollmentConfigurationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceenrollmentconfigurations/item/DeviceEnrollmentConfigurationItemRequestBuilder.java @@ -64,18 +64,16 @@ public DeviceEnrollmentConfigurationItemRequestBuilder(@jakarta.annotation.Nonnu super(requestAdapter, "{+baseurl}/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a deviceEnrollmentPlatformRestrictionsConfiguration. + * Delete navigation property deviceEnrollmentConfigurations for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a deviceEnrollmentPlatformRestrictionsConfiguration. + * Delete navigation property deviceEnrollmentConfigurations for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -84,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the deviceEnrollmentWindowsHelloForBusinessConfiguration object. + * The list of device enrollment configurations * @return a {@link DeviceEnrollmentConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceEnrollmentConfiguration get() { return get(null); } /** - * Read properties and relationships of the deviceEnrollmentWindowsHelloForBusinessConfiguration object. + * The list of device enrollment configurations * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceEnrollmentConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceEnrollmentConfiguration get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,23 +104,21 @@ public DeviceEnrollmentConfiguration get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, DeviceEnrollmentConfiguration::createFromDiscriminatorValue); } /** - * Update the properties of a deviceEnrollmentPlatformRestrictionsConfiguration object. + * Update the navigation property deviceEnrollmentConfigurations in deviceManagement * @param body The request body * @return a {@link DeviceEnrollmentConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceEnrollmentConfiguration patch(@jakarta.annotation.Nonnull final DeviceEnrollmentConfiguration body) { return patch(body, null); } /** - * Update the properties of a deviceEnrollmentPlatformRestrictionsConfiguration object. + * Update the navigation property deviceEnrollmentConfigurations in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceEnrollmentConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceEnrollmentConfiguration patch(@jakarta.annotation.Nonnull final DeviceEnrollmentConfiguration body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +129,7 @@ public DeviceEnrollmentConfiguration patch(@jakarta.annotation.Nonnull final Dev return this.requestAdapter.send(requestInfo, errorMapping, DeviceEnrollmentConfiguration::createFromDiscriminatorValue); } /** - * Deletes a deviceEnrollmentPlatformRestrictionsConfiguration. + * Delete navigation property deviceEnrollmentConfigurations for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +137,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a deviceEnrollmentPlatformRestrictionsConfiguration. + * Delete navigation property deviceEnrollmentConfigurations for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the deviceEnrollmentWindowsHelloForBusinessConfiguration object. + * The list of device enrollment configurations * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -163,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the deviceEnrollmentWindowsHelloForBusinessConfiguration object. + * The list of device enrollment configurations * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -175,7 +169,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a deviceEnrollmentPlatformRestrictionsConfiguration object. + * Update the navigation property deviceEnrollmentConfigurations in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -184,7 +178,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a deviceEnrollmentPlatformRestrictionsConfiguration object. + * Update the navigation property deviceEnrollmentConfigurations in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -215,7 +209,7 @@ public DeviceEnrollmentConfigurationItemRequestBuilder withUrl(@jakarta.annotati public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the deviceEnrollmentWindowsHelloForBusinessConfiguration object. + * The list of device enrollment configurations */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceenrollmentconfigurations/item/assignments/AssignmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceenrollmentconfigurations/item/assignments/AssignmentsRequestBuilder.java index c86ac59bc95..ad66cf8e53e 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceenrollmentconfigurations/item/assignments/AssignmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceenrollmentconfigurations/item/assignments/AssignmentsRequestBuilder.java @@ -60,21 +60,19 @@ public AssignmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration%2Did}/assignments{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the enrollmentConfigurationAssignment objects. + * The list of group assignments for the device configuration profile * @return a {@link EnrollmentConfigurationAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EnrollmentConfigurationAssignmentCollectionResponse get() { return get(null); } /** - * List properties and relationships of the enrollmentConfigurationAssignment objects. + * The list of group assignments for the device configuration profile * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EnrollmentConfigurationAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EnrollmentConfigurationAssignmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public EnrollmentConfigurationAssignmentCollectionResponse get(@jakarta.annotati return this.requestAdapter.send(requestInfo, errorMapping, EnrollmentConfigurationAssignmentCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new enrollmentConfigurationAssignment object. + * Create new navigation property to assignments for deviceManagement * @param body The request body * @return a {@link EnrollmentConfigurationAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EnrollmentConfigurationAssignment post(@jakarta.annotation.Nonnull final EnrollmentConfigurationAssignment body) { return post(body, null); } /** - * Create a new enrollmentConfigurationAssignment object. + * Create new navigation property to assignments for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EnrollmentConfigurationAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EnrollmentConfigurationAssignment post(@jakarta.annotation.Nonnull final EnrollmentConfigurationAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public EnrollmentConfigurationAssignment post(@jakarta.annotation.Nonnull final return this.requestAdapter.send(requestInfo, errorMapping, EnrollmentConfigurationAssignment::createFromDiscriminatorValue); } /** - * List properties and relationships of the enrollmentConfigurationAssignment objects. + * The list of group assignments for the device configuration profile * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the enrollmentConfigurationAssignment objects. + * The list of group assignments for the device configuration profile * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new enrollmentConfigurationAssignment object. + * Create new navigation property to assignments for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new enrollmentConfigurationAssignment object. + * Create new navigation property to assignments for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public AssignmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AssignmentsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the enrollmentConfigurationAssignment objects. + * The list of group assignments for the device configuration profile */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceenrollmentconfigurations/item/assignments/item/EnrollmentConfigurationAssignmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceenrollmentconfigurations/item/assignments/item/EnrollmentConfigurationAssignmentItemRequestBuilder.java index 8244d06bb56..913dba59672 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceenrollmentconfigurations/item/assignments/item/EnrollmentConfigurationAssignmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/deviceenrollmentconfigurations/item/assignments/item/EnrollmentConfigurationAssignmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public EnrollmentConfigurationAssignmentItemRequestBuilder(@jakarta.annotation.N super(requestAdapter, "{+baseurl}/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration%2Did}/assignments/{enrollmentConfigurationAssignment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a enrollmentConfigurationAssignment. + * Delete navigation property assignments for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a enrollmentConfigurationAssignment. + * Delete navigation property assignments for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the enrollmentConfigurationAssignment object. + * The list of group assignments for the device configuration profile * @return a {@link EnrollmentConfigurationAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EnrollmentConfigurationAssignment get() { return get(null); } /** - * Read properties and relationships of the enrollmentConfigurationAssignment object. + * The list of group assignments for the device configuration profile * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EnrollmentConfigurationAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EnrollmentConfigurationAssignment get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public EnrollmentConfigurationAssignment get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, EnrollmentConfigurationAssignment::createFromDiscriminatorValue); } /** - * Update the properties of a enrollmentConfigurationAssignment object. + * Update the navigation property assignments in deviceManagement * @param body The request body * @return a {@link EnrollmentConfigurationAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EnrollmentConfigurationAssignment patch(@jakarta.annotation.Nonnull final EnrollmentConfigurationAssignment body) { return patch(body, null); } /** - * Update the properties of a enrollmentConfigurationAssignment object. + * Update the navigation property assignments in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EnrollmentConfigurationAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EnrollmentConfigurationAssignment patch(@jakarta.annotation.Nonnull final EnrollmentConfigurationAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public EnrollmentConfigurationAssignment patch(@jakarta.annotation.Nonnull final return this.requestAdapter.send(requestInfo, errorMapping, EnrollmentConfigurationAssignment::createFromDiscriminatorValue); } /** - * Deletes a enrollmentConfigurationAssignment. + * Delete navigation property assignments for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a enrollmentConfigurationAssignment. + * Delete navigation property assignments for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the enrollmentConfigurationAssignment object. + * The list of group assignments for the device configuration profile * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the enrollmentConfigurationAssignment object. + * The list of group assignments for the device configuration profile * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a enrollmentConfigurationAssignment object. + * Update the navigation property assignments in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a enrollmentConfigurationAssignment object. + * Update the navigation property assignments in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public EnrollmentConfigurationAssignmentItemRequestBuilder withUrl(@jakarta.anno public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the enrollmentConfigurationAssignment object. + * The list of group assignments for the device configuration profile */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicemanagementpartners/DeviceManagementPartnersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicemanagementpartners/DeviceManagementPartnersRequestBuilder.java index 197c70990b5..997778b14e8 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicemanagementpartners/DeviceManagementPartnersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicemanagementpartners/DeviceManagementPartnersRequestBuilder.java @@ -60,21 +60,19 @@ public DeviceManagementPartnersRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/deviceManagement/deviceManagementPartners{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the deviceManagementPartner objects. + * The list of Device Management Partners configured by the tenant. * @return a {@link DeviceManagementPartnerCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceManagementPartnerCollectionResponse get() { return get(null); } /** - * List properties and relationships of the deviceManagementPartner objects. + * The list of Device Management Partners configured by the tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceManagementPartnerCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceManagementPartnerCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public DeviceManagementPartnerCollectionResponse get(@jakarta.annotation.Nullabl return this.requestAdapter.send(requestInfo, errorMapping, DeviceManagementPartnerCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new deviceManagementPartner object. + * Create new navigation property to deviceManagementPartners for deviceManagement * @param body The request body * @return a {@link DeviceManagementPartner} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceManagementPartner post(@jakarta.annotation.Nonnull final DeviceManagementPartner body) { return post(body, null); } /** - * Create a new deviceManagementPartner object. + * Create new navigation property to deviceManagementPartners for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceManagementPartner} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceManagementPartner post(@jakarta.annotation.Nonnull final DeviceManagementPartner body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public DeviceManagementPartner post(@jakarta.annotation.Nonnull final DeviceMana return this.requestAdapter.send(requestInfo, errorMapping, DeviceManagementPartner::createFromDiscriminatorValue); } /** - * List properties and relationships of the deviceManagementPartner objects. + * The list of Device Management Partners configured by the tenant. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the deviceManagementPartner objects. + * The list of Device Management Partners configured by the tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new deviceManagementPartner object. + * Create new navigation property to deviceManagementPartners for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new deviceManagementPartner object. + * Create new navigation property to deviceManagementPartners for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public DeviceManagementPartnersRequestBuilder withUrl(@jakarta.annotation.Nonnul return new DeviceManagementPartnersRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the deviceManagementPartner objects. + * The list of Device Management Partners configured by the tenant. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicemanagementpartners/item/DeviceManagementPartnerItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicemanagementpartners/item/DeviceManagementPartnerItemRequestBuilder.java index bde4de3071a..3de101e2544 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/devicemanagementpartners/item/DeviceManagementPartnerItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/devicemanagementpartners/item/DeviceManagementPartnerItemRequestBuilder.java @@ -46,18 +46,16 @@ public DeviceManagementPartnerItemRequestBuilder(@jakarta.annotation.Nonnull fin super(requestAdapter, "{+baseurl}/deviceManagement/deviceManagementPartners/{deviceManagementPartner%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a deviceManagementPartner. + * Delete navigation property deviceManagementPartners for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a deviceManagementPartner. + * Delete navigation property deviceManagementPartners for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the deviceManagementPartner object. + * The list of Device Management Partners configured by the tenant. * @return a {@link DeviceManagementPartner} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceManagementPartner get() { return get(null); } /** - * Read properties and relationships of the deviceManagementPartner object. + * The list of Device Management Partners configured by the tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceManagementPartner} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceManagementPartner get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public DeviceManagementPartner get(@jakarta.annotation.Nullable final java.util. return this.requestAdapter.send(requestInfo, errorMapping, DeviceManagementPartner::createFromDiscriminatorValue); } /** - * Update the properties of a deviceManagementPartner object. + * Update the navigation property deviceManagementPartners in deviceManagement * @param body The request body * @return a {@link DeviceManagementPartner} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceManagementPartner patch(@jakarta.annotation.Nonnull final DeviceManagementPartner body) { return patch(body, null); } /** - * Update the properties of a deviceManagementPartner object. + * Update the navigation property deviceManagementPartners in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceManagementPartner} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceManagementPartner patch(@jakarta.annotation.Nonnull final DeviceManagementPartner body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public DeviceManagementPartner patch(@jakarta.annotation.Nonnull final DeviceMan return this.requestAdapter.send(requestInfo, errorMapping, DeviceManagementPartner::createFromDiscriminatorValue); } /** - * Deletes a deviceManagementPartner. + * Delete navigation property deviceManagementPartners for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a deviceManagementPartner. + * Delete navigation property deviceManagementPartners for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the deviceManagementPartner object. + * The list of Device Management Partners configured by the tenant. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the deviceManagementPartner object. + * The list of Device Management Partners configured by the tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a deviceManagementPartner object. + * Update the navigation property deviceManagementPartners in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a deviceManagementPartner object. + * Update the navigation property deviceManagementPartners in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public DeviceManagementPartnerItemRequestBuilder withUrl(@jakarta.annotation.Non public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the deviceManagementPartner object. + * The list of Device Management Partners configured by the tenant. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/exchangeconnectors/ExchangeConnectorsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/exchangeconnectors/ExchangeConnectorsRequestBuilder.java index 7627999856d..377ee3f1622 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/exchangeconnectors/ExchangeConnectorsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/exchangeconnectors/ExchangeConnectorsRequestBuilder.java @@ -60,21 +60,19 @@ public ExchangeConnectorsRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/deviceManagement/exchangeConnectors{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the deviceManagementExchangeConnector objects. + * The list of Exchange Connectors configured by the tenant. * @return a {@link DeviceManagementExchangeConnectorCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceManagementExchangeConnectorCollectionResponse get() { return get(null); } /** - * List properties and relationships of the deviceManagementExchangeConnector objects. + * The list of Exchange Connectors configured by the tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceManagementExchangeConnectorCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceManagementExchangeConnectorCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public DeviceManagementExchangeConnectorCollectionResponse get(@jakarta.annotati return this.requestAdapter.send(requestInfo, errorMapping, DeviceManagementExchangeConnectorCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new deviceManagementExchangeConnector object. + * Create new navigation property to exchangeConnectors for deviceManagement * @param body The request body * @return a {@link DeviceManagementExchangeConnector} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceManagementExchangeConnector post(@jakarta.annotation.Nonnull final DeviceManagementExchangeConnector body) { return post(body, null); } /** - * Create a new deviceManagementExchangeConnector object. + * Create new navigation property to exchangeConnectors for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceManagementExchangeConnector} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceManagementExchangeConnector post(@jakarta.annotation.Nonnull final DeviceManagementExchangeConnector body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public DeviceManagementExchangeConnector post(@jakarta.annotation.Nonnull final return this.requestAdapter.send(requestInfo, errorMapping, DeviceManagementExchangeConnector::createFromDiscriminatorValue); } /** - * List properties and relationships of the deviceManagementExchangeConnector objects. + * The list of Exchange Connectors configured by the tenant. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the deviceManagementExchangeConnector objects. + * The list of Exchange Connectors configured by the tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new deviceManagementExchangeConnector object. + * Create new navigation property to exchangeConnectors for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new deviceManagementExchangeConnector object. + * Create new navigation property to exchangeConnectors for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ExchangeConnectorsRequestBuilder withUrl(@jakarta.annotation.Nonnull fina return new ExchangeConnectorsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the deviceManagementExchangeConnector objects. + * The list of Exchange Connectors configured by the tenant. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/exchangeconnectors/item/DeviceManagementExchangeConnectorItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/exchangeconnectors/item/DeviceManagementExchangeConnectorItemRequestBuilder.java index 0ce4694ece2..c62da212702 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/exchangeconnectors/item/DeviceManagementExchangeConnectorItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/exchangeconnectors/item/DeviceManagementExchangeConnectorItemRequestBuilder.java @@ -46,18 +46,16 @@ public DeviceManagementExchangeConnectorItemRequestBuilder(@jakarta.annotation.N super(requestAdapter, "{+baseurl}/deviceManagement/exchangeConnectors/{deviceManagementExchangeConnector%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a deviceManagementExchangeConnector. + * Delete navigation property exchangeConnectors for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a deviceManagementExchangeConnector. + * Delete navigation property exchangeConnectors for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the deviceManagementExchangeConnector object. + * The list of Exchange Connectors configured by the tenant. * @return a {@link DeviceManagementExchangeConnector} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceManagementExchangeConnector get() { return get(null); } /** - * Read properties and relationships of the deviceManagementExchangeConnector object. + * The list of Exchange Connectors configured by the tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceManagementExchangeConnector} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceManagementExchangeConnector get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public DeviceManagementExchangeConnector get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, DeviceManagementExchangeConnector::createFromDiscriminatorValue); } /** - * Update the properties of a deviceManagementExchangeConnector object. + * Update the navigation property exchangeConnectors in deviceManagement * @param body The request body * @return a {@link DeviceManagementExchangeConnector} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceManagementExchangeConnector patch(@jakarta.annotation.Nonnull final DeviceManagementExchangeConnector body) { return patch(body, null); } /** - * Update the properties of a deviceManagementExchangeConnector object. + * Update the navigation property exchangeConnectors in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceManagementExchangeConnector} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceManagementExchangeConnector patch(@jakarta.annotation.Nonnull final DeviceManagementExchangeConnector body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public DeviceManagementExchangeConnector patch(@jakarta.annotation.Nonnull final return this.requestAdapter.send(requestInfo, errorMapping, DeviceManagementExchangeConnector::createFromDiscriminatorValue); } /** - * Deletes a deviceManagementExchangeConnector. + * Delete navigation property exchangeConnectors for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a deviceManagementExchangeConnector. + * Delete navigation property exchangeConnectors for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the deviceManagementExchangeConnector object. + * The list of Exchange Connectors configured by the tenant. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the deviceManagementExchangeConnector object. + * The list of Exchange Connectors configured by the tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a deviceManagementExchangeConnector object. + * Update the navigation property exchangeConnectors in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a deviceManagementExchangeConnector object. + * Update the navigation property exchangeConnectors in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public DeviceManagementExchangeConnectorItemRequestBuilder withUrl(@jakarta.anno public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the deviceManagementExchangeConnector object. + * The list of Exchange Connectors configured by the tenant. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/geteffectivepermissionswithscope/GetEffectivePermissionsWithScopeRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/geteffectivepermissionswithscope/GetEffectivePermissionsWithScopeRequestBuilder.java index 17d8e590ea4..f9f02a4c676 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/geteffectivepermissionswithscope/GetEffectivePermissionsWithScopeRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/geteffectivepermissionswithscope/GetEffectivePermissionsWithScopeRequestBuilder.java @@ -41,6 +41,7 @@ public GetEffectivePermissionsWithScopeRequestBuilder(@jakarta.annotation.Nonnul * Retrieves the effective permissions of the currently authenticated user * @return a {@link GetEffectivePermissionsWithScopeGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetEffectivePermissionsWithScopeGetResponse get() { @@ -51,6 +52,7 @@ public GetEffectivePermissionsWithScopeGetResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GetEffectivePermissionsWithScopeGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetEffectivePermissionsWithScopeGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/importedwindowsautopilotdeviceidentities/ImportedWindowsAutopilotDeviceIdentitiesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/importedwindowsautopilotdeviceidentities/ImportedWindowsAutopilotDeviceIdentitiesRequestBuilder.java index 9f7350bd46a..1793aefaf0a 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/importedwindowsautopilotdeviceidentities/ImportedWindowsAutopilotDeviceIdentitiesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/importedwindowsautopilotdeviceidentities/ImportedWindowsAutopilotDeviceIdentitiesRequestBuilder.java @@ -69,21 +69,19 @@ public ImportedWindowsAutopilotDeviceIdentitiesRequestBuilder(@jakarta.annotatio super(requestAdapter, "{+baseurl}/deviceManagement/importedWindowsAutopilotDeviceIdentities{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the importedWindowsAutopilotDeviceIdentity objects. + * Collection of imported Windows autopilot devices. * @return a {@link ImportedWindowsAutopilotDeviceIdentityCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ImportedWindowsAutopilotDeviceIdentityCollectionResponse get() { return get(null); } /** - * List properties and relationships of the importedWindowsAutopilotDeviceIdentity objects. + * Collection of imported Windows autopilot devices. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ImportedWindowsAutopilotDeviceIdentityCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ImportedWindowsAutopilotDeviceIdentityCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public ImportedWindowsAutopilotDeviceIdentityCollectionResponse get(@jakarta.ann return this.requestAdapter.send(requestInfo, errorMapping, ImportedWindowsAutopilotDeviceIdentityCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new importedWindowsAutopilotDeviceIdentity object. + * Create new navigation property to importedWindowsAutopilotDeviceIdentities for deviceManagement * @param body The request body * @return a {@link ImportedWindowsAutopilotDeviceIdentity} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ImportedWindowsAutopilotDeviceIdentity post(@jakarta.annotation.Nonnull final ImportedWindowsAutopilotDeviceIdentity body) { return post(body, null); } /** - * Create a new importedWindowsAutopilotDeviceIdentity object. + * Create new navigation property to importedWindowsAutopilotDeviceIdentities for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ImportedWindowsAutopilotDeviceIdentity} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ImportedWindowsAutopilotDeviceIdentity post(@jakarta.annotation.Nonnull final ImportedWindowsAutopilotDeviceIdentity body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public ImportedWindowsAutopilotDeviceIdentity post(@jakarta.annotation.Nonnull f return this.requestAdapter.send(requestInfo, errorMapping, ImportedWindowsAutopilotDeviceIdentity::createFromDiscriminatorValue); } /** - * List properties and relationships of the importedWindowsAutopilotDeviceIdentity objects. + * Collection of imported Windows autopilot devices. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the importedWindowsAutopilotDeviceIdentity objects. + * Collection of imported Windows autopilot devices. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new importedWindowsAutopilotDeviceIdentity object. + * Create new navigation property to importedWindowsAutopilotDeviceIdentities for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new importedWindowsAutopilotDeviceIdentity object. + * Create new navigation property to importedWindowsAutopilotDeviceIdentities for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public ImportedWindowsAutopilotDeviceIdentitiesRequestBuilder withUrl(@jakarta.a return new ImportedWindowsAutopilotDeviceIdentitiesRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the importedWindowsAutopilotDeviceIdentity objects. + * Collection of imported Windows autopilot devices. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/importedwindowsautopilotdeviceidentities/item/ImportedWindowsAutopilotDeviceIdentityItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/importedwindowsautopilotdeviceidentities/item/ImportedWindowsAutopilotDeviceIdentityItemRequestBuilder.java index c74fd6511be..a1dbffb0837 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/importedwindowsautopilotdeviceidentities/item/ImportedWindowsAutopilotDeviceIdentityItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/importedwindowsautopilotdeviceidentities/item/ImportedWindowsAutopilotDeviceIdentityItemRequestBuilder.java @@ -37,18 +37,16 @@ public ImportedWindowsAutopilotDeviceIdentityItemRequestBuilder(@jakarta.annotat super(requestAdapter, "{+baseurl}/deviceManagement/importedWindowsAutopilotDeviceIdentities/{importedWindowsAutopilotDeviceIdentity%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a importedWindowsAutopilotDeviceIdentity. + * Delete navigation property importedWindowsAutopilotDeviceIdentities for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a importedWindowsAutopilotDeviceIdentity. + * Delete navigation property importedWindowsAutopilotDeviceIdentities for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the importedWindowsAutopilotDeviceIdentity object. + * Collection of imported Windows autopilot devices. * @return a {@link ImportedWindowsAutopilotDeviceIdentity} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ImportedWindowsAutopilotDeviceIdentity get() { return get(null); } /** - * Read properties and relationships of the importedWindowsAutopilotDeviceIdentity object. + * Collection of imported Windows autopilot devices. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ImportedWindowsAutopilotDeviceIdentity} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ImportedWindowsAutopilotDeviceIdentity get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -106,7 +102,7 @@ public ImportedWindowsAutopilotDeviceIdentity patch(@jakarta.annotation.Nonnull return this.requestAdapter.send(requestInfo, errorMapping, ImportedWindowsAutopilotDeviceIdentity::createFromDiscriminatorValue); } /** - * Deletes a importedWindowsAutopilotDeviceIdentity. + * Delete navigation property importedWindowsAutopilotDeviceIdentities for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -114,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a importedWindowsAutopilotDeviceIdentity. + * Delete navigation property importedWindowsAutopilotDeviceIdentities for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the importedWindowsAutopilotDeviceIdentity object. + * Collection of imported Windows autopilot devices. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the importedWindowsAutopilotDeviceIdentity object. + * Collection of imported Windows autopilot devices. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public ImportedWindowsAutopilotDeviceIdentityItemRequestBuilder withUrl(@jakarta public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the importedWindowsAutopilotDeviceIdentity object. + * Collection of imported Windows autopilot devices. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/iosupdatestatuses/IosUpdateStatusesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/iosupdatestatuses/IosUpdateStatusesRequestBuilder.java index 7c01eb06045..70f17219f82 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/iosupdatestatuses/IosUpdateStatusesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/iosupdatestatuses/IosUpdateStatusesRequestBuilder.java @@ -60,21 +60,19 @@ public IosUpdateStatusesRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/deviceManagement/iosUpdateStatuses{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the iosUpdateDeviceStatus objects. + * The IOS software update installation statuses for this account. * @return a {@link IosUpdateDeviceStatusCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IosUpdateDeviceStatusCollectionResponse get() { return get(null); } /** - * List properties and relationships of the iosUpdateDeviceStatus objects. + * The IOS software update installation statuses for this account. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link IosUpdateDeviceStatusCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IosUpdateDeviceStatusCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public IosUpdateDeviceStatusCollectionResponse get(@jakarta.annotation.Nullable return this.requestAdapter.send(requestInfo, errorMapping, IosUpdateDeviceStatusCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new iosUpdateDeviceStatus object. + * Create new navigation property to iosUpdateStatuses for deviceManagement * @param body The request body * @return a {@link IosUpdateDeviceStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IosUpdateDeviceStatus post(@jakarta.annotation.Nonnull final IosUpdateDeviceStatus body) { return post(body, null); } /** - * Create a new iosUpdateDeviceStatus object. + * Create new navigation property to iosUpdateStatuses for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link IosUpdateDeviceStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IosUpdateDeviceStatus post(@jakarta.annotation.Nonnull final IosUpdateDeviceStatus body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public IosUpdateDeviceStatus post(@jakarta.annotation.Nonnull final IosUpdateDev return this.requestAdapter.send(requestInfo, errorMapping, IosUpdateDeviceStatus::createFromDiscriminatorValue); } /** - * List properties and relationships of the iosUpdateDeviceStatus objects. + * The IOS software update installation statuses for this account. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the iosUpdateDeviceStatus objects. + * The IOS software update installation statuses for this account. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new iosUpdateDeviceStatus object. + * Create new navigation property to iosUpdateStatuses for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new iosUpdateDeviceStatus object. + * Create new navigation property to iosUpdateStatuses for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public IosUpdateStatusesRequestBuilder withUrl(@jakarta.annotation.Nonnull final return new IosUpdateStatusesRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the iosUpdateDeviceStatus objects. + * The IOS software update installation statuses for this account. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/iosupdatestatuses/item/IosUpdateDeviceStatusItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/iosupdatestatuses/item/IosUpdateDeviceStatusItemRequestBuilder.java index 5d7793be8b5..74cdeaf36b8 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/iosupdatestatuses/item/IosUpdateDeviceStatusItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/iosupdatestatuses/item/IosUpdateDeviceStatusItemRequestBuilder.java @@ -37,18 +37,16 @@ public IosUpdateDeviceStatusItemRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/deviceManagement/iosUpdateStatuses/{iosUpdateDeviceStatus%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a iosUpdateDeviceStatus. + * Delete navigation property iosUpdateStatuses for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a iosUpdateDeviceStatus. + * Delete navigation property iosUpdateStatuses for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the iosUpdateDeviceStatus object. + * The IOS software update installation statuses for this account. * @return a {@link IosUpdateDeviceStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IosUpdateDeviceStatus get() { return get(null); } /** - * Read properties and relationships of the iosUpdateDeviceStatus object. + * The IOS software update installation statuses for this account. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link IosUpdateDeviceStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IosUpdateDeviceStatus get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public IosUpdateDeviceStatus get(@jakarta.annotation.Nullable final java.util.fu return this.requestAdapter.send(requestInfo, errorMapping, IosUpdateDeviceStatus::createFromDiscriminatorValue); } /** - * Update the properties of a iosUpdateDeviceStatus object. + * Update the navigation property iosUpdateStatuses in deviceManagement * @param body The request body * @return a {@link IosUpdateDeviceStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IosUpdateDeviceStatus patch(@jakarta.annotation.Nonnull final IosUpdateDeviceStatus body) { return patch(body, null); } /** - * Update the properties of a iosUpdateDeviceStatus object. + * Update the navigation property iosUpdateStatuses in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link IosUpdateDeviceStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IosUpdateDeviceStatus patch(@jakarta.annotation.Nonnull final IosUpdateDeviceStatus body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public IosUpdateDeviceStatus patch(@jakarta.annotation.Nonnull final IosUpdateDe return this.requestAdapter.send(requestInfo, errorMapping, IosUpdateDeviceStatus::createFromDiscriminatorValue); } /** - * Deletes a iosUpdateDeviceStatus. + * Delete navigation property iosUpdateStatuses for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a iosUpdateDeviceStatus. + * Delete navigation property iosUpdateStatuses for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the iosUpdateDeviceStatus object. + * The IOS software update installation statuses for this account. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the iosUpdateDeviceStatus object. + * The IOS software update installation statuses for this account. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a iosUpdateDeviceStatus object. + * Update the navigation property iosUpdateStatuses in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a iosUpdateDeviceStatus object. + * Update the navigation property iosUpdateStatuses in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public IosUpdateDeviceStatusItemRequestBuilder withUrl(@jakarta.annotation.Nonnu public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the iosUpdateDeviceStatus object. + * The IOS software update installation statuses for this account. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/manageddeviceoverview/ManagedDeviceOverviewRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/manageddeviceoverview/ManagedDeviceOverviewRequestBuilder.java index f15b33f7345..9cebae48047 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/manageddeviceoverview/ManagedDeviceOverviewRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/manageddeviceoverview/ManagedDeviceOverviewRequestBuilder.java @@ -37,21 +37,19 @@ public ManagedDeviceOverviewRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/deviceManagement/managedDeviceOverview{?%24expand,%24select}", rawUrl); } /** - * Read properties and relationships of the managedDeviceOverview object. + * Device overview * @return a {@link ManagedDeviceOverview} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceOverview get() { return get(null); } /** - * Read properties and relationships of the managedDeviceOverview object. + * Device overview * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedDeviceOverview} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceOverview get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -61,7 +59,7 @@ public ManagedDeviceOverview get(@jakarta.annotation.Nullable final java.util.fu return this.requestAdapter.send(requestInfo, errorMapping, ManagedDeviceOverview::createFromDiscriminatorValue); } /** - * Read properties and relationships of the managedDeviceOverview object. + * Device overview * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -69,7 +67,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the managedDeviceOverview object. + * Device overview * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -91,7 +89,7 @@ public ManagedDeviceOverviewRequestBuilder withUrl(@jakarta.annotation.Nonnull f return new ManagedDeviceOverviewRequestBuilder(rawUrl, requestAdapter); } /** - * Read properties and relationships of the managedDeviceOverview object. + * Device overview */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/manageddevices/ManagedDevicesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/manageddevices/ManagedDevicesRequestBuilder.java index 168f6e7d509..5b076474620 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/manageddevices/ManagedDevicesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/manageddevices/ManagedDevicesRequestBuilder.java @@ -60,21 +60,19 @@ public ManagedDevicesRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/deviceManagement/managedDevices{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the managedDevice objects. + * The list of managed devices. * @return a {@link ManagedDeviceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceCollectionResponse get() { return get(null); } /** - * List properties and relationships of the managedDevice objects. + * The list of managed devices. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedDeviceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDeviceCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public ManagedDeviceCollectionResponse get(@jakarta.annotation.Nullable final ja return this.requestAdapter.send(requestInfo, errorMapping, ManagedDeviceCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new managedDevice object. + * Create new navigation property to managedDevices for deviceManagement * @param body The request body * @return a {@link ManagedDevice} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDevice post(@jakarta.annotation.Nonnull final ManagedDevice body) { return post(body, null); } /** - * Create a new managedDevice object. + * Create new navigation property to managedDevices for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedDevice} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDevice post(@jakarta.annotation.Nonnull final ManagedDevice body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public ManagedDevice post(@jakarta.annotation.Nonnull final ManagedDevice body, return this.requestAdapter.send(requestInfo, errorMapping, ManagedDevice::createFromDiscriminatorValue); } /** - * List properties and relationships of the managedDevice objects. + * The list of managed devices. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the managedDevice objects. + * The list of managed devices. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new managedDevice object. + * Create new navigation property to managedDevices for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new managedDevice object. + * Create new navigation property to managedDevices for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ManagedDevicesRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new ManagedDevicesRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the managedDevice objects. + * The list of managed devices. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/manageddevices/item/ManagedDeviceItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/manageddevices/item/ManagedDeviceItemRequestBuilder.java index 32706ccbdda..ad733128ee1 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/manageddevices/item/ManagedDeviceItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/manageddevices/item/ManagedDeviceItemRequestBuilder.java @@ -253,18 +253,16 @@ public ManagedDeviceItemRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/deviceManagement/managedDevices/{managedDevice%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a managedDevice. + * Delete navigation property managedDevices for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a managedDevice. + * Delete navigation property managedDevices for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -273,21 +271,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the managedDevice object. + * The list of managed devices. * @return a {@link ManagedDevice} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDevice get() { return get(null); } /** - * Read properties and relationships of the managedDevice object. + * The list of managed devices. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedDevice} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDevice get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -297,23 +293,21 @@ public ManagedDevice get(@jakarta.annotation.Nullable final java.util.function.C return this.requestAdapter.send(requestInfo, errorMapping, ManagedDevice::createFromDiscriminatorValue); } /** - * Update the properties of a managedDevice object. + * Update the navigation property managedDevices in deviceManagement * @param body The request body * @return a {@link ManagedDevice} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDevice patch(@jakarta.annotation.Nonnull final ManagedDevice body) { return patch(body, null); } /** - * Update the properties of a managedDevice object. + * Update the navigation property managedDevices in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManagedDevice} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ManagedDevice patch(@jakarta.annotation.Nonnull final ManagedDevice body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -324,7 +318,7 @@ public ManagedDevice patch(@jakarta.annotation.Nonnull final ManagedDevice body, return this.requestAdapter.send(requestInfo, errorMapping, ManagedDevice::createFromDiscriminatorValue); } /** - * Deletes a managedDevice. + * Delete navigation property managedDevices for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -332,7 +326,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a managedDevice. + * Delete navigation property managedDevices for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -344,7 +338,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the managedDevice object. + * The list of managed devices. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -352,7 +346,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the managedDevice object. + * The list of managed devices. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -364,7 +358,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a managedDevice object. + * Update the navigation property managedDevices in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -373,7 +367,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a managedDevice object. + * Update the navigation property managedDevices in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -404,7 +398,7 @@ public ManagedDeviceItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the managedDevice object. + * The list of managed devices. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/manageddevices/item/devicecategory/DeviceCategoryRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/manageddevices/item/devicecategory/DeviceCategoryRequestBuilder.java index 0fb4f4dd304..d93686e0f12 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/manageddevices/item/devicecategory/DeviceCategoryRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/manageddevices/item/devicecategory/DeviceCategoryRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the deviceCategory object. + * Device category * @return a {@link DeviceCategory} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCategory get() { return get(null); } /** - * Read properties and relationships of the deviceCategory object. + * Device category * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceCategory} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCategory get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public DeviceCategory get(@jakarta.annotation.Nullable final java.util.function. return this.requestAdapter.send(requestInfo, errorMapping, DeviceCategory::createFromDiscriminatorValue); } /** - * Update the properties of a deviceCategory object. + * Update the navigation property deviceCategory in deviceManagement * @param body The request body * @return a {@link DeviceCategory} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCategory patch(@jakarta.annotation.Nonnull final DeviceCategory body) { return patch(body, null); } /** - * Update the properties of a deviceCategory object. + * Update the navigation property deviceCategory in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceCategory} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCategory patch(@jakarta.annotation.Nonnull final DeviceCategory body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the deviceCategory object. + * Device category * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the deviceCategory object. + * Device category * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a deviceCategory object. + * Update the navigation property deviceCategory in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a deviceCategory object. + * Update the navigation property deviceCategory in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public DeviceCategoryRequestBuilder withUrl(@jakarta.annotation.Nonnull final St public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the deviceCategory object. + * Device category */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/manageddevices/item/users/UsersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/manageddevices/item/users/UsersRequestBuilder.java index 5ae8a079f1c..849e7cb253a 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/manageddevices/item/users/UsersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/manageddevices/item/users/UsersRequestBuilder.java @@ -37,21 +37,19 @@ public UsersRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/deviceManagement/managedDevices/{managedDevice%2Did}/users{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the user objects. + * The primary users associated with the managed device. * @return a {@link UserCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserCollectionResponse get() { return get(null); } /** - * List properties and relationships of the user objects. + * The primary users associated with the managed device. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UserCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -61,7 +59,7 @@ public UserCollectionResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, UserCollectionResponse::createFromDiscriminatorValue); } /** - * List properties and relationships of the user objects. + * The primary users associated with the managed device. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -69,7 +67,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the user objects. + * The primary users associated with the managed device. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -91,7 +89,7 @@ public UsersRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new UsersRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the user objects. + * The primary users associated with the managed device. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/manageddevices/item/windowsprotectionstate/WindowsProtectionStateRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/manageddevices/item/windowsprotectionstate/WindowsProtectionStateRequestBuilder.java index 1a5be744972..995cd3c0d5f 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/manageddevices/item/windowsprotectionstate/WindowsProtectionStateRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/manageddevices/item/windowsprotectionstate/WindowsProtectionStateRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the windowsProtectionState object. + * The device protection status. This property is read-only. * @return a {@link WindowsProtectionState} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsProtectionState get() { return get(null); } /** - * Read properties and relationships of the windowsProtectionState object. + * The device protection status. This property is read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WindowsProtectionState} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsProtectionState get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -88,23 +86,21 @@ public WindowsProtectionState get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, WindowsProtectionState::createFromDiscriminatorValue); } /** - * Update the properties of a windowsProtectionState object. + * Update the navigation property windowsProtectionState in deviceManagement * @param body The request body * @return a {@link WindowsProtectionState} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsProtectionState patch(@jakarta.annotation.Nonnull final WindowsProtectionState body) { return patch(body, null); } /** - * Update the properties of a windowsProtectionState object. + * Update the navigation property windowsProtectionState in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WindowsProtectionState} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsProtectionState patch(@jakarta.annotation.Nonnull final WindowsProtectionState body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the windowsProtectionState object. + * The device protection status. This property is read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the windowsProtectionState object. + * The device protection status. This property is read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a windowsProtectionState object. + * Update the navigation property windowsProtectionState in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -164,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a windowsProtectionState object. + * Update the navigation property windowsProtectionState in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -195,7 +191,7 @@ public WindowsProtectionStateRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the windowsProtectionState object. + * The device protection status. This property is read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/manageddevices/item/windowsprotectionstate/detectedmalwarestate/DetectedMalwareStateRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/manageddevices/item/windowsprotectionstate/detectedmalwarestate/DetectedMalwareStateRequestBuilder.java index daab11bb0e6..93af5635ca2 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/manageddevices/item/windowsprotectionstate/detectedmalwarestate/DetectedMalwareStateRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/manageddevices/item/windowsprotectionstate/detectedmalwarestate/DetectedMalwareStateRequestBuilder.java @@ -60,21 +60,19 @@ public DetectedMalwareStateRequestBuilder(@jakarta.annotation.Nonnull final Stri super(requestAdapter, "{+baseurl}/deviceManagement/managedDevices/{managedDevice%2Did}/windowsProtectionState/detectedMalwareState{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the windowsDeviceMalwareState objects. + * Device malware list * @return a {@link WindowsDeviceMalwareStateCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsDeviceMalwareStateCollectionResponse get() { return get(null); } /** - * List properties and relationships of the windowsDeviceMalwareState objects. + * Device malware list * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WindowsDeviceMalwareStateCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsDeviceMalwareStateCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public WindowsDeviceMalwareStateCollectionResponse get(@jakarta.annotation.Nulla return this.requestAdapter.send(requestInfo, errorMapping, WindowsDeviceMalwareStateCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new windowsDeviceMalwareState object. + * Create new navigation property to detectedMalwareState for deviceManagement * @param body The request body * @return a {@link WindowsDeviceMalwareState} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsDeviceMalwareState post(@jakarta.annotation.Nonnull final WindowsDeviceMalwareState body) { return post(body, null); } /** - * Create a new windowsDeviceMalwareState object. + * Create new navigation property to detectedMalwareState for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WindowsDeviceMalwareState} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsDeviceMalwareState post(@jakarta.annotation.Nonnull final WindowsDeviceMalwareState body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public WindowsDeviceMalwareState post(@jakarta.annotation.Nonnull final WindowsD return this.requestAdapter.send(requestInfo, errorMapping, WindowsDeviceMalwareState::createFromDiscriminatorValue); } /** - * List properties and relationships of the windowsDeviceMalwareState objects. + * Device malware list * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the windowsDeviceMalwareState objects. + * Device malware list * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new windowsDeviceMalwareState object. + * Create new navigation property to detectedMalwareState for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new windowsDeviceMalwareState object. + * Create new navigation property to detectedMalwareState for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public DetectedMalwareStateRequestBuilder withUrl(@jakarta.annotation.Nonnull fi return new DetectedMalwareStateRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the windowsDeviceMalwareState objects. + * Device malware list */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/manageddevices/item/windowsprotectionstate/detectedmalwarestate/item/WindowsDeviceMalwareStateItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/manageddevices/item/windowsprotectionstate/detectedmalwarestate/item/WindowsDeviceMalwareStateItemRequestBuilder.java index f02b574f692..1da3ed87bf2 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/manageddevices/item/windowsprotectionstate/detectedmalwarestate/item/WindowsDeviceMalwareStateItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/manageddevices/item/windowsprotectionstate/detectedmalwarestate/item/WindowsDeviceMalwareStateItemRequestBuilder.java @@ -37,18 +37,16 @@ public WindowsDeviceMalwareStateItemRequestBuilder(@jakarta.annotation.Nonnull f super(requestAdapter, "{+baseurl}/deviceManagement/managedDevices/{managedDevice%2Did}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a windowsDeviceMalwareState. + * Delete navigation property detectedMalwareState for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a windowsDeviceMalwareState. + * Delete navigation property detectedMalwareState for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the windowsDeviceMalwareState object. + * Device malware list * @return a {@link WindowsDeviceMalwareState} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsDeviceMalwareState get() { return get(null); } /** - * Read properties and relationships of the windowsDeviceMalwareState object. + * Device malware list * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WindowsDeviceMalwareState} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsDeviceMalwareState get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public WindowsDeviceMalwareState get(@jakarta.annotation.Nullable final java.uti return this.requestAdapter.send(requestInfo, errorMapping, WindowsDeviceMalwareState::createFromDiscriminatorValue); } /** - * Update the properties of a windowsDeviceMalwareState object. + * Update the navigation property detectedMalwareState in deviceManagement * @param body The request body * @return a {@link WindowsDeviceMalwareState} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsDeviceMalwareState patch(@jakarta.annotation.Nonnull final WindowsDeviceMalwareState body) { return patch(body, null); } /** - * Update the properties of a windowsDeviceMalwareState object. + * Update the navigation property detectedMalwareState in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WindowsDeviceMalwareState} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsDeviceMalwareState patch(@jakarta.annotation.Nonnull final WindowsDeviceMalwareState body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public WindowsDeviceMalwareState patch(@jakarta.annotation.Nonnull final Windows return this.requestAdapter.send(requestInfo, errorMapping, WindowsDeviceMalwareState::createFromDiscriminatorValue); } /** - * Deletes a windowsDeviceMalwareState. + * Delete navigation property detectedMalwareState for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a windowsDeviceMalwareState. + * Delete navigation property detectedMalwareState for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the windowsDeviceMalwareState object. + * Device malware list * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the windowsDeviceMalwareState object. + * Device malware list * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a windowsDeviceMalwareState object. + * Update the navigation property detectedMalwareState in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a windowsDeviceMalwareState object. + * Update the navigation property detectedMalwareState in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public WindowsDeviceMalwareStateItemRequestBuilder withUrl(@jakarta.annotation.N public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the windowsDeviceMalwareState object. + * Device malware list */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/mobileapptroubleshootingevents/MobileAppTroubleshootingEventsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/mobileapptroubleshootingevents/MobileAppTroubleshootingEventsRequestBuilder.java index b6e6e9ff23f..b2a238418e7 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/mobileapptroubleshootingevents/MobileAppTroubleshootingEventsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/mobileapptroubleshootingevents/MobileAppTroubleshootingEventsRequestBuilder.java @@ -60,21 +60,19 @@ public MobileAppTroubleshootingEventsRequestBuilder(@jakarta.annotation.Nonnull super(requestAdapter, "{+baseurl}/deviceManagement/mobileAppTroubleshootingEvents{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the mobileAppTroubleshootingEvent objects. + * The collection property of MobileAppTroubleshootingEvent. * @return a {@link MobileAppTroubleshootingEventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppTroubleshootingEventCollectionResponse get() { return get(null); } /** - * List properties and relationships of the mobileAppTroubleshootingEvent objects. + * The collection property of MobileAppTroubleshootingEvent. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppTroubleshootingEventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppTroubleshootingEventCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public MobileAppTroubleshootingEventCollectionResponse get(@jakarta.annotation.N return this.requestAdapter.send(requestInfo, errorMapping, MobileAppTroubleshootingEventCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new mobileAppTroubleshootingEvent object. + * Create new navigation property to mobileAppTroubleshootingEvents for deviceManagement * @param body The request body * @return a {@link MobileAppTroubleshootingEvent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppTroubleshootingEvent post(@jakarta.annotation.Nonnull final MobileAppTroubleshootingEvent body) { return post(body, null); } /** - * Create a new mobileAppTroubleshootingEvent object. + * Create new navigation property to mobileAppTroubleshootingEvents for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppTroubleshootingEvent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppTroubleshootingEvent post(@jakarta.annotation.Nonnull final MobileAppTroubleshootingEvent body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public MobileAppTroubleshootingEvent post(@jakarta.annotation.Nonnull final Mobi return this.requestAdapter.send(requestInfo, errorMapping, MobileAppTroubleshootingEvent::createFromDiscriminatorValue); } /** - * List properties and relationships of the mobileAppTroubleshootingEvent objects. + * The collection property of MobileAppTroubleshootingEvent. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the mobileAppTroubleshootingEvent objects. + * The collection property of MobileAppTroubleshootingEvent. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new mobileAppTroubleshootingEvent object. + * Create new navigation property to mobileAppTroubleshootingEvents for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new mobileAppTroubleshootingEvent object. + * Create new navigation property to mobileAppTroubleshootingEvents for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public MobileAppTroubleshootingEventsRequestBuilder withUrl(@jakarta.annotation. return new MobileAppTroubleshootingEventsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the mobileAppTroubleshootingEvent objects. + * The collection property of MobileAppTroubleshootingEvent. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/mobileapptroubleshootingevents/item/MobileAppTroubleshootingEventItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/mobileapptroubleshootingevents/item/MobileAppTroubleshootingEventItemRequestBuilder.java index d2a0ca00bef..65b37b3de70 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/mobileapptroubleshootingevents/item/MobileAppTroubleshootingEventItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/mobileapptroubleshootingevents/item/MobileAppTroubleshootingEventItemRequestBuilder.java @@ -46,18 +46,16 @@ public MobileAppTroubleshootingEventItemRequestBuilder(@jakarta.annotation.Nonnu super(requestAdapter, "{+baseurl}/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a mobileAppTroubleshootingEvent. + * Delete navigation property mobileAppTroubleshootingEvents for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a mobileAppTroubleshootingEvent. + * Delete navigation property mobileAppTroubleshootingEvents for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the mobileAppTroubleshootingEvent object. + * The collection property of MobileAppTroubleshootingEvent. * @return a {@link MobileAppTroubleshootingEvent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppTroubleshootingEvent get() { return get(null); } /** - * Read properties and relationships of the mobileAppTroubleshootingEvent object. + * The collection property of MobileAppTroubleshootingEvent. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppTroubleshootingEvent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppTroubleshootingEvent get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public MobileAppTroubleshootingEvent get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, MobileAppTroubleshootingEvent::createFromDiscriminatorValue); } /** - * Update the properties of a mobileAppTroubleshootingEvent object. + * Update the navigation property mobileAppTroubleshootingEvents in deviceManagement * @param body The request body * @return a {@link MobileAppTroubleshootingEvent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppTroubleshootingEvent patch(@jakarta.annotation.Nonnull final MobileAppTroubleshootingEvent body) { return patch(body, null); } /** - * Update the properties of a mobileAppTroubleshootingEvent object. + * Update the navigation property mobileAppTroubleshootingEvents in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileAppTroubleshootingEvent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileAppTroubleshootingEvent patch(@jakarta.annotation.Nonnull final MobileAppTroubleshootingEvent body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public MobileAppTroubleshootingEvent patch(@jakarta.annotation.Nonnull final Mob return this.requestAdapter.send(requestInfo, errorMapping, MobileAppTroubleshootingEvent::createFromDiscriminatorValue); } /** - * Deletes a mobileAppTroubleshootingEvent. + * Delete navigation property mobileAppTroubleshootingEvents for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a mobileAppTroubleshootingEvent. + * Delete navigation property mobileAppTroubleshootingEvents for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the mobileAppTroubleshootingEvent object. + * The collection property of MobileAppTroubleshootingEvent. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the mobileAppTroubleshootingEvent object. + * The collection property of MobileAppTroubleshootingEvent. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a mobileAppTroubleshootingEvent object. + * Update the navigation property mobileAppTroubleshootingEvents in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a mobileAppTroubleshootingEvent object. + * Update the navigation property mobileAppTroubleshootingEvents in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public MobileAppTroubleshootingEventItemRequestBuilder withUrl(@jakarta.annotati public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the mobileAppTroubleshootingEvent object. + * The collection property of MobileAppTroubleshootingEvent. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/mobileapptroubleshootingevents/item/applogcollectionrequests/AppLogCollectionRequestsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/mobileapptroubleshootingevents/item/applogcollectionrequests/AppLogCollectionRequestsRequestBuilder.java index d1bbc6d6716..de7b2d4efcb 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/mobileapptroubleshootingevents/item/applogcollectionrequests/AppLogCollectionRequestsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/mobileapptroubleshootingevents/item/applogcollectionrequests/AppLogCollectionRequestsRequestBuilder.java @@ -60,21 +60,19 @@ public AppLogCollectionRequestsRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent%2Did}/appLogCollectionRequests{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the appLogCollectionRequest objects. + * Indicates collection of App Log Upload Request. * @return a {@link AppLogCollectionRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AppLogCollectionRequestCollectionResponse get() { return get(null); } /** - * List properties and relationships of the appLogCollectionRequest objects. + * Indicates collection of App Log Upload Request. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AppLogCollectionRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AppLogCollectionRequestCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public AppLogCollectionRequestCollectionResponse get(@jakarta.annotation.Nullabl return this.requestAdapter.send(requestInfo, errorMapping, AppLogCollectionRequestCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new appLogCollectionRequest object. + * Create new navigation property to appLogCollectionRequests for deviceManagement * @param body The request body * @return a {@link AppLogCollectionRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AppLogCollectionRequest post(@jakarta.annotation.Nonnull final AppLogCollectionRequest body) { return post(body, null); } /** - * Create a new appLogCollectionRequest object. + * Create new navigation property to appLogCollectionRequests for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AppLogCollectionRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AppLogCollectionRequest post(@jakarta.annotation.Nonnull final AppLogCollectionRequest body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public AppLogCollectionRequest post(@jakarta.annotation.Nonnull final AppLogColl return this.requestAdapter.send(requestInfo, errorMapping, AppLogCollectionRequest::createFromDiscriminatorValue); } /** - * List properties and relationships of the appLogCollectionRequest objects. + * Indicates collection of App Log Upload Request. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the appLogCollectionRequest objects. + * Indicates collection of App Log Upload Request. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new appLogCollectionRequest object. + * Create new navigation property to appLogCollectionRequests for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new appLogCollectionRequest object. + * Create new navigation property to appLogCollectionRequests for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public AppLogCollectionRequestsRequestBuilder withUrl(@jakarta.annotation.Nonnul return new AppLogCollectionRequestsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the appLogCollectionRequest objects. + * Indicates collection of App Log Upload Request. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/mobileapptroubleshootingevents/item/applogcollectionrequests/item/AppLogCollectionRequestItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/mobileapptroubleshootingevents/item/applogcollectionrequests/item/AppLogCollectionRequestItemRequestBuilder.java index 85f949ff765..c86d6df074b 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/mobileapptroubleshootingevents/item/applogcollectionrequests/item/AppLogCollectionRequestItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/mobileapptroubleshootingevents/item/applogcollectionrequests/item/AppLogCollectionRequestItemRequestBuilder.java @@ -46,18 +46,16 @@ public AppLogCollectionRequestItemRequestBuilder(@jakarta.annotation.Nonnull fin super(requestAdapter, "{+baseurl}/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent%2Did}/appLogCollectionRequests/{appLogCollectionRequest%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a appLogCollectionRequest. + * Delete navigation property appLogCollectionRequests for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a appLogCollectionRequest. + * Delete navigation property appLogCollectionRequests for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the appLogCollectionRequest object. + * Indicates collection of App Log Upload Request. * @return a {@link AppLogCollectionRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AppLogCollectionRequest get() { return get(null); } /** - * Read properties and relationships of the appLogCollectionRequest object. + * Indicates collection of App Log Upload Request. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AppLogCollectionRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AppLogCollectionRequest get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public AppLogCollectionRequest get(@jakarta.annotation.Nullable final java.util. return this.requestAdapter.send(requestInfo, errorMapping, AppLogCollectionRequest::createFromDiscriminatorValue); } /** - * Update the properties of a appLogCollectionRequest object. + * Update the navigation property appLogCollectionRequests in deviceManagement * @param body The request body * @return a {@link AppLogCollectionRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AppLogCollectionRequest patch(@jakarta.annotation.Nonnull final AppLogCollectionRequest body) { return patch(body, null); } /** - * Update the properties of a appLogCollectionRequest object. + * Update the navigation property appLogCollectionRequests in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AppLogCollectionRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AppLogCollectionRequest patch(@jakarta.annotation.Nonnull final AppLogCollectionRequest body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public AppLogCollectionRequest patch(@jakarta.annotation.Nonnull final AppLogCol return this.requestAdapter.send(requestInfo, errorMapping, AppLogCollectionRequest::createFromDiscriminatorValue); } /** - * Deletes a appLogCollectionRequest. + * Delete navigation property appLogCollectionRequests for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a appLogCollectionRequest. + * Delete navigation property appLogCollectionRequests for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the appLogCollectionRequest object. + * Indicates collection of App Log Upload Request. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the appLogCollectionRequest object. + * Indicates collection of App Log Upload Request. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a appLogCollectionRequest object. + * Update the navigation property appLogCollectionRequests in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a appLogCollectionRequest object. + * Update the navigation property appLogCollectionRequests in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public AppLogCollectionRequestItemRequestBuilder withUrl(@jakarta.annotation.Non public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the appLogCollectionRequest object. + * Indicates collection of App Log Upload Request. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/mobilethreatdefenseconnectors/MobileThreatDefenseConnectorsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/mobilethreatdefenseconnectors/MobileThreatDefenseConnectorsRequestBuilder.java index fdd8b56e6a2..7782477792f 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/mobilethreatdefenseconnectors/MobileThreatDefenseConnectorsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/mobilethreatdefenseconnectors/MobileThreatDefenseConnectorsRequestBuilder.java @@ -60,21 +60,19 @@ public MobileThreatDefenseConnectorsRequestBuilder(@jakarta.annotation.Nonnull f super(requestAdapter, "{+baseurl}/deviceManagement/mobileThreatDefenseConnectors{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the mobileThreatDefenseConnector objects. + * The list of Mobile threat Defense connectors configured by the tenant. * @return a {@link MobileThreatDefenseConnectorCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileThreatDefenseConnectorCollectionResponse get() { return get(null); } /** - * List properties and relationships of the mobileThreatDefenseConnector objects. + * The list of Mobile threat Defense connectors configured by the tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileThreatDefenseConnectorCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileThreatDefenseConnectorCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public MobileThreatDefenseConnectorCollectionResponse get(@jakarta.annotation.Nu return this.requestAdapter.send(requestInfo, errorMapping, MobileThreatDefenseConnectorCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new mobileThreatDefenseConnector object. + * Create new navigation property to mobileThreatDefenseConnectors for deviceManagement * @param body The request body * @return a {@link MobileThreatDefenseConnector} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileThreatDefenseConnector post(@jakarta.annotation.Nonnull final MobileThreatDefenseConnector body) { return post(body, null); } /** - * Create a new mobileThreatDefenseConnector object. + * Create new navigation property to mobileThreatDefenseConnectors for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileThreatDefenseConnector} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileThreatDefenseConnector post(@jakarta.annotation.Nonnull final MobileThreatDefenseConnector body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public MobileThreatDefenseConnector post(@jakarta.annotation.Nonnull final Mobil return this.requestAdapter.send(requestInfo, errorMapping, MobileThreatDefenseConnector::createFromDiscriminatorValue); } /** - * List properties and relationships of the mobileThreatDefenseConnector objects. + * The list of Mobile threat Defense connectors configured by the tenant. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the mobileThreatDefenseConnector objects. + * The list of Mobile threat Defense connectors configured by the tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new mobileThreatDefenseConnector object. + * Create new navigation property to mobileThreatDefenseConnectors for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new mobileThreatDefenseConnector object. + * Create new navigation property to mobileThreatDefenseConnectors for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public MobileThreatDefenseConnectorsRequestBuilder withUrl(@jakarta.annotation.N return new MobileThreatDefenseConnectorsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the mobileThreatDefenseConnector objects. + * The list of Mobile threat Defense connectors configured by the tenant. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/mobilethreatdefenseconnectors/item/MobileThreatDefenseConnectorItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/mobilethreatdefenseconnectors/item/MobileThreatDefenseConnectorItemRequestBuilder.java index e9960517087..f0d36d1c6ac 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/mobilethreatdefenseconnectors/item/MobileThreatDefenseConnectorItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/mobilethreatdefenseconnectors/item/MobileThreatDefenseConnectorItemRequestBuilder.java @@ -37,18 +37,16 @@ public MobileThreatDefenseConnectorItemRequestBuilder(@jakarta.annotation.Nonnul super(requestAdapter, "{+baseurl}/deviceManagement/mobileThreatDefenseConnectors/{mobileThreatDefenseConnector%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a mobileThreatDefenseConnector. + * Delete navigation property mobileThreatDefenseConnectors for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a mobileThreatDefenseConnector. + * Delete navigation property mobileThreatDefenseConnectors for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the mobileThreatDefenseConnector object. + * The list of Mobile threat Defense connectors configured by the tenant. * @return a {@link MobileThreatDefenseConnector} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileThreatDefenseConnector get() { return get(null); } /** - * Read properties and relationships of the mobileThreatDefenseConnector object. + * The list of Mobile threat Defense connectors configured by the tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileThreatDefenseConnector} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileThreatDefenseConnector get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public MobileThreatDefenseConnector get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, MobileThreatDefenseConnector::createFromDiscriminatorValue); } /** - * Update the properties of a mobileThreatDefenseConnector object. + * Update the navigation property mobileThreatDefenseConnectors in deviceManagement * @param body The request body * @return a {@link MobileThreatDefenseConnector} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileThreatDefenseConnector patch(@jakarta.annotation.Nonnull final MobileThreatDefenseConnector body) { return patch(body, null); } /** - * Update the properties of a mobileThreatDefenseConnector object. + * Update the navigation property mobileThreatDefenseConnectors in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MobileThreatDefenseConnector} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MobileThreatDefenseConnector patch(@jakarta.annotation.Nonnull final MobileThreatDefenseConnector body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public MobileThreatDefenseConnector patch(@jakarta.annotation.Nonnull final Mobi return this.requestAdapter.send(requestInfo, errorMapping, MobileThreatDefenseConnector::createFromDiscriminatorValue); } /** - * Deletes a mobileThreatDefenseConnector. + * Delete navigation property mobileThreatDefenseConnectors for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a mobileThreatDefenseConnector. + * Delete navigation property mobileThreatDefenseConnectors for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the mobileThreatDefenseConnector object. + * The list of Mobile threat Defense connectors configured by the tenant. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the mobileThreatDefenseConnector object. + * The list of Mobile threat Defense connectors configured by the tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a mobileThreatDefenseConnector object. + * Update the navigation property mobileThreatDefenseConnectors in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a mobileThreatDefenseConnector object. + * Update the navigation property mobileThreatDefenseConnectors in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public MobileThreatDefenseConnectorItemRequestBuilder withUrl(@jakarta.annotatio public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the mobileThreatDefenseConnector object. + * The list of Mobile threat Defense connectors configured by the tenant. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/notificationmessagetemplates/NotificationMessageTemplatesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/notificationmessagetemplates/NotificationMessageTemplatesRequestBuilder.java index f51a2696530..a2a3926b873 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/notificationmessagetemplates/NotificationMessageTemplatesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/notificationmessagetemplates/NotificationMessageTemplatesRequestBuilder.java @@ -60,21 +60,19 @@ public NotificationMessageTemplatesRequestBuilder(@jakarta.annotation.Nonnull fi super(requestAdapter, "{+baseurl}/deviceManagement/notificationMessageTemplates{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the notificationMessageTemplate objects. + * The Notification Message Templates. * @return a {@link NotificationMessageTemplateCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public NotificationMessageTemplateCollectionResponse get() { return get(null); } /** - * List properties and relationships of the notificationMessageTemplate objects. + * The Notification Message Templates. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link NotificationMessageTemplateCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public NotificationMessageTemplateCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public NotificationMessageTemplateCollectionResponse get(@jakarta.annotation.Nul return this.requestAdapter.send(requestInfo, errorMapping, NotificationMessageTemplateCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new notificationMessageTemplate object. + * Create new navigation property to notificationMessageTemplates for deviceManagement * @param body The request body * @return a {@link NotificationMessageTemplate} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public NotificationMessageTemplate post(@jakarta.annotation.Nonnull final NotificationMessageTemplate body) { return post(body, null); } /** - * Create a new notificationMessageTemplate object. + * Create new navigation property to notificationMessageTemplates for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link NotificationMessageTemplate} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public NotificationMessageTemplate post(@jakarta.annotation.Nonnull final NotificationMessageTemplate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public NotificationMessageTemplate post(@jakarta.annotation.Nonnull final Notifi return this.requestAdapter.send(requestInfo, errorMapping, NotificationMessageTemplate::createFromDiscriminatorValue); } /** - * List properties and relationships of the notificationMessageTemplate objects. + * The Notification Message Templates. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the notificationMessageTemplate objects. + * The Notification Message Templates. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new notificationMessageTemplate object. + * Create new navigation property to notificationMessageTemplates for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new notificationMessageTemplate object. + * Create new navigation property to notificationMessageTemplates for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public NotificationMessageTemplatesRequestBuilder withUrl(@jakarta.annotation.No return new NotificationMessageTemplatesRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the notificationMessageTemplate objects. + * The Notification Message Templates. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/notificationmessagetemplates/item/NotificationMessageTemplateItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/notificationmessagetemplates/item/NotificationMessageTemplateItemRequestBuilder.java index 88736e2b475..118eb8f7d90 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/notificationmessagetemplates/item/NotificationMessageTemplateItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/notificationmessagetemplates/item/NotificationMessageTemplateItemRequestBuilder.java @@ -55,18 +55,16 @@ public NotificationMessageTemplateItemRequestBuilder(@jakarta.annotation.Nonnull super(requestAdapter, "{+baseurl}/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a notificationMessageTemplate. + * Delete navigation property notificationMessageTemplates for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a notificationMessageTemplate. + * Delete navigation property notificationMessageTemplates for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -75,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the notificationMessageTemplate object. + * The Notification Message Templates. * @return a {@link NotificationMessageTemplate} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public NotificationMessageTemplate get() { return get(null); } /** - * Read properties and relationships of the notificationMessageTemplate object. + * The Notification Message Templates. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link NotificationMessageTemplate} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public NotificationMessageTemplate get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -99,23 +95,21 @@ public NotificationMessageTemplate get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, NotificationMessageTemplate::createFromDiscriminatorValue); } /** - * Update the properties of a notificationMessageTemplate object. + * Update the navigation property notificationMessageTemplates in deviceManagement * @param body The request body * @return a {@link NotificationMessageTemplate} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public NotificationMessageTemplate patch(@jakarta.annotation.Nonnull final NotificationMessageTemplate body) { return patch(body, null); } /** - * Update the properties of a notificationMessageTemplate object. + * Update the navigation property notificationMessageTemplates in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link NotificationMessageTemplate} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public NotificationMessageTemplate patch(@jakarta.annotation.Nonnull final NotificationMessageTemplate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +120,7 @@ public NotificationMessageTemplate patch(@jakarta.annotation.Nonnull final Notif return this.requestAdapter.send(requestInfo, errorMapping, NotificationMessageTemplate::createFromDiscriminatorValue); } /** - * Deletes a notificationMessageTemplate. + * Delete navigation property notificationMessageTemplates for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +128,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a notificationMessageTemplate. + * Delete navigation property notificationMessageTemplates for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the notificationMessageTemplate object. + * The Notification Message Templates. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -154,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the notificationMessageTemplate object. + * The Notification Message Templates. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a notificationMessageTemplate object. + * Update the navigation property notificationMessageTemplates in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -175,7 +169,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a notificationMessageTemplate object. + * Update the navigation property notificationMessageTemplates in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -206,7 +200,7 @@ public NotificationMessageTemplateItemRequestBuilder withUrl(@jakarta.annotation public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the notificationMessageTemplate object. + * The Notification Message Templates. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/notificationmessagetemplates/item/localizednotificationmessages/LocalizedNotificationMessagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/notificationmessagetemplates/item/localizednotificationmessages/LocalizedNotificationMessagesRequestBuilder.java index 629c3802ee3..d5763447ee0 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/notificationmessagetemplates/item/localizednotificationmessages/LocalizedNotificationMessagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/notificationmessagetemplates/item/localizednotificationmessages/LocalizedNotificationMessagesRequestBuilder.java @@ -60,21 +60,19 @@ public LocalizedNotificationMessagesRequestBuilder(@jakarta.annotation.Nonnull f super(requestAdapter, "{+baseurl}/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate%2Did}/localizedNotificationMessages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the localizedNotificationMessage objects. + * The list of localized messages for this Notification Message Template. * @return a {@link LocalizedNotificationMessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LocalizedNotificationMessageCollectionResponse get() { return get(null); } /** - * List properties and relationships of the localizedNotificationMessage objects. + * The list of localized messages for this Notification Message Template. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link LocalizedNotificationMessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LocalizedNotificationMessageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public LocalizedNotificationMessageCollectionResponse get(@jakarta.annotation.Nu return this.requestAdapter.send(requestInfo, errorMapping, LocalizedNotificationMessageCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new localizedNotificationMessage object. + * Create new navigation property to localizedNotificationMessages for deviceManagement * @param body The request body * @return a {@link LocalizedNotificationMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LocalizedNotificationMessage post(@jakarta.annotation.Nonnull final LocalizedNotificationMessage body) { return post(body, null); } /** - * Create a new localizedNotificationMessage object. + * Create new navigation property to localizedNotificationMessages for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link LocalizedNotificationMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LocalizedNotificationMessage post(@jakarta.annotation.Nonnull final LocalizedNotificationMessage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public LocalizedNotificationMessage post(@jakarta.annotation.Nonnull final Local return this.requestAdapter.send(requestInfo, errorMapping, LocalizedNotificationMessage::createFromDiscriminatorValue); } /** - * List properties and relationships of the localizedNotificationMessage objects. + * The list of localized messages for this Notification Message Template. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the localizedNotificationMessage objects. + * The list of localized messages for this Notification Message Template. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new localizedNotificationMessage object. + * Create new navigation property to localizedNotificationMessages for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new localizedNotificationMessage object. + * Create new navigation property to localizedNotificationMessages for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public LocalizedNotificationMessagesRequestBuilder withUrl(@jakarta.annotation.N return new LocalizedNotificationMessagesRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the localizedNotificationMessage objects. + * The list of localized messages for this Notification Message Template. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/notificationmessagetemplates/item/localizednotificationmessages/item/LocalizedNotificationMessageItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/notificationmessagetemplates/item/localizednotificationmessages/item/LocalizedNotificationMessageItemRequestBuilder.java index ec1a965ce90..f8f93fb3f41 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/notificationmessagetemplates/item/localizednotificationmessages/item/LocalizedNotificationMessageItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/notificationmessagetemplates/item/localizednotificationmessages/item/LocalizedNotificationMessageItemRequestBuilder.java @@ -37,18 +37,16 @@ public LocalizedNotificationMessageItemRequestBuilder(@jakarta.annotation.Nonnul super(requestAdapter, "{+baseurl}/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate%2Did}/localizedNotificationMessages/{localizedNotificationMessage%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a localizedNotificationMessage. + * Delete navigation property localizedNotificationMessages for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a localizedNotificationMessage. + * Delete navigation property localizedNotificationMessages for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the localizedNotificationMessage object. + * The list of localized messages for this Notification Message Template. * @return a {@link LocalizedNotificationMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LocalizedNotificationMessage get() { return get(null); } /** - * Read properties and relationships of the localizedNotificationMessage object. + * The list of localized messages for this Notification Message Template. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link LocalizedNotificationMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LocalizedNotificationMessage get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public LocalizedNotificationMessage get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, LocalizedNotificationMessage::createFromDiscriminatorValue); } /** - * Update the properties of a localizedNotificationMessage object. + * Update the navigation property localizedNotificationMessages in deviceManagement * @param body The request body * @return a {@link LocalizedNotificationMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LocalizedNotificationMessage patch(@jakarta.annotation.Nonnull final LocalizedNotificationMessage body) { return patch(body, null); } /** - * Update the properties of a localizedNotificationMessage object. + * Update the navigation property localizedNotificationMessages in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link LocalizedNotificationMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LocalizedNotificationMessage patch(@jakarta.annotation.Nonnull final LocalizedNotificationMessage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public LocalizedNotificationMessage patch(@jakarta.annotation.Nonnull final Loca return this.requestAdapter.send(requestInfo, errorMapping, LocalizedNotificationMessage::createFromDiscriminatorValue); } /** - * Deletes a localizedNotificationMessage. + * Delete navigation property localizedNotificationMessages for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a localizedNotificationMessage. + * Delete navigation property localizedNotificationMessages for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the localizedNotificationMessage object. + * The list of localized messages for this Notification Message Template. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the localizedNotificationMessage object. + * The list of localized messages for this Notification Message Template. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a localizedNotificationMessage object. + * Update the navigation property localizedNotificationMessages in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a localizedNotificationMessage object. + * Update the navigation property localizedNotificationMessages in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public LocalizedNotificationMessageItemRequestBuilder withUrl(@jakarta.annotatio public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the localizedNotificationMessage object. + * The list of localized messages for this Notification Message Template. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/remoteassistancepartners/RemoteAssistancePartnersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/remoteassistancepartners/RemoteAssistancePartnersRequestBuilder.java index 1ac27fb17c9..520dd3f3a88 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/remoteassistancepartners/RemoteAssistancePartnersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/remoteassistancepartners/RemoteAssistancePartnersRequestBuilder.java @@ -60,21 +60,19 @@ public RemoteAssistancePartnersRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/deviceManagement/remoteAssistancePartners{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the remoteAssistancePartner objects. + * The remote assist partners. * @return a {@link RemoteAssistancePartnerCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RemoteAssistancePartnerCollectionResponse get() { return get(null); } /** - * List properties and relationships of the remoteAssistancePartner objects. + * The remote assist partners. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RemoteAssistancePartnerCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RemoteAssistancePartnerCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public RemoteAssistancePartnerCollectionResponse get(@jakarta.annotation.Nullabl return this.requestAdapter.send(requestInfo, errorMapping, RemoteAssistancePartnerCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new remoteAssistancePartner object. + * Create new navigation property to remoteAssistancePartners for deviceManagement * @param body The request body * @return a {@link RemoteAssistancePartner} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RemoteAssistancePartner post(@jakarta.annotation.Nonnull final RemoteAssistancePartner body) { return post(body, null); } /** - * Create a new remoteAssistancePartner object. + * Create new navigation property to remoteAssistancePartners for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RemoteAssistancePartner} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RemoteAssistancePartner post(@jakarta.annotation.Nonnull final RemoteAssistancePartner body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public RemoteAssistancePartner post(@jakarta.annotation.Nonnull final RemoteAssi return this.requestAdapter.send(requestInfo, errorMapping, RemoteAssistancePartner::createFromDiscriminatorValue); } /** - * List properties and relationships of the remoteAssistancePartner objects. + * The remote assist partners. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the remoteAssistancePartner objects. + * The remote assist partners. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new remoteAssistancePartner object. + * Create new navigation property to remoteAssistancePartners for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new remoteAssistancePartner object. + * Create new navigation property to remoteAssistancePartners for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public RemoteAssistancePartnersRequestBuilder withUrl(@jakarta.annotation.Nonnul return new RemoteAssistancePartnersRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the remoteAssistancePartner objects. + * The remote assist partners. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/remoteassistancepartners/item/RemoteAssistancePartnerItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/remoteassistancepartners/item/RemoteAssistancePartnerItemRequestBuilder.java index deaba4df92d..bd6ebc0f0f7 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/remoteassistancepartners/item/RemoteAssistancePartnerItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/remoteassistancepartners/item/RemoteAssistancePartnerItemRequestBuilder.java @@ -55,18 +55,16 @@ public RemoteAssistancePartnerItemRequestBuilder(@jakarta.annotation.Nonnull fin super(requestAdapter, "{+baseurl}/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a remoteAssistancePartner. + * Delete navigation property remoteAssistancePartners for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a remoteAssistancePartner. + * Delete navigation property remoteAssistancePartners for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -75,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the remoteAssistancePartner object. + * The remote assist partners. * @return a {@link RemoteAssistancePartner} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RemoteAssistancePartner get() { return get(null); } /** - * Read properties and relationships of the remoteAssistancePartner object. + * The remote assist partners. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RemoteAssistancePartner} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RemoteAssistancePartner get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -99,23 +95,21 @@ public RemoteAssistancePartner get(@jakarta.annotation.Nullable final java.util. return this.requestAdapter.send(requestInfo, errorMapping, RemoteAssistancePartner::createFromDiscriminatorValue); } /** - * Update the properties of a remoteAssistancePartner object. + * Update the navigation property remoteAssistancePartners in deviceManagement * @param body The request body * @return a {@link RemoteAssistancePartner} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RemoteAssistancePartner patch(@jakarta.annotation.Nonnull final RemoteAssistancePartner body) { return patch(body, null); } /** - * Update the properties of a remoteAssistancePartner object. + * Update the navigation property remoteAssistancePartners in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RemoteAssistancePartner} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RemoteAssistancePartner patch(@jakarta.annotation.Nonnull final RemoteAssistancePartner body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +120,7 @@ public RemoteAssistancePartner patch(@jakarta.annotation.Nonnull final RemoteAss return this.requestAdapter.send(requestInfo, errorMapping, RemoteAssistancePartner::createFromDiscriminatorValue); } /** - * Deletes a remoteAssistancePartner. + * Delete navigation property remoteAssistancePartners for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +128,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a remoteAssistancePartner. + * Delete navigation property remoteAssistancePartners for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the remoteAssistancePartner object. + * The remote assist partners. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -154,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the remoteAssistancePartner object. + * The remote assist partners. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a remoteAssistancePartner object. + * Update the navigation property remoteAssistancePartners in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -175,7 +169,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a remoteAssistancePartner object. + * Update the navigation property remoteAssistancePartners in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -206,7 +200,7 @@ public RemoteAssistancePartnerItemRequestBuilder withUrl(@jakarta.annotation.Non public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the remoteAssistancePartner object. + * The remote assist partners. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/reports/ReportsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/reports/ReportsRequestBuilder.java index b8c077826d3..f57bdc5c258 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/reports/ReportsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/reports/ReportsRequestBuilder.java @@ -226,21 +226,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the deviceManagementReports object. + * Reports singleton * @return a {@link DeviceManagementReports} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceManagementReports get() { return get(null); } /** - * Read properties and relationships of the deviceManagementReports object. + * Reports singleton * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceManagementReports} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceManagementReports get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -250,23 +248,21 @@ public DeviceManagementReports get(@jakarta.annotation.Nullable final java.util. return this.requestAdapter.send(requestInfo, errorMapping, DeviceManagementReports::createFromDiscriminatorValue); } /** - * Update the properties of a deviceManagementReports object. + * Update the navigation property reports in deviceManagement * @param body The request body * @return a {@link DeviceManagementReports} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceManagementReports patch(@jakarta.annotation.Nonnull final DeviceManagementReports body) { return patch(body, null); } /** - * Update the properties of a deviceManagementReports object. + * Update the navigation property reports in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceManagementReports} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceManagementReports patch(@jakarta.annotation.Nonnull final DeviceManagementReports body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -297,7 +293,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the deviceManagementReports object. + * Reports singleton * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -305,7 +301,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the deviceManagementReports object. + * Reports singleton * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -317,7 +313,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a deviceManagementReports object. + * Update the navigation property reports in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -326,7 +322,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a deviceManagementReports object. + * Update the navigation property reports in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -357,7 +353,7 @@ public ReportsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the deviceManagementReports object. + * Reports singleton */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/reports/exportjobs/ExportJobsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/reports/exportjobs/ExportJobsRequestBuilder.java index 876fea8e731..a4e7a3e4ed0 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/reports/exportjobs/ExportJobsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/reports/exportjobs/ExportJobsRequestBuilder.java @@ -60,21 +60,19 @@ public ExportJobsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/deviceManagement/reports/exportJobs{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the deviceManagementExportJob objects. + * Entity representing a job to export a report * @return a {@link DeviceManagementExportJobCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceManagementExportJobCollectionResponse get() { return get(null); } /** - * List properties and relationships of the deviceManagementExportJob objects. + * Entity representing a job to export a report * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceManagementExportJobCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceManagementExportJobCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public DeviceManagementExportJobCollectionResponse get(@jakarta.annotation.Nulla return this.requestAdapter.send(requestInfo, errorMapping, DeviceManagementExportJobCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new deviceManagementExportJob object. + * Create new navigation property to exportJobs for deviceManagement * @param body The request body * @return a {@link DeviceManagementExportJob} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceManagementExportJob post(@jakarta.annotation.Nonnull final DeviceManagementExportJob body) { return post(body, null); } /** - * Create a new deviceManagementExportJob object. + * Create new navigation property to exportJobs for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceManagementExportJob} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceManagementExportJob post(@jakarta.annotation.Nonnull final DeviceManagementExportJob body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public DeviceManagementExportJob post(@jakarta.annotation.Nonnull final DeviceMa return this.requestAdapter.send(requestInfo, errorMapping, DeviceManagementExportJob::createFromDiscriminatorValue); } /** - * List properties and relationships of the deviceManagementExportJob objects. + * Entity representing a job to export a report * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the deviceManagementExportJob objects. + * Entity representing a job to export a report * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new deviceManagementExportJob object. + * Create new navigation property to exportJobs for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new deviceManagementExportJob object. + * Create new navigation property to exportJobs for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ExportJobsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ExportJobsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the deviceManagementExportJob objects. + * Entity representing a job to export a report */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/reports/exportjobs/item/DeviceManagementExportJobItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/reports/exportjobs/item/DeviceManagementExportJobItemRequestBuilder.java index 36ca66b6b1f..e1899cf59ec 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/reports/exportjobs/item/DeviceManagementExportJobItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/reports/exportjobs/item/DeviceManagementExportJobItemRequestBuilder.java @@ -37,18 +37,16 @@ public DeviceManagementExportJobItemRequestBuilder(@jakarta.annotation.Nonnull f super(requestAdapter, "{+baseurl}/deviceManagement/reports/exportJobs/{deviceManagementExportJob%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a deviceManagementExportJob. + * Delete navigation property exportJobs for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a deviceManagementExportJob. + * Delete navigation property exportJobs for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the deviceManagementExportJob object. + * Entity representing a job to export a report * @return a {@link DeviceManagementExportJob} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceManagementExportJob get() { return get(null); } /** - * Read properties and relationships of the deviceManagementExportJob object. + * Entity representing a job to export a report * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceManagementExportJob} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceManagementExportJob get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public DeviceManagementExportJob get(@jakarta.annotation.Nullable final java.uti return this.requestAdapter.send(requestInfo, errorMapping, DeviceManagementExportJob::createFromDiscriminatorValue); } /** - * Update the properties of a deviceManagementExportJob object. + * Update the navigation property exportJobs in deviceManagement * @param body The request body * @return a {@link DeviceManagementExportJob} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceManagementExportJob patch(@jakarta.annotation.Nonnull final DeviceManagementExportJob body) { return patch(body, null); } /** - * Update the properties of a deviceManagementExportJob object. + * Update the navigation property exportJobs in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceManagementExportJob} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceManagementExportJob patch(@jakarta.annotation.Nonnull final DeviceManagementExportJob body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public DeviceManagementExportJob patch(@jakarta.annotation.Nonnull final DeviceM return this.requestAdapter.send(requestInfo, errorMapping, DeviceManagementExportJob::createFromDiscriminatorValue); } /** - * Deletes a deviceManagementExportJob. + * Delete navigation property exportJobs for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a deviceManagementExportJob. + * Delete navigation property exportJobs for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the deviceManagementExportJob object. + * Entity representing a job to export a report * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the deviceManagementExportJob object. + * Entity representing a job to export a report * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a deviceManagementExportJob object. + * Update the navigation property exportJobs in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a deviceManagementExportJob object. + * Update the navigation property exportJobs in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public DeviceManagementExportJobItemRequestBuilder withUrl(@jakarta.annotation.N public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the deviceManagementExportJob object. + * Entity representing a job to export a report */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/resourceoperations/ResourceOperationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/resourceoperations/ResourceOperationsRequestBuilder.java index 2e05e656779..103502a609f 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/resourceoperations/ResourceOperationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/resourceoperations/ResourceOperationsRequestBuilder.java @@ -60,21 +60,19 @@ public ResourceOperationsRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/deviceManagement/resourceOperations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the resourceOperation objects. + * The Resource Operations. * @return a {@link ResourceOperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ResourceOperationCollectionResponse get() { return get(null); } /** - * List properties and relationships of the resourceOperation objects. + * The Resource Operations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ResourceOperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ResourceOperationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public ResourceOperationCollectionResponse get(@jakarta.annotation.Nullable fina return this.requestAdapter.send(requestInfo, errorMapping, ResourceOperationCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new resourceOperation object. + * Create new navigation property to resourceOperations for deviceManagement * @param body The request body * @return a {@link ResourceOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ResourceOperation post(@jakarta.annotation.Nonnull final ResourceOperation body) { return post(body, null); } /** - * Create a new resourceOperation object. + * Create new navigation property to resourceOperations for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ResourceOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ResourceOperation post(@jakarta.annotation.Nonnull final ResourceOperation body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public ResourceOperation post(@jakarta.annotation.Nonnull final ResourceOperatio return this.requestAdapter.send(requestInfo, errorMapping, ResourceOperation::createFromDiscriminatorValue); } /** - * List properties and relationships of the resourceOperation objects. + * The Resource Operations. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the resourceOperation objects. + * The Resource Operations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new resourceOperation object. + * Create new navigation property to resourceOperations for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new resourceOperation object. + * Create new navigation property to resourceOperations for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ResourceOperationsRequestBuilder withUrl(@jakarta.annotation.Nonnull fina return new ResourceOperationsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the resourceOperation objects. + * The Resource Operations. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/resourceoperations/item/ResourceOperationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/resourceoperations/item/ResourceOperationItemRequestBuilder.java index d7bba6d533e..0b5daa50ae0 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/resourceoperations/item/ResourceOperationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/resourceoperations/item/ResourceOperationItemRequestBuilder.java @@ -37,18 +37,16 @@ public ResourceOperationItemRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/deviceManagement/resourceOperations/{resourceOperation%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a resourceOperation. + * Delete navigation property resourceOperations for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a resourceOperation. + * Delete navigation property resourceOperations for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the resourceOperation object. + * The Resource Operations. * @return a {@link ResourceOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ResourceOperation get() { return get(null); } /** - * Read properties and relationships of the resourceOperation object. + * The Resource Operations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ResourceOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ResourceOperation get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public ResourceOperation get(@jakarta.annotation.Nullable final java.util.functi return this.requestAdapter.send(requestInfo, errorMapping, ResourceOperation::createFromDiscriminatorValue); } /** - * Update the properties of a resourceOperation object. + * Update the navigation property resourceOperations in deviceManagement * @param body The request body * @return a {@link ResourceOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ResourceOperation patch(@jakarta.annotation.Nonnull final ResourceOperation body) { return patch(body, null); } /** - * Update the properties of a resourceOperation object. + * Update the navigation property resourceOperations in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ResourceOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ResourceOperation patch(@jakarta.annotation.Nonnull final ResourceOperation body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public ResourceOperation patch(@jakarta.annotation.Nonnull final ResourceOperati return this.requestAdapter.send(requestInfo, errorMapping, ResourceOperation::createFromDiscriminatorValue); } /** - * Deletes a resourceOperation. + * Delete navigation property resourceOperations for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a resourceOperation. + * Delete navigation property resourceOperations for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the resourceOperation object. + * The Resource Operations. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the resourceOperation object. + * The Resource Operations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a resourceOperation object. + * Update the navigation property resourceOperations in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a resourceOperation object. + * Update the navigation property resourceOperations in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public ResourceOperationItemRequestBuilder withUrl(@jakarta.annotation.Nonnull f public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the resourceOperation object. + * The Resource Operations. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/roleassignments/RoleAssignmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/roleassignments/RoleAssignmentsRequestBuilder.java index ac875dfd974..17b70a29216 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/roleassignments/RoleAssignmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/roleassignments/RoleAssignmentsRequestBuilder.java @@ -60,21 +60,19 @@ public RoleAssignmentsRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/deviceManagement/roleAssignments{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the deviceAndAppManagementRoleAssignment objects. + * The Role Assignments. * @return a {@link DeviceAndAppManagementRoleAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceAndAppManagementRoleAssignmentCollectionResponse get() { return get(null); } /** - * List properties and relationships of the deviceAndAppManagementRoleAssignment objects. + * The Role Assignments. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceAndAppManagementRoleAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceAndAppManagementRoleAssignmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public DeviceAndAppManagementRoleAssignmentCollectionResponse get(@jakarta.annot return this.requestAdapter.send(requestInfo, errorMapping, DeviceAndAppManagementRoleAssignmentCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new deviceAndAppManagementRoleAssignment object. + * Create new navigation property to roleAssignments for deviceManagement * @param body The request body * @return a {@link DeviceAndAppManagementRoleAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceAndAppManagementRoleAssignment post(@jakarta.annotation.Nonnull final DeviceAndAppManagementRoleAssignment body) { return post(body, null); } /** - * Create a new deviceAndAppManagementRoleAssignment object. + * Create new navigation property to roleAssignments for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceAndAppManagementRoleAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceAndAppManagementRoleAssignment post(@jakarta.annotation.Nonnull final DeviceAndAppManagementRoleAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public DeviceAndAppManagementRoleAssignment post(@jakarta.annotation.Nonnull fin return this.requestAdapter.send(requestInfo, errorMapping, DeviceAndAppManagementRoleAssignment::createFromDiscriminatorValue); } /** - * List properties and relationships of the deviceAndAppManagementRoleAssignment objects. + * The Role Assignments. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the deviceAndAppManagementRoleAssignment objects. + * The Role Assignments. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new deviceAndAppManagementRoleAssignment object. + * Create new navigation property to roleAssignments for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new deviceAndAppManagementRoleAssignment object. + * Create new navigation property to roleAssignments for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public RoleAssignmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final S return new RoleAssignmentsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the deviceAndAppManagementRoleAssignment objects. + * The Role Assignments. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/roleassignments/item/DeviceAndAppManagementRoleAssignmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/roleassignments/item/DeviceAndAppManagementRoleAssignmentItemRequestBuilder.java index 7900cc0cd4e..d4efda28c61 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/roleassignments/item/DeviceAndAppManagementRoleAssignmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/roleassignments/item/DeviceAndAppManagementRoleAssignmentItemRequestBuilder.java @@ -46,18 +46,16 @@ public DeviceAndAppManagementRoleAssignmentItemRequestBuilder(@jakarta.annotatio super(requestAdapter, "{+baseurl}/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a deviceAndAppManagementRoleAssignment. + * Delete navigation property roleAssignments for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a deviceAndAppManagementRoleAssignment. + * Delete navigation property roleAssignments for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the deviceAndAppManagementRoleAssignment object. + * The Role Assignments. * @return a {@link DeviceAndAppManagementRoleAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceAndAppManagementRoleAssignment get() { return get(null); } /** - * Read properties and relationships of the deviceAndAppManagementRoleAssignment object. + * The Role Assignments. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceAndAppManagementRoleAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceAndAppManagementRoleAssignment get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public DeviceAndAppManagementRoleAssignment get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, DeviceAndAppManagementRoleAssignment::createFromDiscriminatorValue); } /** - * Update the properties of a deviceAndAppManagementRoleAssignment object. + * Update the navigation property roleAssignments in deviceManagement * @param body The request body * @return a {@link DeviceAndAppManagementRoleAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceAndAppManagementRoleAssignment patch(@jakarta.annotation.Nonnull final DeviceAndAppManagementRoleAssignment body) { return patch(body, null); } /** - * Update the properties of a deviceAndAppManagementRoleAssignment object. + * Update the navigation property roleAssignments in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceAndAppManagementRoleAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceAndAppManagementRoleAssignment patch(@jakarta.annotation.Nonnull final DeviceAndAppManagementRoleAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public DeviceAndAppManagementRoleAssignment patch(@jakarta.annotation.Nonnull fi return this.requestAdapter.send(requestInfo, errorMapping, DeviceAndAppManagementRoleAssignment::createFromDiscriminatorValue); } /** - * Deletes a deviceAndAppManagementRoleAssignment. + * Delete navigation property roleAssignments for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a deviceAndAppManagementRoleAssignment. + * Delete navigation property roleAssignments for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the deviceAndAppManagementRoleAssignment object. + * The Role Assignments. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the deviceAndAppManagementRoleAssignment object. + * The Role Assignments. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a deviceAndAppManagementRoleAssignment object. + * Update the navigation property roleAssignments in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a deviceAndAppManagementRoleAssignment object. + * Update the navigation property roleAssignments in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public DeviceAndAppManagementRoleAssignmentItemRequestBuilder withUrl(@jakarta.a public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the deviceAndAppManagementRoleAssignment object. + * The Role Assignments. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/roledefinitions/RoleDefinitionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/roledefinitions/RoleDefinitionsRequestBuilder.java index 79c71a4aff3..74a51980b79 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/roledefinitions/RoleDefinitionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/roledefinitions/RoleDefinitionsRequestBuilder.java @@ -60,21 +60,19 @@ public RoleDefinitionsRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/deviceManagement/roleDefinitions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the deviceAndAppManagementRoleDefinition objects. + * The Role Definitions. * @return a {@link RoleDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RoleDefinitionCollectionResponse get() { return get(null); } /** - * List properties and relationships of the deviceAndAppManagementRoleDefinition objects. + * The Role Definitions. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RoleDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RoleDefinitionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public RoleDefinitionCollectionResponse get(@jakarta.annotation.Nullable final j return this.requestAdapter.send(requestInfo, errorMapping, RoleDefinitionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new deviceAndAppManagementRoleDefinition object. + * Create new navigation property to roleDefinitions for deviceManagement * @param body The request body * @return a {@link RoleDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RoleDefinition post(@jakarta.annotation.Nonnull final RoleDefinition body) { return post(body, null); } /** - * Create a new deviceAndAppManagementRoleDefinition object. + * Create new navigation property to roleDefinitions for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RoleDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RoleDefinition post(@jakarta.annotation.Nonnull final RoleDefinition body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public RoleDefinition post(@jakarta.annotation.Nonnull final RoleDefinition body return this.requestAdapter.send(requestInfo, errorMapping, RoleDefinition::createFromDiscriminatorValue); } /** - * List properties and relationships of the deviceAndAppManagementRoleDefinition objects. + * The Role Definitions. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the deviceAndAppManagementRoleDefinition objects. + * The Role Definitions. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new deviceAndAppManagementRoleDefinition object. + * Create new navigation property to roleDefinitions for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new deviceAndAppManagementRoleDefinition object. + * Create new navigation property to roleDefinitions for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public RoleDefinitionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final S return new RoleDefinitionsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the deviceAndAppManagementRoleDefinition objects. + * The Role Definitions. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/roledefinitions/item/RoleDefinitionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/roledefinitions/item/RoleDefinitionItemRequestBuilder.java index f7c9837f26c..6bbfa8a4c95 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/roledefinitions/item/RoleDefinitionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/roledefinitions/item/RoleDefinitionItemRequestBuilder.java @@ -46,18 +46,16 @@ public RoleDefinitionItemRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/deviceManagement/roleDefinitions/{roleDefinition%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a roleDefinition. + * Delete navigation property roleDefinitions for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a roleDefinition. + * Delete navigation property roleDefinitions for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the deviceAndAppManagementRoleDefinition object. + * The Role Definitions. * @return a {@link RoleDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RoleDefinition get() { return get(null); } /** - * Read properties and relationships of the deviceAndAppManagementRoleDefinition object. + * The Role Definitions. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RoleDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RoleDefinition get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public RoleDefinition get(@jakarta.annotation.Nullable final java.util.function. return this.requestAdapter.send(requestInfo, errorMapping, RoleDefinition::createFromDiscriminatorValue); } /** - * Update the properties of a deviceAndAppManagementRoleDefinition object. + * Update the navigation property roleDefinitions in deviceManagement * @param body The request body * @return a {@link RoleDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RoleDefinition patch(@jakarta.annotation.Nonnull final RoleDefinition body) { return patch(body, null); } /** - * Update the properties of a deviceAndAppManagementRoleDefinition object. + * Update the navigation property roleDefinitions in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RoleDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RoleDefinition patch(@jakarta.annotation.Nonnull final RoleDefinition body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public RoleDefinition patch(@jakarta.annotation.Nonnull final RoleDefinition bod return this.requestAdapter.send(requestInfo, errorMapping, RoleDefinition::createFromDiscriminatorValue); } /** - * Deletes a roleDefinition. + * Delete navigation property roleDefinitions for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a roleDefinition. + * Delete navigation property roleDefinitions for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the deviceAndAppManagementRoleDefinition object. + * The Role Definitions. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the deviceAndAppManagementRoleDefinition object. + * The Role Definitions. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a deviceAndAppManagementRoleDefinition object. + * Update the navigation property roleDefinitions in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a deviceAndAppManagementRoleDefinition object. + * Update the navigation property roleDefinitions in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public RoleDefinitionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fina public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the deviceAndAppManagementRoleDefinition object. + * The Role Definitions. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/roledefinitions/item/roleassignments/RoleAssignmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/roledefinitions/item/roleassignments/RoleAssignmentsRequestBuilder.java index 08f86b24a01..8b3a6c63e25 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/roledefinitions/item/roleassignments/RoleAssignmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/roledefinitions/item/roleassignments/RoleAssignmentsRequestBuilder.java @@ -60,21 +60,19 @@ public RoleAssignmentsRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/deviceManagement/roleDefinitions/{roleDefinition%2Did}/roleAssignments{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the roleAssignment objects. + * List of Role assignments for this role definition. * @return a {@link RoleAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RoleAssignmentCollectionResponse get() { return get(null); } /** - * List properties and relationships of the roleAssignment objects. + * List of Role assignments for this role definition. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RoleAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RoleAssignmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public RoleAssignmentCollectionResponse get(@jakarta.annotation.Nullable final j return this.requestAdapter.send(requestInfo, errorMapping, RoleAssignmentCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new roleAssignment object. + * Create new navigation property to roleAssignments for deviceManagement * @param body The request body * @return a {@link RoleAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RoleAssignment post(@jakarta.annotation.Nonnull final RoleAssignment body) { return post(body, null); } /** - * Create a new roleAssignment object. + * Create new navigation property to roleAssignments for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RoleAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RoleAssignment post(@jakarta.annotation.Nonnull final RoleAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public RoleAssignment post(@jakarta.annotation.Nonnull final RoleAssignment body return this.requestAdapter.send(requestInfo, errorMapping, RoleAssignment::createFromDiscriminatorValue); } /** - * List properties and relationships of the roleAssignment objects. + * List of Role assignments for this role definition. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the roleAssignment objects. + * List of Role assignments for this role definition. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new roleAssignment object. + * Create new navigation property to roleAssignments for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new roleAssignment object. + * Create new navigation property to roleAssignments for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public RoleAssignmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final S return new RoleAssignmentsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the roleAssignment objects. + * List of Role assignments for this role definition. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/roledefinitions/item/roleassignments/item/RoleAssignmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/roledefinitions/item/roleassignments/item/RoleAssignmentItemRequestBuilder.java index 0d808dd7720..fe475baaacd 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/roledefinitions/item/roleassignments/item/RoleAssignmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/roledefinitions/item/roleassignments/item/RoleAssignmentItemRequestBuilder.java @@ -46,18 +46,16 @@ public RoleAssignmentItemRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/deviceManagement/roleDefinitions/{roleDefinition%2Did}/roleAssignments/{roleAssignment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a roleAssignment. + * Delete navigation property roleAssignments for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a roleAssignment. + * Delete navigation property roleAssignments for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the roleAssignment object. + * List of Role assignments for this role definition. * @return a {@link RoleAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RoleAssignment get() { return get(null); } /** - * Read properties and relationships of the roleAssignment object. + * List of Role assignments for this role definition. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RoleAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RoleAssignment get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public RoleAssignment get(@jakarta.annotation.Nullable final java.util.function. return this.requestAdapter.send(requestInfo, errorMapping, RoleAssignment::createFromDiscriminatorValue); } /** - * Update the properties of a roleAssignment object. + * Update the navigation property roleAssignments in deviceManagement * @param body The request body * @return a {@link RoleAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RoleAssignment patch(@jakarta.annotation.Nonnull final RoleAssignment body) { return patch(body, null); } /** - * Update the properties of a roleAssignment object. + * Update the navigation property roleAssignments in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RoleAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RoleAssignment patch(@jakarta.annotation.Nonnull final RoleAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public RoleAssignment patch(@jakarta.annotation.Nonnull final RoleAssignment bod return this.requestAdapter.send(requestInfo, errorMapping, RoleAssignment::createFromDiscriminatorValue); } /** - * Deletes a roleAssignment. + * Delete navigation property roleAssignments for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a roleAssignment. + * Delete navigation property roleAssignments for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the roleAssignment object. + * List of Role assignments for this role definition. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the roleAssignment object. + * List of Role assignments for this role definition. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a roleAssignment object. + * Update the navigation property roleAssignments in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a roleAssignment object. + * Update the navigation property roleAssignments in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public RoleAssignmentItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fina public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the roleAssignment object. + * List of Role assignments for this role definition. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/softwareupdatestatussummary/SoftwareUpdateStatusSummaryRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/softwareupdatestatussummary/SoftwareUpdateStatusSummaryRequestBuilder.java index 10ee30760eb..52882358168 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/softwareupdatestatussummary/SoftwareUpdateStatusSummaryRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/softwareupdatestatussummary/SoftwareUpdateStatusSummaryRequestBuilder.java @@ -37,21 +37,19 @@ public SoftwareUpdateStatusSummaryRequestBuilder(@jakarta.annotation.Nonnull fin super(requestAdapter, "{+baseurl}/deviceManagement/softwareUpdateStatusSummary{?%24expand,%24select}", rawUrl); } /** - * Read properties and relationships of the softwareUpdateStatusSummary object. + * The software update status summary. * @return a {@link SoftwareUpdateStatusSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SoftwareUpdateStatusSummary get() { return get(null); } /** - * Read properties and relationships of the softwareUpdateStatusSummary object. + * The software update status summary. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SoftwareUpdateStatusSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SoftwareUpdateStatusSummary get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -61,7 +59,7 @@ public SoftwareUpdateStatusSummary get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, SoftwareUpdateStatusSummary::createFromDiscriminatorValue); } /** - * Read properties and relationships of the softwareUpdateStatusSummary object. + * The software update status summary. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -69,7 +67,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the softwareUpdateStatusSummary object. + * The software update status summary. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -91,7 +89,7 @@ public SoftwareUpdateStatusSummaryRequestBuilder withUrl(@jakarta.annotation.Non return new SoftwareUpdateStatusSummaryRequestBuilder(rawUrl, requestAdapter); } /** - * Read properties and relationships of the softwareUpdateStatusSummary object. + * The software update status summary. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/telecomexpensemanagementpartners/TelecomExpenseManagementPartnersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/telecomexpensemanagementpartners/TelecomExpenseManagementPartnersRequestBuilder.java index d8a3b9cd4a9..6f512e3fd27 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/telecomexpensemanagementpartners/TelecomExpenseManagementPartnersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/telecomexpensemanagementpartners/TelecomExpenseManagementPartnersRequestBuilder.java @@ -60,21 +60,19 @@ public TelecomExpenseManagementPartnersRequestBuilder(@jakarta.annotation.Nonnul super(requestAdapter, "{+baseurl}/deviceManagement/telecomExpenseManagementPartners{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the telecomExpenseManagementPartner objects. + * The telecom expense management partners. * @return a {@link TelecomExpenseManagementPartnerCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TelecomExpenseManagementPartnerCollectionResponse get() { return get(null); } /** - * List properties and relationships of the telecomExpenseManagementPartner objects. + * The telecom expense management partners. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TelecomExpenseManagementPartnerCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TelecomExpenseManagementPartnerCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TelecomExpenseManagementPartnerCollectionResponse get(@jakarta.annotation return this.requestAdapter.send(requestInfo, errorMapping, TelecomExpenseManagementPartnerCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new telecomExpenseManagementPartner object. + * Create new navigation property to telecomExpenseManagementPartners for deviceManagement * @param body The request body * @return a {@link TelecomExpenseManagementPartner} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TelecomExpenseManagementPartner post(@jakarta.annotation.Nonnull final TelecomExpenseManagementPartner body) { return post(body, null); } /** - * Create a new telecomExpenseManagementPartner object. + * Create new navigation property to telecomExpenseManagementPartners for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TelecomExpenseManagementPartner} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TelecomExpenseManagementPartner post(@jakarta.annotation.Nonnull final TelecomExpenseManagementPartner body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public TelecomExpenseManagementPartner post(@jakarta.annotation.Nonnull final Te return this.requestAdapter.send(requestInfo, errorMapping, TelecomExpenseManagementPartner::createFromDiscriminatorValue); } /** - * List properties and relationships of the telecomExpenseManagementPartner objects. + * The telecom expense management partners. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the telecomExpenseManagementPartner objects. + * The telecom expense management partners. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new telecomExpenseManagementPartner object. + * Create new navigation property to telecomExpenseManagementPartners for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new telecomExpenseManagementPartner object. + * Create new navigation property to telecomExpenseManagementPartners for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public TelecomExpenseManagementPartnersRequestBuilder withUrl(@jakarta.annotatio return new TelecomExpenseManagementPartnersRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the telecomExpenseManagementPartner objects. + * The telecom expense management partners. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/telecomexpensemanagementpartners/item/TelecomExpenseManagementPartnerItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/telecomexpensemanagementpartners/item/TelecomExpenseManagementPartnerItemRequestBuilder.java index 71f18aca715..d25eea0d262 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/telecomexpensemanagementpartners/item/TelecomExpenseManagementPartnerItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/telecomexpensemanagementpartners/item/TelecomExpenseManagementPartnerItemRequestBuilder.java @@ -37,18 +37,16 @@ public TelecomExpenseManagementPartnerItemRequestBuilder(@jakarta.annotation.Non super(requestAdapter, "{+baseurl}/deviceManagement/telecomExpenseManagementPartners/{telecomExpenseManagementPartner%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a telecomExpenseManagementPartner. + * Delete navigation property telecomExpenseManagementPartners for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a telecomExpenseManagementPartner. + * Delete navigation property telecomExpenseManagementPartners for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the telecomExpenseManagementPartner object. + * The telecom expense management partners. * @return a {@link TelecomExpenseManagementPartner} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TelecomExpenseManagementPartner get() { return get(null); } /** - * Read properties and relationships of the telecomExpenseManagementPartner object. + * The telecom expense management partners. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TelecomExpenseManagementPartner} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TelecomExpenseManagementPartner get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public TelecomExpenseManagementPartner get(@jakarta.annotation.Nullable final ja return this.requestAdapter.send(requestInfo, errorMapping, TelecomExpenseManagementPartner::createFromDiscriminatorValue); } /** - * Update the properties of a telecomExpenseManagementPartner object. + * Update the navigation property telecomExpenseManagementPartners in deviceManagement * @param body The request body * @return a {@link TelecomExpenseManagementPartner} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TelecomExpenseManagementPartner patch(@jakarta.annotation.Nonnull final TelecomExpenseManagementPartner body) { return patch(body, null); } /** - * Update the properties of a telecomExpenseManagementPartner object. + * Update the navigation property telecomExpenseManagementPartners in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TelecomExpenseManagementPartner} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TelecomExpenseManagementPartner patch(@jakarta.annotation.Nonnull final TelecomExpenseManagementPartner body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public TelecomExpenseManagementPartner patch(@jakarta.annotation.Nonnull final T return this.requestAdapter.send(requestInfo, errorMapping, TelecomExpenseManagementPartner::createFromDiscriminatorValue); } /** - * Deletes a telecomExpenseManagementPartner. + * Delete navigation property telecomExpenseManagementPartners for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a telecomExpenseManagementPartner. + * Delete navigation property telecomExpenseManagementPartners for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the telecomExpenseManagementPartner object. + * The telecom expense management partners. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the telecomExpenseManagementPartner object. + * The telecom expense management partners. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a telecomExpenseManagementPartner object. + * Update the navigation property telecomExpenseManagementPartners in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a telecomExpenseManagementPartner object. + * Update the navigation property telecomExpenseManagementPartners in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public TelecomExpenseManagementPartnerItemRequestBuilder withUrl(@jakarta.annota public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the telecomExpenseManagementPartner object. + * The telecom expense management partners. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/termsandconditions/TermsAndConditionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/termsandconditions/TermsAndConditionsRequestBuilder.java index 4af19cfae02..d7a3dcc6fa6 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/termsandconditions/TermsAndConditionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/termsandconditions/TermsAndConditionsRequestBuilder.java @@ -60,21 +60,19 @@ public TermsAndConditionsRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/deviceManagement/termsAndConditions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the termsAndConditions objects. + * The terms and conditions associated with device management of the company. * @return a {@link TermsAndConditionsCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermsAndConditionsCollectionResponse get() { return get(null); } /** - * List properties and relationships of the termsAndConditions objects. + * The terms and conditions associated with device management of the company. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TermsAndConditionsCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermsAndConditionsCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TermsAndConditionsCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, TermsAndConditionsCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new termsAndConditions object. + * Create new navigation property to termsAndConditions for deviceManagement * @param body The request body * @return a {@link TermsAndConditions} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermsAndConditions post(@jakarta.annotation.Nonnull final TermsAndConditions body) { return post(body, null); } /** - * Create a new termsAndConditions object. + * Create new navigation property to termsAndConditions for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TermsAndConditions} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermsAndConditions post(@jakarta.annotation.Nonnull final TermsAndConditions body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public TermsAndConditions post(@jakarta.annotation.Nonnull final TermsAndConditi return this.requestAdapter.send(requestInfo, errorMapping, TermsAndConditions::createFromDiscriminatorValue); } /** - * List properties and relationships of the termsAndConditions objects. + * The terms and conditions associated with device management of the company. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the termsAndConditions objects. + * The terms and conditions associated with device management of the company. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new termsAndConditions object. + * Create new navigation property to termsAndConditions for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new termsAndConditions object. + * Create new navigation property to termsAndConditions for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public TermsAndConditionsRequestBuilder withUrl(@jakarta.annotation.Nonnull fina return new TermsAndConditionsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the termsAndConditions objects. + * The terms and conditions associated with device management of the company. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/termsandconditions/item/TermsAndConditionsItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/termsandconditions/item/TermsAndConditionsItemRequestBuilder.java index 672ad00016c..d58f3cdf124 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/termsandconditions/item/TermsAndConditionsItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/termsandconditions/item/TermsAndConditionsItemRequestBuilder.java @@ -55,18 +55,16 @@ public TermsAndConditionsItemRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/deviceManagement/termsAndConditions/{termsAndConditions%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a termsAndConditions. + * Delete navigation property termsAndConditions for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a termsAndConditions. + * Delete navigation property termsAndConditions for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -75,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the termsAndConditions object. + * The terms and conditions associated with device management of the company. * @return a {@link TermsAndConditions} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermsAndConditions get() { return get(null); } /** - * Read properties and relationships of the termsAndConditions object. + * The terms and conditions associated with device management of the company. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TermsAndConditions} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermsAndConditions get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -99,23 +95,21 @@ public TermsAndConditions get(@jakarta.annotation.Nullable final java.util.funct return this.requestAdapter.send(requestInfo, errorMapping, TermsAndConditions::createFromDiscriminatorValue); } /** - * Update the properties of a termsAndConditions object. + * Update the navigation property termsAndConditions in deviceManagement * @param body The request body * @return a {@link TermsAndConditions} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermsAndConditions patch(@jakarta.annotation.Nonnull final TermsAndConditions body) { return patch(body, null); } /** - * Update the properties of a termsAndConditions object. + * Update the navigation property termsAndConditions in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TermsAndConditions} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermsAndConditions patch(@jakarta.annotation.Nonnull final TermsAndConditions body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +120,7 @@ public TermsAndConditions patch(@jakarta.annotation.Nonnull final TermsAndCondit return this.requestAdapter.send(requestInfo, errorMapping, TermsAndConditions::createFromDiscriminatorValue); } /** - * Deletes a termsAndConditions. + * Delete navigation property termsAndConditions for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +128,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a termsAndConditions. + * Delete navigation property termsAndConditions for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the termsAndConditions object. + * The terms and conditions associated with device management of the company. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -154,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the termsAndConditions object. + * The terms and conditions associated with device management of the company. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a termsAndConditions object. + * Update the navigation property termsAndConditions in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -175,7 +169,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a termsAndConditions object. + * Update the navigation property termsAndConditions in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -206,7 +200,7 @@ public TermsAndConditionsItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the termsAndConditions object. + * The terms and conditions associated with device management of the company. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/termsandconditions/item/acceptancestatuses/AcceptanceStatusesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/termsandconditions/item/acceptancestatuses/AcceptanceStatusesRequestBuilder.java index d8f6376640e..2de2fd67ceb 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/termsandconditions/item/acceptancestatuses/AcceptanceStatusesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/termsandconditions/item/acceptancestatuses/AcceptanceStatusesRequestBuilder.java @@ -60,21 +60,19 @@ public AcceptanceStatusesRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/deviceManagement/termsAndConditions/{termsAndConditions%2Did}/acceptanceStatuses{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the termsAndConditionsAcceptanceStatus objects. + * The list of acceptance statuses for this T&C policy. * @return a {@link TermsAndConditionsAcceptanceStatusCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermsAndConditionsAcceptanceStatusCollectionResponse get() { return get(null); } /** - * List properties and relationships of the termsAndConditionsAcceptanceStatus objects. + * The list of acceptance statuses for this T&C policy. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TermsAndConditionsAcceptanceStatusCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermsAndConditionsAcceptanceStatusCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TermsAndConditionsAcceptanceStatusCollectionResponse get(@jakarta.annotat return this.requestAdapter.send(requestInfo, errorMapping, TermsAndConditionsAcceptanceStatusCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new termsAndConditionsAcceptanceStatus object. + * Create new navigation property to acceptanceStatuses for deviceManagement * @param body The request body * @return a {@link TermsAndConditionsAcceptanceStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermsAndConditionsAcceptanceStatus post(@jakarta.annotation.Nonnull final TermsAndConditionsAcceptanceStatus body) { return post(body, null); } /** - * Create a new termsAndConditionsAcceptanceStatus object. + * Create new navigation property to acceptanceStatuses for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TermsAndConditionsAcceptanceStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermsAndConditionsAcceptanceStatus post(@jakarta.annotation.Nonnull final TermsAndConditionsAcceptanceStatus body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public TermsAndConditionsAcceptanceStatus post(@jakarta.annotation.Nonnull final return this.requestAdapter.send(requestInfo, errorMapping, TermsAndConditionsAcceptanceStatus::createFromDiscriminatorValue); } /** - * List properties and relationships of the termsAndConditionsAcceptanceStatus objects. + * The list of acceptance statuses for this T&C policy. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the termsAndConditionsAcceptanceStatus objects. + * The list of acceptance statuses for this T&C policy. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new termsAndConditionsAcceptanceStatus object. + * Create new navigation property to acceptanceStatuses for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new termsAndConditionsAcceptanceStatus object. + * Create new navigation property to acceptanceStatuses for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public AcceptanceStatusesRequestBuilder withUrl(@jakarta.annotation.Nonnull fina return new AcceptanceStatusesRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the termsAndConditionsAcceptanceStatus objects. + * The list of acceptance statuses for this T&C policy. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/termsandconditions/item/acceptancestatuses/item/TermsAndConditionsAcceptanceStatusItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/termsandconditions/item/acceptancestatuses/item/TermsAndConditionsAcceptanceStatusItemRequestBuilder.java index 60801a9070f..7f0006326ed 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/termsandconditions/item/acceptancestatuses/item/TermsAndConditionsAcceptanceStatusItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/termsandconditions/item/acceptancestatuses/item/TermsAndConditionsAcceptanceStatusItemRequestBuilder.java @@ -46,18 +46,16 @@ public TermsAndConditionsAcceptanceStatusItemRequestBuilder(@jakarta.annotation. super(requestAdapter, "{+baseurl}/deviceManagement/termsAndConditions/{termsAndConditions%2Did}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a termsAndConditionsAcceptanceStatus. + * Delete navigation property acceptanceStatuses for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a termsAndConditionsAcceptanceStatus. + * Delete navigation property acceptanceStatuses for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the termsAndConditionsAcceptanceStatus object. + * The list of acceptance statuses for this T&C policy. * @return a {@link TermsAndConditionsAcceptanceStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermsAndConditionsAcceptanceStatus get() { return get(null); } /** - * Read properties and relationships of the termsAndConditionsAcceptanceStatus object. + * The list of acceptance statuses for this T&C policy. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TermsAndConditionsAcceptanceStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermsAndConditionsAcceptanceStatus get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public TermsAndConditionsAcceptanceStatus get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, TermsAndConditionsAcceptanceStatus::createFromDiscriminatorValue); } /** - * Update the properties of a termsAndConditionsAcceptanceStatus object. + * Update the navigation property acceptanceStatuses in deviceManagement * @param body The request body * @return a {@link TermsAndConditionsAcceptanceStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermsAndConditionsAcceptanceStatus patch(@jakarta.annotation.Nonnull final TermsAndConditionsAcceptanceStatus body) { return patch(body, null); } /** - * Update the properties of a termsAndConditionsAcceptanceStatus object. + * Update the navigation property acceptanceStatuses in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TermsAndConditionsAcceptanceStatus} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermsAndConditionsAcceptanceStatus patch(@jakarta.annotation.Nonnull final TermsAndConditionsAcceptanceStatus body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public TermsAndConditionsAcceptanceStatus patch(@jakarta.annotation.Nonnull fina return this.requestAdapter.send(requestInfo, errorMapping, TermsAndConditionsAcceptanceStatus::createFromDiscriminatorValue); } /** - * Deletes a termsAndConditionsAcceptanceStatus. + * Delete navigation property acceptanceStatuses for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a termsAndConditionsAcceptanceStatus. + * Delete navigation property acceptanceStatuses for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the termsAndConditionsAcceptanceStatus object. + * The list of acceptance statuses for this T&C policy. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the termsAndConditionsAcceptanceStatus object. + * The list of acceptance statuses for this T&C policy. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a termsAndConditionsAcceptanceStatus object. + * Update the navigation property acceptanceStatuses in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a termsAndConditionsAcceptanceStatus object. + * Update the navigation property acceptanceStatuses in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public TermsAndConditionsAcceptanceStatusItemRequestBuilder withUrl(@jakarta.ann public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the termsAndConditionsAcceptanceStatus object. + * The list of acceptance statuses for this T&C policy. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/termsandconditions/item/assignments/AssignmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/termsandconditions/item/assignments/AssignmentsRequestBuilder.java index fb501b0b5ba..3512794376e 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/termsandconditions/item/assignments/AssignmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/termsandconditions/item/assignments/AssignmentsRequestBuilder.java @@ -60,21 +60,19 @@ public AssignmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/deviceManagement/termsAndConditions/{termsAndConditions%2Did}/assignments{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the termsAndConditionsAssignment objects. + * The list of assignments for this T&C policy. * @return a {@link TermsAndConditionsAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermsAndConditionsAssignmentCollectionResponse get() { return get(null); } /** - * List properties and relationships of the termsAndConditionsAssignment objects. + * The list of assignments for this T&C policy. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TermsAndConditionsAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermsAndConditionsAssignmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TermsAndConditionsAssignmentCollectionResponse get(@jakarta.annotation.Nu return this.requestAdapter.send(requestInfo, errorMapping, TermsAndConditionsAssignmentCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new termsAndConditionsAssignment object. + * Create new navigation property to assignments for deviceManagement * @param body The request body * @return a {@link TermsAndConditionsAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermsAndConditionsAssignment post(@jakarta.annotation.Nonnull final TermsAndConditionsAssignment body) { return post(body, null); } /** - * Create a new termsAndConditionsAssignment object. + * Create new navigation property to assignments for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TermsAndConditionsAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermsAndConditionsAssignment post(@jakarta.annotation.Nonnull final TermsAndConditionsAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public TermsAndConditionsAssignment post(@jakarta.annotation.Nonnull final Terms return this.requestAdapter.send(requestInfo, errorMapping, TermsAndConditionsAssignment::createFromDiscriminatorValue); } /** - * List properties and relationships of the termsAndConditionsAssignment objects. + * The list of assignments for this T&C policy. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the termsAndConditionsAssignment objects. + * The list of assignments for this T&C policy. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new termsAndConditionsAssignment object. + * Create new navigation property to assignments for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new termsAndConditionsAssignment object. + * Create new navigation property to assignments for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public AssignmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AssignmentsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the termsAndConditionsAssignment objects. + * The list of assignments for this T&C policy. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/termsandconditions/item/assignments/item/TermsAndConditionsAssignmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/termsandconditions/item/assignments/item/TermsAndConditionsAssignmentItemRequestBuilder.java index f053bf59387..252edb68d7c 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/termsandconditions/item/assignments/item/TermsAndConditionsAssignmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/termsandconditions/item/assignments/item/TermsAndConditionsAssignmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public TermsAndConditionsAssignmentItemRequestBuilder(@jakarta.annotation.Nonnul super(requestAdapter, "{+baseurl}/deviceManagement/termsAndConditions/{termsAndConditions%2Did}/assignments/{termsAndConditionsAssignment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a termsAndConditionsAssignment. + * Delete navigation property assignments for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a termsAndConditionsAssignment. + * Delete navigation property assignments for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the termsAndConditionsAssignment object. + * The list of assignments for this T&C policy. * @return a {@link TermsAndConditionsAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermsAndConditionsAssignment get() { return get(null); } /** - * Read properties and relationships of the termsAndConditionsAssignment object. + * The list of assignments for this T&C policy. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TermsAndConditionsAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermsAndConditionsAssignment get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public TermsAndConditionsAssignment get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, TermsAndConditionsAssignment::createFromDiscriminatorValue); } /** - * Update the properties of a termsAndConditionsAssignment object. + * Update the navigation property assignments in deviceManagement * @param body The request body * @return a {@link TermsAndConditionsAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermsAndConditionsAssignment patch(@jakarta.annotation.Nonnull final TermsAndConditionsAssignment body) { return patch(body, null); } /** - * Update the properties of a termsAndConditionsAssignment object. + * Update the navigation property assignments in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TermsAndConditionsAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermsAndConditionsAssignment patch(@jakarta.annotation.Nonnull final TermsAndConditionsAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public TermsAndConditionsAssignment patch(@jakarta.annotation.Nonnull final Term return this.requestAdapter.send(requestInfo, errorMapping, TermsAndConditionsAssignment::createFromDiscriminatorValue); } /** - * Deletes a termsAndConditionsAssignment. + * Delete navigation property assignments for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a termsAndConditionsAssignment. + * Delete navigation property assignments for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the termsAndConditionsAssignment object. + * The list of assignments for this T&C policy. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the termsAndConditionsAssignment object. + * The list of assignments for this T&C policy. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a termsAndConditionsAssignment object. + * Update the navigation property assignments in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a termsAndConditionsAssignment object. + * Update the navigation property assignments in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public TermsAndConditionsAssignmentItemRequestBuilder withUrl(@jakarta.annotatio public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the termsAndConditionsAssignment object. + * The list of assignments for this T&C policy. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/auditevents/AuditEventsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/auditevents/AuditEventsRequestBuilder.java index 90f6248bdbf..9e28534223e 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/auditevents/AuditEventsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/auditevents/AuditEventsRequestBuilder.java @@ -69,21 +69,19 @@ public AuditEventsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/deviceManagement/virtualEndpoint/auditEvents{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List all the cloudPcAuditEvent objects for the tenant. + * A collection of Cloud PC audit events. * @return a {@link CloudPcAuditEventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CloudPcAuditEventCollectionResponse get() { return get(null); } /** - * List all the cloudPcAuditEvent objects for the tenant. + * A collection of Cloud PC audit events. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CloudPcAuditEventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CloudPcAuditEventCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -118,7 +116,7 @@ public CloudPcAuditEvent post(@jakarta.annotation.Nonnull final CloudPcAuditEven return this.requestAdapter.send(requestInfo, errorMapping, CloudPcAuditEvent::createFromDiscriminatorValue); } /** - * List all the cloudPcAuditEvent objects for the tenant. + * A collection of Cloud PC audit events. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -126,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List all the cloudPcAuditEvent objects for the tenant. + * A collection of Cloud PC audit events. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -172,7 +170,7 @@ public AuditEventsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AuditEventsRequestBuilder(rawUrl, requestAdapter); } /** - * List all the cloudPcAuditEvent objects for the tenant. + * A collection of Cloud PC audit events. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/auditevents/getauditactivitytypes/GetAuditActivityTypesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/auditevents/getauditactivitytypes/GetAuditActivityTypesRequestBuilder.java index dbb70f5c096..5129d0584f6 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/auditevents/getauditactivitytypes/GetAuditActivityTypesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/auditevents/getauditactivitytypes/GetAuditActivityTypesRequestBuilder.java @@ -36,19 +36,21 @@ public GetAuditActivityTypesRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/deviceManagement/virtualEndpoint/auditEvents/getAuditActivityTypes(){?%24count,%24filter,%24search,%24skip,%24top}", rawUrl); } /** - * Invoke function getAuditActivityTypes + * Get auditactivity typesby tenant ID. * @return a {@link GetAuditActivityTypesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetAuditActivityTypesGetResponse get() { return get(null); } /** - * Invoke function getAuditActivityTypes + * Get auditactivity typesby tenant ID. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GetAuditActivityTypesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetAuditActivityTypesGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public GetAuditActivityTypesGetResponse get(@jakarta.annotation.Nullable final j return this.requestAdapter.send(requestInfo, errorMapping, GetAuditActivityTypesGetResponse::createFromDiscriminatorValue); } /** - * Invoke function getAuditActivityTypes + * Get auditactivity typesby tenant ID. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getAuditActivityTypes + * Get auditactivity typesby tenant ID. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public GetAuditActivityTypesRequestBuilder withUrl(@jakarta.annotation.Nonnull f return new GetAuditActivityTypesRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function getAuditActivityTypes + * Get auditactivity typesby tenant ID. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/auditevents/item/CloudPcAuditEventItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/auditevents/item/CloudPcAuditEventItemRequestBuilder.java index 6ef89291306..a20f9e10445 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/auditevents/item/CloudPcAuditEventItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/auditevents/item/CloudPcAuditEventItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a cloudPcAuditEvent object. + * A collection of Cloud PC audit events. * @return a {@link CloudPcAuditEvent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CloudPcAuditEvent get() { return get(null); } /** - * Read the properties and relationships of a cloudPcAuditEvent object. + * A collection of Cloud PC audit events. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CloudPcAuditEvent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CloudPcAuditEvent get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a cloudPcAuditEvent object. + * A collection of Cloud PC audit events. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a cloudPcAuditEvent object. + * A collection of Cloud PC audit events. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public CloudPcAuditEventItemRequestBuilder withUrl(@jakarta.annotation.Nonnull f public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a cloudPcAuditEvent object. + * A collection of Cloud PC audit events. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/cloudpcs/CloudPCsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/cloudpcs/CloudPCsRequestBuilder.java index 9bd2a2740ce..1b6f36b5a6d 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/cloudpcs/CloudPCsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/cloudpcs/CloudPCsRequestBuilder.java @@ -60,21 +60,19 @@ public CloudPCsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/deviceManagement/virtualEndpoint/cloudPCs{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List the cloudPC devices in a tenant. + * A collection of cloud-managed virtual desktops. * @return a {@link CloudPCCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CloudPCCollectionResponse get() { return get(null); } /** - * List the cloudPC devices in a tenant. + * A collection of cloud-managed virtual desktops. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CloudPCCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CloudPCCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public CloudPC post(@jakarta.annotation.Nonnull final CloudPC body, @jakarta.ann return this.requestAdapter.send(requestInfo, errorMapping, CloudPC::createFromDiscriminatorValue); } /** - * List the cloudPC devices in a tenant. + * A collection of cloud-managed virtual desktops. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List the cloudPC devices in a tenant. + * A collection of cloud-managed virtual desktops. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public CloudPCsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new CloudPCsRequestBuilder(rawUrl, requestAdapter); } /** - * List the cloudPC devices in a tenant. + * A collection of cloud-managed virtual desktops. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/cloudpcs/item/CloudPCItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/cloudpcs/item/CloudPCItemRequestBuilder.java index d4f1d89b997..2a76fd10b14 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/cloudpcs/item/CloudPCItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/cloudpcs/item/CloudPCItemRequestBuilder.java @@ -100,21 +100,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a specific cloudPC object. + * A collection of cloud-managed virtual desktops. * @return a {@link CloudPC} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CloudPC get() { return get(null); } /** - * Read the properties and relationships of a specific cloudPC object. + * A collection of cloud-managed virtual desktops. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CloudPC} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CloudPC get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -169,7 +167,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a specific cloudPC object. + * A collection of cloud-managed virtual desktops. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -177,7 +175,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a specific cloudPC object. + * A collection of cloud-managed virtual desktops. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -229,7 +227,7 @@ public CloudPCItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a specific cloudPC object. + * A collection of cloud-managed virtual desktops. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/deviceimages/DeviceImagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/deviceimages/DeviceImagesRequestBuilder.java index d56a41a6d00..9ec27a6bf5d 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/deviceimages/DeviceImagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/deviceimages/DeviceImagesRequestBuilder.java @@ -69,21 +69,19 @@ public DeviceImagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/deviceManagement/virtualEndpoint/deviceImages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List the properties and relationships of cloudPcDeviceImage objects (operating system images) uploaded to Cloud PC. + * A collection of device image resources on Cloud PC. * @return a {@link CloudPcDeviceImageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CloudPcDeviceImageCollectionResponse get() { return get(null); } /** - * List the properties and relationships of cloudPcDeviceImage objects (operating system images) uploaded to Cloud PC. + * A collection of device image resources on Cloud PC. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CloudPcDeviceImageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CloudPcDeviceImageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public CloudPcDeviceImageCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, CloudPcDeviceImageCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new cloudPcDeviceImage object. Upload a custom OS image that you can later provision on Cloud PCs. + * Create new navigation property to deviceImages for deviceManagement * @param body The request body * @return a {@link CloudPcDeviceImage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CloudPcDeviceImage post(@jakarta.annotation.Nonnull final CloudPcDeviceImage body) { return post(body, null); } /** - * Create a new cloudPcDeviceImage object. Upload a custom OS image that you can later provision on Cloud PCs. + * Create new navigation property to deviceImages for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CloudPcDeviceImage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CloudPcDeviceImage post(@jakarta.annotation.Nonnull final CloudPcDeviceImage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public CloudPcDeviceImage post(@jakarta.annotation.Nonnull final CloudPcDeviceIm return this.requestAdapter.send(requestInfo, errorMapping, CloudPcDeviceImage::createFromDiscriminatorValue); } /** - * List the properties and relationships of cloudPcDeviceImage objects (operating system images) uploaded to Cloud PC. + * A collection of device image resources on Cloud PC. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List the properties and relationships of cloudPcDeviceImage objects (operating system images) uploaded to Cloud PC. + * A collection of device image resources on Cloud PC. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new cloudPcDeviceImage object. Upload a custom OS image that you can later provision on Cloud PCs. + * Create new navigation property to deviceImages for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new cloudPcDeviceImage object. Upload a custom OS image that you can later provision on Cloud PCs. + * Create new navigation property to deviceImages for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public DeviceImagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri return new DeviceImagesRequestBuilder(rawUrl, requestAdapter); } /** - * List the properties and relationships of cloudPcDeviceImage objects (operating system images) uploaded to Cloud PC. + * A collection of device image resources on Cloud PC. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/deviceimages/getsourceimages/GetSourceImagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/deviceimages/getsourceimages/GetSourceImagesRequestBuilder.java index a7158a5bde5..78ac3280f74 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/deviceimages/getsourceimages/GetSourceImagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/deviceimages/getsourceimages/GetSourceImagesRequestBuilder.java @@ -36,19 +36,21 @@ public GetSourceImagesRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/deviceManagement/virtualEndpoint/deviceImages/getSourceImages(){?%24count,%24filter,%24search,%24skip,%24top}", rawUrl); } /** - * Invoke function getSourceImages + * Get cloudPcSourceDeviceImage objects that can be uploaded and used on Cloud PCs. View a list of all the managed image resources from your Microsoft Entra subscriptions. * @return a {@link GetSourceImagesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetSourceImagesGetResponse get() { return get(null); } /** - * Invoke function getSourceImages + * Get cloudPcSourceDeviceImage objects that can be uploaded and used on Cloud PCs. View a list of all the managed image resources from your Microsoft Entra subscriptions. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GetSourceImagesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetSourceImagesGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public GetSourceImagesGetResponse get(@jakarta.annotation.Nullable final java.ut return this.requestAdapter.send(requestInfo, errorMapping, GetSourceImagesGetResponse::createFromDiscriminatorValue); } /** - * Invoke function getSourceImages + * Get cloudPcSourceDeviceImage objects that can be uploaded and used on Cloud PCs. View a list of all the managed image resources from your Microsoft Entra subscriptions. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getSourceImages + * Get cloudPcSourceDeviceImage objects that can be uploaded and used on Cloud PCs. View a list of all the managed image resources from your Microsoft Entra subscriptions. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public GetSourceImagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final S return new GetSourceImagesRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function getSourceImages + * Get cloudPcSourceDeviceImage objects that can be uploaded and used on Cloud PCs. View a list of all the managed image resources from your Microsoft Entra subscriptions. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/deviceimages/item/CloudPcDeviceImageItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/deviceimages/item/CloudPcDeviceImageItemRequestBuilder.java index 84ef5196df2..c9bb6b95321 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/deviceimages/item/CloudPcDeviceImageItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/deviceimages/item/CloudPcDeviceImageItemRequestBuilder.java @@ -37,18 +37,16 @@ public CloudPcDeviceImageItemRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/deviceManagement/virtualEndpoint/deviceImages/{cloudPcDeviceImage%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a cloudPcDeviceImage object. + * Delete navigation property deviceImages for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a cloudPcDeviceImage object. + * Delete navigation property deviceImages for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a specific cloudPcDeviceImage object. + * A collection of device image resources on Cloud PC. * @return a {@link CloudPcDeviceImage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CloudPcDeviceImage get() { return get(null); } /** - * Read the properties and relationships of a specific cloudPcDeviceImage object. + * A collection of device image resources on Cloud PC. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CloudPcDeviceImage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CloudPcDeviceImage get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -106,7 +102,7 @@ public CloudPcDeviceImage patch(@jakarta.annotation.Nonnull final CloudPcDeviceI return this.requestAdapter.send(requestInfo, errorMapping, CloudPcDeviceImage::createFromDiscriminatorValue); } /** - * Delete a cloudPcDeviceImage object. + * Delete navigation property deviceImages for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -114,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a cloudPcDeviceImage object. + * Delete navigation property deviceImages for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a specific cloudPcDeviceImage object. + * A collection of device image resources on Cloud PC. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a specific cloudPcDeviceImage object. + * A collection of device image resources on Cloud PC. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public CloudPcDeviceImageItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a specific cloudPcDeviceImage object. + * A collection of device image resources on Cloud PC. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/galleryimages/GalleryImagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/galleryimages/GalleryImagesRequestBuilder.java index ea089f6b1b6..7dfc39b9cce 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/galleryimages/GalleryImagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/galleryimages/GalleryImagesRequestBuilder.java @@ -60,21 +60,19 @@ public GalleryImagesRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/deviceManagement/virtualEndpoint/galleryImages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List the properties and relationships of cloudPcGalleryImage objects. + * A collection of gallery image resources on Cloud PC. * @return a {@link CloudPcGalleryImageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CloudPcGalleryImageCollectionResponse get() { return get(null); } /** - * List the properties and relationships of cloudPcGalleryImage objects. + * A collection of gallery image resources on Cloud PC. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CloudPcGalleryImageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CloudPcGalleryImageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public CloudPcGalleryImage post(@jakarta.annotation.Nonnull final CloudPcGallery return this.requestAdapter.send(requestInfo, errorMapping, CloudPcGalleryImage::createFromDiscriminatorValue); } /** - * List the properties and relationships of cloudPcGalleryImage objects. + * A collection of gallery image resources on Cloud PC. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List the properties and relationships of cloudPcGalleryImage objects. + * A collection of gallery image resources on Cloud PC. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public GalleryImagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new GalleryImagesRequestBuilder(rawUrl, requestAdapter); } /** - * List the properties and relationships of cloudPcGalleryImage objects. + * A collection of gallery image resources on Cloud PC. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/galleryimages/item/CloudPcGalleryImageItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/galleryimages/item/CloudPcGalleryImageItemRequestBuilder.java index 8ae4af76654..66fa263cffb 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/galleryimages/item/CloudPcGalleryImageItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/galleryimages/item/CloudPcGalleryImageItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a specific cloudPcGalleryImage object. + * A collection of gallery image resources on Cloud PC. * @return a {@link CloudPcGalleryImage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CloudPcGalleryImage get() { return get(null); } /** - * Read the properties and relationships of a specific cloudPcGalleryImage object. + * A collection of gallery image resources on Cloud PC. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CloudPcGalleryImage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CloudPcGalleryImage get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a specific cloudPcGalleryImage object. + * A collection of gallery image resources on Cloud PC. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a specific cloudPcGalleryImage object. + * A collection of gallery image resources on Cloud PC. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public CloudPcGalleryImageItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a specific cloudPcGalleryImage object. + * A collection of gallery image resources on Cloud PC. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/onpremisesconnections/OnPremisesConnectionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/onpremisesconnections/OnPremisesConnectionsRequestBuilder.java index 18248d7a271..cfa5886fb1a 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/onpremisesconnections/OnPremisesConnectionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/onpremisesconnections/OnPremisesConnectionsRequestBuilder.java @@ -60,21 +60,19 @@ public OnPremisesConnectionsRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/deviceManagement/virtualEndpoint/onPremisesConnections{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the cloudPcOnPremisesConnection objects. + * A defined collection of Azure resource information that can be used to establish Azure network connections for Cloud PCs. * @return a {@link CloudPcOnPremisesConnectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CloudPcOnPremisesConnectionCollectionResponse get() { return get(null); } /** - * List properties and relationships of the cloudPcOnPremisesConnection objects. + * A defined collection of Azure resource information that can be used to establish Azure network connections for Cloud PCs. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CloudPcOnPremisesConnectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CloudPcOnPremisesConnectionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public CloudPcOnPremisesConnectionCollectionResponse get(@jakarta.annotation.Nul return this.requestAdapter.send(requestInfo, errorMapping, CloudPcOnPremisesConnectionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new cloudPcOnPremisesConnection object for provisioning Cloud PCs. + * Create new navigation property to onPremisesConnections for deviceManagement * @param body The request body * @return a {@link CloudPcOnPremisesConnection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CloudPcOnPremisesConnection post(@jakarta.annotation.Nonnull final CloudPcOnPremisesConnection body) { return post(body, null); } /** - * Create a new cloudPcOnPremisesConnection object for provisioning Cloud PCs. + * Create new navigation property to onPremisesConnections for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CloudPcOnPremisesConnection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CloudPcOnPremisesConnection post(@jakarta.annotation.Nonnull final CloudPcOnPremisesConnection body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public CloudPcOnPremisesConnection post(@jakarta.annotation.Nonnull final CloudP return this.requestAdapter.send(requestInfo, errorMapping, CloudPcOnPremisesConnection::createFromDiscriminatorValue); } /** - * List properties and relationships of the cloudPcOnPremisesConnection objects. + * A defined collection of Azure resource information that can be used to establish Azure network connections for Cloud PCs. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the cloudPcOnPremisesConnection objects. + * A defined collection of Azure resource information that can be used to establish Azure network connections for Cloud PCs. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new cloudPcOnPremisesConnection object for provisioning Cloud PCs. + * Create new navigation property to onPremisesConnections for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new cloudPcOnPremisesConnection object for provisioning Cloud PCs. + * Create new navigation property to onPremisesConnections for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public OnPremisesConnectionsRequestBuilder withUrl(@jakarta.annotation.Nonnull f return new OnPremisesConnectionsRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the cloudPcOnPremisesConnection objects. + * A defined collection of Azure resource information that can be used to establish Azure network connections for Cloud PCs. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/onpremisesconnections/item/CloudPcOnPremisesConnectionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/onpremisesconnections/item/CloudPcOnPremisesConnectionItemRequestBuilder.java index e5518a893d2..d2ec6e318e5 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/onpremisesconnections/item/CloudPcOnPremisesConnectionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/onpremisesconnections/item/CloudPcOnPremisesConnectionItemRequestBuilder.java @@ -46,18 +46,16 @@ public CloudPcOnPremisesConnectionItemRequestBuilder(@jakarta.annotation.Nonnull super(requestAdapter, "{+baseurl}/deviceManagement/virtualEndpoint/onPremisesConnections/{cloudPcOnPremisesConnection%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a specific cloudPcOnPremisesConnection object. When you delete an Azure network connection, permissions to the service are removed from the specified Azure resources. You cannot delete an Azure network connection when it's in use, as indicated by the inUse property. + * Delete navigation property onPremisesConnections for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a specific cloudPcOnPremisesConnection object. When you delete an Azure network connection, permissions to the service are removed from the specified Azure resources. You cannot delete an Azure network connection when it's in use, as indicated by the inUse property. + * Delete navigation property onPremisesConnections for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of the cloudPcOnPremisesConnection object. + * A defined collection of Azure resource information that can be used to establish Azure network connections for Cloud PCs. * @return a {@link CloudPcOnPremisesConnection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CloudPcOnPremisesConnection get() { return get(null); } /** - * Read the properties and relationships of the cloudPcOnPremisesConnection object. + * A defined collection of Azure resource information that can be used to establish Azure network connections for Cloud PCs. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CloudPcOnPremisesConnection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CloudPcOnPremisesConnection get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public CloudPcOnPremisesConnection get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, CloudPcOnPremisesConnection::createFromDiscriminatorValue); } /** - * Update the properties of a cloudPcOnPremisesConnection object. + * Update the navigation property onPremisesConnections in deviceManagement * @param body The request body * @return a {@link CloudPcOnPremisesConnection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CloudPcOnPremisesConnection patch(@jakarta.annotation.Nonnull final CloudPcOnPremisesConnection body) { return patch(body, null); } /** - * Update the properties of a cloudPcOnPremisesConnection object. + * Update the navigation property onPremisesConnections in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CloudPcOnPremisesConnection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CloudPcOnPremisesConnection patch(@jakarta.annotation.Nonnull final CloudPcOnPremisesConnection body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public CloudPcOnPremisesConnection patch(@jakarta.annotation.Nonnull final Cloud return this.requestAdapter.send(requestInfo, errorMapping, CloudPcOnPremisesConnection::createFromDiscriminatorValue); } /** - * Delete a specific cloudPcOnPremisesConnection object. When you delete an Azure network connection, permissions to the service are removed from the specified Azure resources. You cannot delete an Azure network connection when it's in use, as indicated by the inUse property. + * Delete navigation property onPremisesConnections for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a specific cloudPcOnPremisesConnection object. When you delete an Azure network connection, permissions to the service are removed from the specified Azure resources. You cannot delete an Azure network connection when it's in use, as indicated by the inUse property. + * Delete navigation property onPremisesConnections for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of the cloudPcOnPremisesConnection object. + * A defined collection of Azure resource information that can be used to establish Azure network connections for Cloud PCs. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of the cloudPcOnPremisesConnection object. + * A defined collection of Azure resource information that can be used to establish Azure network connections for Cloud PCs. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a cloudPcOnPremisesConnection object. + * Update the navigation property onPremisesConnections in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a cloudPcOnPremisesConnection object. + * Update the navigation property onPremisesConnections in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public CloudPcOnPremisesConnectionItemRequestBuilder withUrl(@jakarta.annotation public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of the cloudPcOnPremisesConnection object. + * A defined collection of Azure resource information that can be used to establish Azure network connections for Cloud PCs. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/provisioningpolicies/ProvisioningPoliciesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/provisioningpolicies/ProvisioningPoliciesRequestBuilder.java index 4f5f36d589f..977ea554d0c 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/provisioningpolicies/ProvisioningPoliciesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/provisioningpolicies/ProvisioningPoliciesRequestBuilder.java @@ -60,21 +60,19 @@ public ProvisioningPoliciesRequestBuilder(@jakarta.annotation.Nonnull final Stri super(requestAdapter, "{+baseurl}/deviceManagement/virtualEndpoint/provisioningPolicies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the cloudPcProvisioningPolicy objects. + * A collection of Cloud PC provisioning policies. * @return a {@link CloudPcProvisioningPolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CloudPcProvisioningPolicyCollectionResponse get() { return get(null); } /** - * List properties and relationships of the cloudPcProvisioningPolicy objects. + * A collection of Cloud PC provisioning policies. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CloudPcProvisioningPolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CloudPcProvisioningPolicyCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public CloudPcProvisioningPolicyCollectionResponse get(@jakarta.annotation.Nulla return this.requestAdapter.send(requestInfo, errorMapping, CloudPcProvisioningPolicyCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new cloudPcProvisioningPolicy object. + * Create new navigation property to provisioningPolicies for deviceManagement * @param body The request body * @return a {@link CloudPcProvisioningPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CloudPcProvisioningPolicy post(@jakarta.annotation.Nonnull final CloudPcProvisioningPolicy body) { return post(body, null); } /** - * Create a new cloudPcProvisioningPolicy object. + * Create new navigation property to provisioningPolicies for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CloudPcProvisioningPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CloudPcProvisioningPolicy post(@jakarta.annotation.Nonnull final CloudPcProvisioningPolicy body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public CloudPcProvisioningPolicy post(@jakarta.annotation.Nonnull final CloudPcP return this.requestAdapter.send(requestInfo, errorMapping, CloudPcProvisioningPolicy::createFromDiscriminatorValue); } /** - * List properties and relationships of the cloudPcProvisioningPolicy objects. + * A collection of Cloud PC provisioning policies. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the cloudPcProvisioningPolicy objects. + * A collection of Cloud PC provisioning policies. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new cloudPcProvisioningPolicy object. + * Create new navigation property to provisioningPolicies for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new cloudPcProvisioningPolicy object. + * Create new navigation property to provisioningPolicies for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ProvisioningPoliciesRequestBuilder withUrl(@jakarta.annotation.Nonnull fi return new ProvisioningPoliciesRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the cloudPcProvisioningPolicy objects. + * A collection of Cloud PC provisioning policies. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/provisioningpolicies/item/CloudPcProvisioningPolicyItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/provisioningpolicies/item/CloudPcProvisioningPolicyItemRequestBuilder.java index e2d1ef07265..e46524cf7b2 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/provisioningpolicies/item/CloudPcProvisioningPolicyItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/provisioningpolicies/item/CloudPcProvisioningPolicyItemRequestBuilder.java @@ -55,18 +55,16 @@ public CloudPcProvisioningPolicyItemRequestBuilder(@jakarta.annotation.Nonnull f super(requestAdapter, "{+baseurl}/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a cloudPcProvisioningPolicy object. You cant delete a policy thats in use. + * Delete navigation property provisioningPolicies for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a cloudPcProvisioningPolicy object. You cant delete a policy thats in use. + * Delete navigation property provisioningPolicies for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -75,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a cloudPcProvisioningPolicy object. + * A collection of Cloud PC provisioning policies. * @return a {@link CloudPcProvisioningPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CloudPcProvisioningPolicy get() { return get(null); } /** - * Read the properties and relationships of a cloudPcProvisioningPolicy object. + * A collection of Cloud PC provisioning policies. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CloudPcProvisioningPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CloudPcProvisioningPolicy get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -99,23 +95,21 @@ public CloudPcProvisioningPolicy get(@jakarta.annotation.Nullable final java.uti return this.requestAdapter.send(requestInfo, errorMapping, CloudPcProvisioningPolicy::createFromDiscriminatorValue); } /** - * Update the properties of a cloudPcProvisioningPolicy object. + * Update the navigation property provisioningPolicies in deviceManagement * @param body The request body * @return a {@link CloudPcProvisioningPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CloudPcProvisioningPolicy patch(@jakarta.annotation.Nonnull final CloudPcProvisioningPolicy body) { return patch(body, null); } /** - * Update the properties of a cloudPcProvisioningPolicy object. + * Update the navigation property provisioningPolicies in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CloudPcProvisioningPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CloudPcProvisioningPolicy patch(@jakarta.annotation.Nonnull final CloudPcProvisioningPolicy body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +120,7 @@ public CloudPcProvisioningPolicy patch(@jakarta.annotation.Nonnull final CloudPc return this.requestAdapter.send(requestInfo, errorMapping, CloudPcProvisioningPolicy::createFromDiscriminatorValue); } /** - * Delete a cloudPcProvisioningPolicy object. You cant delete a policy thats in use. + * Delete navigation property provisioningPolicies for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +128,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a cloudPcProvisioningPolicy object. You cant delete a policy thats in use. + * Delete navigation property provisioningPolicies for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a cloudPcProvisioningPolicy object. + * A collection of Cloud PC provisioning policies. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -154,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a cloudPcProvisioningPolicy object. + * A collection of Cloud PC provisioning policies. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a cloudPcProvisioningPolicy object. + * Update the navigation property provisioningPolicies in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -175,7 +169,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a cloudPcProvisioningPolicy object. + * Update the navigation property provisioningPolicies in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -206,7 +200,7 @@ public CloudPcProvisioningPolicyItemRequestBuilder withUrl(@jakarta.annotation.N public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a cloudPcProvisioningPolicy object. + * A collection of Cloud PC provisioning policies. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/usersettings/UserSettingsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/usersettings/UserSettingsRequestBuilder.java index 51c589eae2b..c32dd3c23d6 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/usersettings/UserSettingsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/usersettings/UserSettingsRequestBuilder.java @@ -60,21 +60,19 @@ public UserSettingsRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/deviceManagement/virtualEndpoint/userSettings{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of cloudPcUserSetting objects and their properties. + * A collection of Cloud PC user settings. * @return a {@link CloudPcUserSettingCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CloudPcUserSettingCollectionResponse get() { return get(null); } /** - * Get a list of cloudPcUserSetting objects and their properties. + * A collection of Cloud PC user settings. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CloudPcUserSettingCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CloudPcUserSettingCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public CloudPcUserSettingCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, CloudPcUserSettingCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new cloudPcUserSetting object. + * Create new navigation property to userSettings for deviceManagement * @param body The request body * @return a {@link CloudPcUserSetting} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CloudPcUserSetting post(@jakarta.annotation.Nonnull final CloudPcUserSetting body) { return post(body, null); } /** - * Create a new cloudPcUserSetting object. + * Create new navigation property to userSettings for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CloudPcUserSetting} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CloudPcUserSetting post(@jakarta.annotation.Nonnull final CloudPcUserSetting body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public CloudPcUserSetting post(@jakarta.annotation.Nonnull final CloudPcUserSett return this.requestAdapter.send(requestInfo, errorMapping, CloudPcUserSetting::createFromDiscriminatorValue); } /** - * Get a list of cloudPcUserSetting objects and their properties. + * A collection of Cloud PC user settings. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of cloudPcUserSetting objects and their properties. + * A collection of Cloud PC user settings. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new cloudPcUserSetting object. + * Create new navigation property to userSettings for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new cloudPcUserSetting object. + * Create new navigation property to userSettings for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public UserSettingsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri return new UserSettingsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of cloudPcUserSetting objects and their properties. + * A collection of Cloud PC user settings. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/usersettings/item/CloudPcUserSettingItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/usersettings/item/CloudPcUserSettingItemRequestBuilder.java index bdeff58c631..66950fce7e5 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/usersettings/item/CloudPcUserSettingItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/virtualendpoint/usersettings/item/CloudPcUserSettingItemRequestBuilder.java @@ -55,18 +55,16 @@ public CloudPcUserSettingItemRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a cloudPcUserSetting object. + * Delete navigation property userSettings for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a cloudPcUserSetting object. + * Delete navigation property userSettings for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -75,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a cloudPcUserSetting object. + * A collection of Cloud PC user settings. * @return a {@link CloudPcUserSetting} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CloudPcUserSetting get() { return get(null); } /** - * Read the properties and relationships of a cloudPcUserSetting object. + * A collection of Cloud PC user settings. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CloudPcUserSetting} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CloudPcUserSetting get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -99,23 +95,21 @@ public CloudPcUserSetting get(@jakarta.annotation.Nullable final java.util.funct return this.requestAdapter.send(requestInfo, errorMapping, CloudPcUserSetting::createFromDiscriminatorValue); } /** - * Update the properties of a cloudPcUserSetting object. + * Update the navigation property userSettings in deviceManagement * @param body The request body * @return a {@link CloudPcUserSetting} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CloudPcUserSetting patch(@jakarta.annotation.Nonnull final CloudPcUserSetting body) { return patch(body, null); } /** - * Update the properties of a cloudPcUserSetting object. + * Update the navigation property userSettings in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CloudPcUserSetting} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CloudPcUserSetting patch(@jakarta.annotation.Nonnull final CloudPcUserSetting body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +120,7 @@ public CloudPcUserSetting patch(@jakarta.annotation.Nonnull final CloudPcUserSet return this.requestAdapter.send(requestInfo, errorMapping, CloudPcUserSetting::createFromDiscriminatorValue); } /** - * Delete a cloudPcUserSetting object. + * Delete navigation property userSettings for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +128,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a cloudPcUserSetting object. + * Delete navigation property userSettings for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a cloudPcUserSetting object. + * A collection of Cloud PC user settings. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -154,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a cloudPcUserSetting object. + * A collection of Cloud PC user settings. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a cloudPcUserSetting object. + * Update the navigation property userSettings in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -175,7 +169,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a cloudPcUserSetting object. + * Update the navigation property userSettings in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -206,7 +200,7 @@ public CloudPcUserSettingItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a cloudPcUserSetting object. + * A collection of Cloud PC user settings. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/windowsautopilotdeviceidentities/WindowsAutopilotDeviceIdentitiesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/windowsautopilotdeviceidentities/WindowsAutopilotDeviceIdentitiesRequestBuilder.java index a5faec78f9f..3e7a1b46c95 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/windowsautopilotdeviceidentities/WindowsAutopilotDeviceIdentitiesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/windowsautopilotdeviceidentities/WindowsAutopilotDeviceIdentitiesRequestBuilder.java @@ -60,21 +60,19 @@ public WindowsAutopilotDeviceIdentitiesRequestBuilder(@jakarta.annotation.Nonnul super(requestAdapter, "{+baseurl}/deviceManagement/windowsAutopilotDeviceIdentities{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the windowsAutopilotDeviceIdentity objects. + * The Windows autopilot device identities contained collection. * @return a {@link WindowsAutopilotDeviceIdentityCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsAutopilotDeviceIdentityCollectionResponse get() { return get(null); } /** - * List properties and relationships of the windowsAutopilotDeviceIdentity objects. + * The Windows autopilot device identities contained collection. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WindowsAutopilotDeviceIdentityCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsAutopilotDeviceIdentityCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public WindowsAutopilotDeviceIdentityCollectionResponse get(@jakarta.annotation. return this.requestAdapter.send(requestInfo, errorMapping, WindowsAutopilotDeviceIdentityCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new windowsAutopilotDeviceIdentity object. + * Create new navigation property to windowsAutopilotDeviceIdentities for deviceManagement * @param body The request body * @return a {@link WindowsAutopilotDeviceIdentity} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsAutopilotDeviceIdentity post(@jakarta.annotation.Nonnull final WindowsAutopilotDeviceIdentity body) { return post(body, null); } /** - * Create a new windowsAutopilotDeviceIdentity object. + * Create new navigation property to windowsAutopilotDeviceIdentities for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WindowsAutopilotDeviceIdentity} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsAutopilotDeviceIdentity post(@jakarta.annotation.Nonnull final WindowsAutopilotDeviceIdentity body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public WindowsAutopilotDeviceIdentity post(@jakarta.annotation.Nonnull final Win return this.requestAdapter.send(requestInfo, errorMapping, WindowsAutopilotDeviceIdentity::createFromDiscriminatorValue); } /** - * List properties and relationships of the windowsAutopilotDeviceIdentity objects. + * The Windows autopilot device identities contained collection. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the windowsAutopilotDeviceIdentity objects. + * The Windows autopilot device identities contained collection. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new windowsAutopilotDeviceIdentity object. + * Create new navigation property to windowsAutopilotDeviceIdentities for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new windowsAutopilotDeviceIdentity object. + * Create new navigation property to windowsAutopilotDeviceIdentities for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public WindowsAutopilotDeviceIdentitiesRequestBuilder withUrl(@jakarta.annotatio return new WindowsAutopilotDeviceIdentitiesRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the windowsAutopilotDeviceIdentity objects. + * The Windows autopilot device identities contained collection. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/windowsautopilotdeviceidentities/item/WindowsAutopilotDeviceIdentityItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/windowsautopilotdeviceidentities/item/WindowsAutopilotDeviceIdentityItemRequestBuilder.java index 4b117b3a812..b31b320947e 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/windowsautopilotdeviceidentities/item/WindowsAutopilotDeviceIdentityItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/windowsautopilotdeviceidentities/item/WindowsAutopilotDeviceIdentityItemRequestBuilder.java @@ -64,18 +64,16 @@ public WindowsAutopilotDeviceIdentityItemRequestBuilder(@jakarta.annotation.Nonn super(requestAdapter, "{+baseurl}/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a windowsAutopilotDeviceIdentity. + * Delete navigation property windowsAutopilotDeviceIdentities for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a windowsAutopilotDeviceIdentity. + * Delete navigation property windowsAutopilotDeviceIdentities for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -84,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the windowsAutopilotDeviceIdentity object. + * The Windows autopilot device identities contained collection. * @return a {@link WindowsAutopilotDeviceIdentity} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsAutopilotDeviceIdentity get() { return get(null); } /** - * Read properties and relationships of the windowsAutopilotDeviceIdentity object. + * The Windows autopilot device identities contained collection. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WindowsAutopilotDeviceIdentity} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsAutopilotDeviceIdentity get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +129,7 @@ public WindowsAutopilotDeviceIdentity patch(@jakarta.annotation.Nonnull final Wi return this.requestAdapter.send(requestInfo, errorMapping, WindowsAutopilotDeviceIdentity::createFromDiscriminatorValue); } /** - * Deletes a windowsAutopilotDeviceIdentity. + * Delete navigation property windowsAutopilotDeviceIdentities for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +137,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a windowsAutopilotDeviceIdentity. + * Delete navigation property windowsAutopilotDeviceIdentities for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -153,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the windowsAutopilotDeviceIdentity object. + * The Windows autopilot device identities contained collection. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -161,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the windowsAutopilotDeviceIdentity object. + * The Windows autopilot device identities contained collection. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -213,7 +209,7 @@ public WindowsAutopilotDeviceIdentityItemRequestBuilder withUrl(@jakarta.annotat public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the windowsAutopilotDeviceIdentity object. + * The Windows autopilot device identities contained collection. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/windowsinformationprotectionapplearningsummaries/WindowsInformationProtectionAppLearningSummariesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/windowsinformationprotectionapplearningsummaries/WindowsInformationProtectionAppLearningSummariesRequestBuilder.java index dfcb26031da..677b25d9eff 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/windowsinformationprotectionapplearningsummaries/WindowsInformationProtectionAppLearningSummariesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/windowsinformationprotectionapplearningsummaries/WindowsInformationProtectionAppLearningSummariesRequestBuilder.java @@ -60,21 +60,19 @@ public WindowsInformationProtectionAppLearningSummariesRequestBuilder(@jakarta.a super(requestAdapter, "{+baseurl}/deviceManagement/windowsInformationProtectionAppLearningSummaries{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the windowsInformationProtectionAppLearningSummary objects. + * The windows information protection app learning summaries. * @return a {@link WindowsInformationProtectionAppLearningSummaryCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsInformationProtectionAppLearningSummaryCollectionResponse get() { return get(null); } /** - * List properties and relationships of the windowsInformationProtectionAppLearningSummary objects. + * The windows information protection app learning summaries. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WindowsInformationProtectionAppLearningSummaryCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsInformationProtectionAppLearningSummaryCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public WindowsInformationProtectionAppLearningSummaryCollectionResponse get(@jak return this.requestAdapter.send(requestInfo, errorMapping, WindowsInformationProtectionAppLearningSummaryCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new windowsInformationProtectionAppLearningSummary object. + * Create new navigation property to windowsInformationProtectionAppLearningSummaries for deviceManagement * @param body The request body * @return a {@link WindowsInformationProtectionAppLearningSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsInformationProtectionAppLearningSummary post(@jakarta.annotation.Nonnull final WindowsInformationProtectionAppLearningSummary body) { return post(body, null); } /** - * Create a new windowsInformationProtectionAppLearningSummary object. + * Create new navigation property to windowsInformationProtectionAppLearningSummaries for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WindowsInformationProtectionAppLearningSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsInformationProtectionAppLearningSummary post(@jakarta.annotation.Nonnull final WindowsInformationProtectionAppLearningSummary body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public WindowsInformationProtectionAppLearningSummary post(@jakarta.annotation.N return this.requestAdapter.send(requestInfo, errorMapping, WindowsInformationProtectionAppLearningSummary::createFromDiscriminatorValue); } /** - * List properties and relationships of the windowsInformationProtectionAppLearningSummary objects. + * The windows information protection app learning summaries. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the windowsInformationProtectionAppLearningSummary objects. + * The windows information protection app learning summaries. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new windowsInformationProtectionAppLearningSummary object. + * Create new navigation property to windowsInformationProtectionAppLearningSummaries for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new windowsInformationProtectionAppLearningSummary object. + * Create new navigation property to windowsInformationProtectionAppLearningSummaries for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public WindowsInformationProtectionAppLearningSummariesRequestBuilder withUrl(@j return new WindowsInformationProtectionAppLearningSummariesRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the windowsInformationProtectionAppLearningSummary objects. + * The windows information protection app learning summaries. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/windowsinformationprotectionapplearningsummaries/item/WindowsInformationProtectionAppLearningSummaryItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/windowsinformationprotectionapplearningsummaries/item/WindowsInformationProtectionAppLearningSummaryItemRequestBuilder.java index ad7e424b91c..5c5502a3f25 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/windowsinformationprotectionapplearningsummaries/item/WindowsInformationProtectionAppLearningSummaryItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/windowsinformationprotectionapplearningsummaries/item/WindowsInformationProtectionAppLearningSummaryItemRequestBuilder.java @@ -37,18 +37,16 @@ public WindowsInformationProtectionAppLearningSummaryItemRequestBuilder(@jakarta super(requestAdapter, "{+baseurl}/deviceManagement/windowsInformationProtectionAppLearningSummaries/{windowsInformationProtectionAppLearningSummary%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a windowsInformationProtectionAppLearningSummary. + * Delete navigation property windowsInformationProtectionAppLearningSummaries for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a windowsInformationProtectionAppLearningSummary. + * Delete navigation property windowsInformationProtectionAppLearningSummaries for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the windowsInformationProtectionAppLearningSummary object. + * The windows information protection app learning summaries. * @return a {@link WindowsInformationProtectionAppLearningSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsInformationProtectionAppLearningSummary get() { return get(null); } /** - * Read properties and relationships of the windowsInformationProtectionAppLearningSummary object. + * The windows information protection app learning summaries. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WindowsInformationProtectionAppLearningSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsInformationProtectionAppLearningSummary get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public WindowsInformationProtectionAppLearningSummary get(@jakarta.annotation.Nu return this.requestAdapter.send(requestInfo, errorMapping, WindowsInformationProtectionAppLearningSummary::createFromDiscriminatorValue); } /** - * Update the properties of a windowsInformationProtectionAppLearningSummary object. + * Update the navigation property windowsInformationProtectionAppLearningSummaries in deviceManagement * @param body The request body * @return a {@link WindowsInformationProtectionAppLearningSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsInformationProtectionAppLearningSummary patch(@jakarta.annotation.Nonnull final WindowsInformationProtectionAppLearningSummary body) { return patch(body, null); } /** - * Update the properties of a windowsInformationProtectionAppLearningSummary object. + * Update the navigation property windowsInformationProtectionAppLearningSummaries in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WindowsInformationProtectionAppLearningSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsInformationProtectionAppLearningSummary patch(@jakarta.annotation.Nonnull final WindowsInformationProtectionAppLearningSummary body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public WindowsInformationProtectionAppLearningSummary patch(@jakarta.annotation. return this.requestAdapter.send(requestInfo, errorMapping, WindowsInformationProtectionAppLearningSummary::createFromDiscriminatorValue); } /** - * Deletes a windowsInformationProtectionAppLearningSummary. + * Delete navigation property windowsInformationProtectionAppLearningSummaries for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a windowsInformationProtectionAppLearningSummary. + * Delete navigation property windowsInformationProtectionAppLearningSummaries for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the windowsInformationProtectionAppLearningSummary object. + * The windows information protection app learning summaries. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the windowsInformationProtectionAppLearningSummary object. + * The windows information protection app learning summaries. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a windowsInformationProtectionAppLearningSummary object. + * Update the navigation property windowsInformationProtectionAppLearningSummaries in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a windowsInformationProtectionAppLearningSummary object. + * Update the navigation property windowsInformationProtectionAppLearningSummaries in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public WindowsInformationProtectionAppLearningSummaryItemRequestBuilder withUrl( public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the windowsInformationProtectionAppLearningSummary object. + * The windows information protection app learning summaries. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/windowsinformationprotectionnetworklearningsummaries/WindowsInformationProtectionNetworkLearningSummariesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/windowsinformationprotectionnetworklearningsummaries/WindowsInformationProtectionNetworkLearningSummariesRequestBuilder.java index 04d4b72ef8e..800975717c8 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/windowsinformationprotectionnetworklearningsummaries/WindowsInformationProtectionNetworkLearningSummariesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/windowsinformationprotectionnetworklearningsummaries/WindowsInformationProtectionNetworkLearningSummariesRequestBuilder.java @@ -60,21 +60,19 @@ public WindowsInformationProtectionNetworkLearningSummariesRequestBuilder(@jakar super(requestAdapter, "{+baseurl}/deviceManagement/windowsInformationProtectionNetworkLearningSummaries{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the windowsInformationProtectionNetworkLearningSummary objects. + * The windows information protection network learning summaries. * @return a {@link WindowsInformationProtectionNetworkLearningSummaryCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsInformationProtectionNetworkLearningSummaryCollectionResponse get() { return get(null); } /** - * List properties and relationships of the windowsInformationProtectionNetworkLearningSummary objects. + * The windows information protection network learning summaries. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WindowsInformationProtectionNetworkLearningSummaryCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsInformationProtectionNetworkLearningSummaryCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public WindowsInformationProtectionNetworkLearningSummaryCollectionResponse get( return this.requestAdapter.send(requestInfo, errorMapping, WindowsInformationProtectionNetworkLearningSummaryCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new windowsInformationProtectionNetworkLearningSummary object. + * Create new navigation property to windowsInformationProtectionNetworkLearningSummaries for deviceManagement * @param body The request body * @return a {@link WindowsInformationProtectionNetworkLearningSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsInformationProtectionNetworkLearningSummary post(@jakarta.annotation.Nonnull final WindowsInformationProtectionNetworkLearningSummary body) { return post(body, null); } /** - * Create a new windowsInformationProtectionNetworkLearningSummary object. + * Create new navigation property to windowsInformationProtectionNetworkLearningSummaries for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WindowsInformationProtectionNetworkLearningSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsInformationProtectionNetworkLearningSummary post(@jakarta.annotation.Nonnull final WindowsInformationProtectionNetworkLearningSummary body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public WindowsInformationProtectionNetworkLearningSummary post(@jakarta.annotati return this.requestAdapter.send(requestInfo, errorMapping, WindowsInformationProtectionNetworkLearningSummary::createFromDiscriminatorValue); } /** - * List properties and relationships of the windowsInformationProtectionNetworkLearningSummary objects. + * The windows information protection network learning summaries. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the windowsInformationProtectionNetworkLearningSummary objects. + * The windows information protection network learning summaries. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new windowsInformationProtectionNetworkLearningSummary object. + * Create new navigation property to windowsInformationProtectionNetworkLearningSummaries for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new windowsInformationProtectionNetworkLearningSummary object. + * Create new navigation property to windowsInformationProtectionNetworkLearningSummaries for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public WindowsInformationProtectionNetworkLearningSummariesRequestBuilder withUr return new WindowsInformationProtectionNetworkLearningSummariesRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the windowsInformationProtectionNetworkLearningSummary objects. + * The windows information protection network learning summaries. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/windowsinformationprotectionnetworklearningsummaries/item/WindowsInformationProtectionNetworkLearningSummaryItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/windowsinformationprotectionnetworklearningsummaries/item/WindowsInformationProtectionNetworkLearningSummaryItemRequestBuilder.java index 1115bb2f2f5..5737fa650d6 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/windowsinformationprotectionnetworklearningsummaries/item/WindowsInformationProtectionNetworkLearningSummaryItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/windowsinformationprotectionnetworklearningsummaries/item/WindowsInformationProtectionNetworkLearningSummaryItemRequestBuilder.java @@ -37,18 +37,16 @@ public WindowsInformationProtectionNetworkLearningSummaryItemRequestBuilder(@jak super(requestAdapter, "{+baseurl}/deviceManagement/windowsInformationProtectionNetworkLearningSummaries/{windowsInformationProtectionNetworkLearningSummary%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a windowsInformationProtectionNetworkLearningSummary. + * Delete navigation property windowsInformationProtectionNetworkLearningSummaries for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a windowsInformationProtectionNetworkLearningSummary. + * Delete navigation property windowsInformationProtectionNetworkLearningSummaries for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the windowsInformationProtectionNetworkLearningSummary object. + * The windows information protection network learning summaries. * @return a {@link WindowsInformationProtectionNetworkLearningSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsInformationProtectionNetworkLearningSummary get() { return get(null); } /** - * Read properties and relationships of the windowsInformationProtectionNetworkLearningSummary object. + * The windows information protection network learning summaries. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WindowsInformationProtectionNetworkLearningSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsInformationProtectionNetworkLearningSummary get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public WindowsInformationProtectionNetworkLearningSummary get(@jakarta.annotatio return this.requestAdapter.send(requestInfo, errorMapping, WindowsInformationProtectionNetworkLearningSummary::createFromDiscriminatorValue); } /** - * Update the properties of a windowsInformationProtectionNetworkLearningSummary object. + * Update the navigation property windowsInformationProtectionNetworkLearningSummaries in deviceManagement * @param body The request body * @return a {@link WindowsInformationProtectionNetworkLearningSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsInformationProtectionNetworkLearningSummary patch(@jakarta.annotation.Nonnull final WindowsInformationProtectionNetworkLearningSummary body) { return patch(body, null); } /** - * Update the properties of a windowsInformationProtectionNetworkLearningSummary object. + * Update the navigation property windowsInformationProtectionNetworkLearningSummaries in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WindowsInformationProtectionNetworkLearningSummary} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsInformationProtectionNetworkLearningSummary patch(@jakarta.annotation.Nonnull final WindowsInformationProtectionNetworkLearningSummary body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public WindowsInformationProtectionNetworkLearningSummary patch(@jakarta.annotat return this.requestAdapter.send(requestInfo, errorMapping, WindowsInformationProtectionNetworkLearningSummary::createFromDiscriminatorValue); } /** - * Deletes a windowsInformationProtectionNetworkLearningSummary. + * Delete navigation property windowsInformationProtectionNetworkLearningSummaries for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a windowsInformationProtectionNetworkLearningSummary. + * Delete navigation property windowsInformationProtectionNetworkLearningSummaries for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the windowsInformationProtectionNetworkLearningSummary object. + * The windows information protection network learning summaries. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the windowsInformationProtectionNetworkLearningSummary object. + * The windows information protection network learning summaries. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a windowsInformationProtectionNetworkLearningSummary object. + * Update the navigation property windowsInformationProtectionNetworkLearningSummaries in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a windowsInformationProtectionNetworkLearningSummary object. + * Update the navigation property windowsInformationProtectionNetworkLearningSummaries in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public WindowsInformationProtectionNetworkLearningSummaryItemRequestBuilder with public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the windowsInformationProtectionNetworkLearningSummary object. + * The windows information protection network learning summaries. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/windowsmalwareinformation/WindowsMalwareInformationRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/windowsmalwareinformation/WindowsMalwareInformationRequestBuilder.java index 2dc99b81b68..1c08aa5db65 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/windowsmalwareinformation/WindowsMalwareInformationRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/windowsmalwareinformation/WindowsMalwareInformationRequestBuilder.java @@ -60,21 +60,19 @@ public WindowsMalwareInformationRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/deviceManagement/windowsMalwareInformation{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the windowsMalwareInformation objects. + * The list of affected malware in the tenant. * @return a {@link WindowsMalwareInformationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsMalwareInformationCollectionResponse get() { return get(null); } /** - * List properties and relationships of the windowsMalwareInformation objects. + * The list of affected malware in the tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WindowsMalwareInformationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsMalwareInformationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public WindowsMalwareInformationCollectionResponse get(@jakarta.annotation.Nulla return this.requestAdapter.send(requestInfo, errorMapping, WindowsMalwareInformationCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new windowsMalwareInformation object. + * Create new navigation property to windowsMalwareInformation for deviceManagement * @param body The request body * @return a {@link WindowsMalwareInformation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsMalwareInformation post(@jakarta.annotation.Nonnull final WindowsMalwareInformation body) { return post(body, null); } /** - * Create a new windowsMalwareInformation object. + * Create new navigation property to windowsMalwareInformation for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WindowsMalwareInformation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsMalwareInformation post(@jakarta.annotation.Nonnull final WindowsMalwareInformation body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public WindowsMalwareInformation post(@jakarta.annotation.Nonnull final WindowsM return this.requestAdapter.send(requestInfo, errorMapping, WindowsMalwareInformation::createFromDiscriminatorValue); } /** - * List properties and relationships of the windowsMalwareInformation objects. + * The list of affected malware in the tenant. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the windowsMalwareInformation objects. + * The list of affected malware in the tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new windowsMalwareInformation object. + * Create new navigation property to windowsMalwareInformation for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new windowsMalwareInformation object. + * Create new navigation property to windowsMalwareInformation for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public WindowsMalwareInformationRequestBuilder withUrl(@jakarta.annotation.Nonnu return new WindowsMalwareInformationRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the windowsMalwareInformation objects. + * The list of affected malware in the tenant. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/windowsmalwareinformation/item/WindowsMalwareInformationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/windowsmalwareinformation/item/WindowsMalwareInformationItemRequestBuilder.java index e4c5b7ebf26..6e2362b5e9e 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/windowsmalwareinformation/item/WindowsMalwareInformationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/windowsmalwareinformation/item/WindowsMalwareInformationItemRequestBuilder.java @@ -46,18 +46,16 @@ public WindowsMalwareInformationItemRequestBuilder(@jakarta.annotation.Nonnull f super(requestAdapter, "{+baseurl}/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a windowsMalwareInformation. + * Delete navigation property windowsMalwareInformation for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a windowsMalwareInformation. + * Delete navigation property windowsMalwareInformation for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the windowsMalwareInformation object. + * The list of affected malware in the tenant. * @return a {@link WindowsMalwareInformation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsMalwareInformation get() { return get(null); } /** - * Read properties and relationships of the windowsMalwareInformation object. + * The list of affected malware in the tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WindowsMalwareInformation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsMalwareInformation get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public WindowsMalwareInformation get(@jakarta.annotation.Nullable final java.uti return this.requestAdapter.send(requestInfo, errorMapping, WindowsMalwareInformation::createFromDiscriminatorValue); } /** - * Update the properties of a windowsMalwareInformation object. + * Update the navigation property windowsMalwareInformation in deviceManagement * @param body The request body * @return a {@link WindowsMalwareInformation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsMalwareInformation patch(@jakarta.annotation.Nonnull final WindowsMalwareInformation body) { return patch(body, null); } /** - * Update the properties of a windowsMalwareInformation object. + * Update the navigation property windowsMalwareInformation in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WindowsMalwareInformation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsMalwareInformation patch(@jakarta.annotation.Nonnull final WindowsMalwareInformation body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public WindowsMalwareInformation patch(@jakarta.annotation.Nonnull final Windows return this.requestAdapter.send(requestInfo, errorMapping, WindowsMalwareInformation::createFromDiscriminatorValue); } /** - * Deletes a windowsMalwareInformation. + * Delete navigation property windowsMalwareInformation for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a windowsMalwareInformation. + * Delete navigation property windowsMalwareInformation for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the windowsMalwareInformation object. + * The list of affected malware in the tenant. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the windowsMalwareInformation object. + * The list of affected malware in the tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a windowsMalwareInformation object. + * Update the navigation property windowsMalwareInformation in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a windowsMalwareInformation object. + * Update the navigation property windowsMalwareInformation in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public WindowsMalwareInformationItemRequestBuilder withUrl(@jakarta.annotation.N public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the windowsMalwareInformation object. + * The list of affected malware in the tenant. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/windowsmalwareinformation/item/devicemalwarestates/DeviceMalwareStatesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/windowsmalwareinformation/item/devicemalwarestates/DeviceMalwareStatesRequestBuilder.java index 00d8817e663..6b9a691a5bb 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/windowsmalwareinformation/item/devicemalwarestates/DeviceMalwareStatesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/windowsmalwareinformation/item/devicemalwarestates/DeviceMalwareStatesRequestBuilder.java @@ -60,21 +60,19 @@ public DeviceMalwareStatesRequestBuilder(@jakarta.annotation.Nonnull final Strin super(requestAdapter, "{+baseurl}/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation%2Did}/deviceMalwareStates{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the malwareStateForWindowsDevice objects. + * List of devices affected by current malware with the malware state on each device * @return a {@link MalwareStateForWindowsDeviceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MalwareStateForWindowsDeviceCollectionResponse get() { return get(null); } /** - * List properties and relationships of the malwareStateForWindowsDevice objects. + * List of devices affected by current malware with the malware state on each device * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MalwareStateForWindowsDeviceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MalwareStateForWindowsDeviceCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public MalwareStateForWindowsDeviceCollectionResponse get(@jakarta.annotation.Nu return this.requestAdapter.send(requestInfo, errorMapping, MalwareStateForWindowsDeviceCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new malwareStateForWindowsDevice object. + * Create new navigation property to deviceMalwareStates for deviceManagement * @param body The request body * @return a {@link MalwareStateForWindowsDevice} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MalwareStateForWindowsDevice post(@jakarta.annotation.Nonnull final MalwareStateForWindowsDevice body) { return post(body, null); } /** - * Create a new malwareStateForWindowsDevice object. + * Create new navigation property to deviceMalwareStates for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MalwareStateForWindowsDevice} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MalwareStateForWindowsDevice post(@jakarta.annotation.Nonnull final MalwareStateForWindowsDevice body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public MalwareStateForWindowsDevice post(@jakarta.annotation.Nonnull final Malwa return this.requestAdapter.send(requestInfo, errorMapping, MalwareStateForWindowsDevice::createFromDiscriminatorValue); } /** - * List properties and relationships of the malwareStateForWindowsDevice objects. + * List of devices affected by current malware with the malware state on each device * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the malwareStateForWindowsDevice objects. + * List of devices affected by current malware with the malware state on each device * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new malwareStateForWindowsDevice object. + * Create new navigation property to deviceMalwareStates for deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new malwareStateForWindowsDevice object. + * Create new navigation property to deviceMalwareStates for deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public DeviceMalwareStatesRequestBuilder withUrl(@jakarta.annotation.Nonnull fin return new DeviceMalwareStatesRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the malwareStateForWindowsDevice objects. + * List of devices affected by current malware with the malware state on each device */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devicemanagement/windowsmalwareinformation/item/devicemalwarestates/item/MalwareStateForWindowsDeviceItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devicemanagement/windowsmalwareinformation/item/devicemalwarestates/item/MalwareStateForWindowsDeviceItemRequestBuilder.java index a1556dabd79..b01f88f29ed 100644 --- a/src/main/java/com/microsoft/graph/generated/devicemanagement/windowsmalwareinformation/item/devicemalwarestates/item/MalwareStateForWindowsDeviceItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devicemanagement/windowsmalwareinformation/item/devicemalwarestates/item/MalwareStateForWindowsDeviceItemRequestBuilder.java @@ -37,18 +37,16 @@ public MalwareStateForWindowsDeviceItemRequestBuilder(@jakarta.annotation.Nonnul super(requestAdapter, "{+baseurl}/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation%2Did}/deviceMalwareStates/{malwareStateForWindowsDevice%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a malwareStateForWindowsDevice. + * Delete navigation property deviceMalwareStates for deviceManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a malwareStateForWindowsDevice. + * Delete navigation property deviceMalwareStates for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the malwareStateForWindowsDevice object. + * List of devices affected by current malware with the malware state on each device * @return a {@link MalwareStateForWindowsDevice} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MalwareStateForWindowsDevice get() { return get(null); } /** - * Read properties and relationships of the malwareStateForWindowsDevice object. + * List of devices affected by current malware with the malware state on each device * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MalwareStateForWindowsDevice} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MalwareStateForWindowsDevice get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public MalwareStateForWindowsDevice get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, MalwareStateForWindowsDevice::createFromDiscriminatorValue); } /** - * Update the properties of a malwareStateForWindowsDevice object. + * Update the navigation property deviceMalwareStates in deviceManagement * @param body The request body * @return a {@link MalwareStateForWindowsDevice} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MalwareStateForWindowsDevice patch(@jakarta.annotation.Nonnull final MalwareStateForWindowsDevice body) { return patch(body, null); } /** - * Update the properties of a malwareStateForWindowsDevice object. + * Update the navigation property deviceMalwareStates in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MalwareStateForWindowsDevice} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MalwareStateForWindowsDevice patch(@jakarta.annotation.Nonnull final MalwareStateForWindowsDevice body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public MalwareStateForWindowsDevice patch(@jakarta.annotation.Nonnull final Malw return this.requestAdapter.send(requestInfo, errorMapping, MalwareStateForWindowsDevice::createFromDiscriminatorValue); } /** - * Deletes a malwareStateForWindowsDevice. + * Delete navigation property deviceMalwareStates for deviceManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a malwareStateForWindowsDevice. + * Delete navigation property deviceMalwareStates for deviceManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the malwareStateForWindowsDevice object. + * List of devices affected by current malware with the malware state on each device * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the malwareStateForWindowsDevice object. + * List of devices affected by current malware with the malware state on each device * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a malwareStateForWindowsDevice object. + * Update the navigation property deviceMalwareStates in deviceManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a malwareStateForWindowsDevice object. + * Update the navigation property deviceMalwareStates in deviceManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public MalwareStateForWindowsDeviceItemRequestBuilder withUrl(@jakarta.annotatio public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the malwareStateForWindowsDevice object. + * List of devices affected by current malware with the malware state on each device */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devices/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devices/delta/DeltaRequestBuilder.java index ce32e9ab7ce..b82e4594ff1 100644 --- a/src/main/java/com/microsoft/graph/generated/devices/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devices/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/devices/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Get newly created, updated, or deleted devices without performing a full read of the entire resource collection. For more information, see Using delta query. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Get newly created, updated, or deleted devices without performing a full read of the entire resource collection. For more information, see Using delta query. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Get newly created, updated, or deleted devices without performing a full read of the entire resource collection. For more information, see Using delta query. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Get newly created, updated, or deleted devices without performing a full read of the entire resource collection. For more information, see Using delta query. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Get newly created, updated, or deleted devices without performing a full read of the entire resource collection. For more information, see Using delta query. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devices/item/memberof/MemberOfRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devices/item/memberof/MemberOfRequestBuilder.java index b8965f19a36..2068475c743 100644 --- a/src/main/java/com/microsoft/graph/generated/devices/item/memberof/MemberOfRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devices/item/memberof/MemberOfRequestBuilder.java @@ -80,7 +80,6 @@ public MemberOfRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ * Groups and administrative units that this device is a member of. Read-only. Nullable. Supports $expand. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get() { @@ -91,7 +90,6 @@ public DirectoryObjectCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/devices/item/registeredowners/RegisteredOwnersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devices/item/registeredowners/RegisteredOwnersRequestBuilder.java index 9844c760bf4..285f61dd501 100644 --- a/src/main/java/com/microsoft/graph/generated/devices/item/registeredowners/RegisteredOwnersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devices/item/registeredowners/RegisteredOwnersRequestBuilder.java @@ -107,7 +107,6 @@ public RegisteredOwnersRequestBuilder(@jakarta.annotation.Nonnull final String r * The user that cloud joined the device or registered their personal device. The registered owner is set at the time of registration. Read-only. Nullable. Supports $expand. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get() { @@ -118,7 +117,6 @@ public DirectoryObjectCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/devices/item/registeredowners/item/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devices/item/registeredowners/item/ref/RefRequestBuilder.java index 8e485698c7b..2364875074b 100644 --- a/src/main/java/com/microsoft/graph/generated/devices/item/registeredowners/item/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devices/item/registeredowners/item/ref/RefRequestBuilder.java @@ -35,18 +35,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/devices/{device%2Did}/registeredOwners/{directoryObject%2Did}/$ref", rawUrl); } /** - * Remove a user as a registered owner of the device. + * Delete ref of navigation property registeredOwners for devices * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove a user as a registered owner of the device. + * Delete ref of navigation property registeredOwners for devices * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -55,7 +53,7 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove a user as a registered owner of the device. + * Delete ref of navigation property registeredOwners for devices * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -63,7 +61,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove a user as a registered owner of the device. + * Delete ref of navigation property registeredOwners for devices * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/devices/item/registeredowners/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devices/item/registeredowners/ref/RefRequestBuilder.java index a8db001f7d6..3786344d4bd 100644 --- a/src/main/java/com/microsoft/graph/generated/devices/item/registeredowners/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devices/item/registeredowners/ref/RefRequestBuilder.java @@ -38,18 +38,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/devices/{device%2Did}/registeredOwners/$ref?@id={%40id}{&%24count,%24filter,%24orderby,%24search,%24skip,%24top}", rawUrl); } /** - * Remove a user as a registered owner of the device. + * Delete ref of navigation property registeredOwners for devices * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove a user as a registered owner of the device. + * Delete ref of navigation property registeredOwners for devices * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -61,7 +59,6 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume * The user that cloud joined the device or registered their personal device. The registered owner is set at the time of registration. Read-only. Nullable. Supports $expand. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get() { @@ -72,7 +69,6 @@ public StringCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -82,20 +78,18 @@ public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util return this.requestAdapter.send(requestInfo, errorMapping, StringCollectionResponse::createFromDiscriminatorValue); } /** - * Add a user as a registered owner of the device. + * Create new navigation property ref to registeredOwners for devices * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body) { post(body, null); } /** - * Add a user as a registered owner of the device. + * Create new navigation property ref to registeredOwners for devices * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { Objects.requireNonNull(body); @@ -105,7 +99,7 @@ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakart this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove a user as a registered owner of the device. + * Delete ref of navigation property registeredOwners for devices * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -113,7 +107,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove a user as a registered owner of the device. + * Delete ref of navigation property registeredOwners for devices * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add a user as a registered owner of the device. + * Create new navigation property ref to registeredOwners for devices * @param body The request body * @return a {@link RequestInformation} */ @@ -154,7 +148,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add a user as a registered owner of the device. + * Create new navigation property ref to registeredOwners for devices * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -179,7 +173,7 @@ public RefRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl return new RefRequestBuilder(rawUrl, requestAdapter); } /** - * Remove a user as a registered owner of the device. + * Delete ref of navigation property registeredOwners for devices */ @jakarta.annotation.Generated("com.microsoft.kiota") public class DeleteQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devices/item/registeredusers/RegisteredUsersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devices/item/registeredusers/RegisteredUsersRequestBuilder.java index 7dece949b86..80fc55883a0 100644 --- a/src/main/java/com/microsoft/graph/generated/devices/item/registeredusers/RegisteredUsersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devices/item/registeredusers/RegisteredUsersRequestBuilder.java @@ -107,7 +107,6 @@ public RegisteredUsersRequestBuilder(@jakarta.annotation.Nonnull final String ra * 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. Supports $expand. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get() { @@ -118,7 +117,6 @@ public DirectoryObjectCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/devices/item/registeredusers/item/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devices/item/registeredusers/item/ref/RefRequestBuilder.java index 586cce6c7ab..6da74b90c2a 100644 --- a/src/main/java/com/microsoft/graph/generated/devices/item/registeredusers/item/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devices/item/registeredusers/item/ref/RefRequestBuilder.java @@ -35,18 +35,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/devices/{device%2Did}/registeredUsers/{directoryObject%2Did}/$ref", rawUrl); } /** - * Remove a user as a registered user of the device. + * Delete ref of navigation property registeredUsers for devices * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove a user as a registered user of the device. + * Delete ref of navigation property registeredUsers for devices * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -55,7 +53,7 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove a user as a registered user of the device. + * Delete ref of navigation property registeredUsers for devices * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -63,7 +61,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove a user as a registered user of the device. + * Delete ref of navigation property registeredUsers for devices * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/devices/item/registeredusers/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devices/item/registeredusers/ref/RefRequestBuilder.java index f04d26f0ce5..598b856fa20 100644 --- a/src/main/java/com/microsoft/graph/generated/devices/item/registeredusers/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devices/item/registeredusers/ref/RefRequestBuilder.java @@ -38,18 +38,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/devices/{device%2Did}/registeredUsers/$ref?@id={%40id}{&%24count,%24filter,%24orderby,%24search,%24skip,%24top}", rawUrl); } /** - * Remove a user as a registered user of the device. + * Delete ref of navigation property registeredUsers for devices * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove a user as a registered user of the device. + * Delete ref of navigation property registeredUsers for devices * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -61,7 +59,6 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume * 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. Supports $expand. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get() { @@ -72,7 +69,6 @@ public StringCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -82,20 +78,18 @@ public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util return this.requestAdapter.send(requestInfo, errorMapping, StringCollectionResponse::createFromDiscriminatorValue); } /** - * Add a registered user for the device. + * Create new navigation property ref to registeredUsers for devices * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body) { post(body, null); } /** - * Add a registered user for the device. + * Create new navigation property ref to registeredUsers for devices * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { Objects.requireNonNull(body); @@ -105,7 +99,7 @@ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakart this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove a user as a registered user of the device. + * Delete ref of navigation property registeredUsers for devices * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -113,7 +107,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove a user as a registered user of the device. + * Delete ref of navigation property registeredUsers for devices * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add a registered user for the device. + * Create new navigation property ref to registeredUsers for devices * @param body The request body * @return a {@link RequestInformation} */ @@ -154,7 +148,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add a registered user for the device. + * Create new navigation property ref to registeredUsers for devices * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -179,7 +173,7 @@ public RefRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl return new RefRequestBuilder(rawUrl, requestAdapter); } /** - * Remove a user as a registered user of the device. + * Delete ref of navigation property registeredUsers for devices */ @jakarta.annotation.Generated("com.microsoft.kiota") public class DeleteQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/devices/item/transitivememberof/TransitiveMemberOfRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/devices/item/transitivememberof/TransitiveMemberOfRequestBuilder.java index e800d4ac3be..9bd055b4cec 100644 --- a/src/main/java/com/microsoft/graph/generated/devices/item/transitivememberof/TransitiveMemberOfRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/devices/item/transitivememberof/TransitiveMemberOfRequestBuilder.java @@ -80,7 +80,6 @@ public TransitiveMemberOfRequestBuilder(@jakarta.annotation.Nonnull final String * Groups and administrative units that the device is a member of. This operation is transitive. Supports $expand. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get() { @@ -91,7 +90,6 @@ public DirectoryObjectCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/directory/administrativeunits/AdministrativeUnitsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/directory/administrativeunits/AdministrativeUnitsRequestBuilder.java index d85aaf55309..8c73679d628 100644 --- a/src/main/java/com/microsoft/graph/generated/directory/administrativeunits/AdministrativeUnitsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/directory/administrativeunits/AdministrativeUnitsRequestBuilder.java @@ -69,21 +69,19 @@ public AdministrativeUnitsRequestBuilder(@jakarta.annotation.Nonnull final Strin super(requestAdapter, "{+baseurl}/directory/administrativeUnits{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of administrativeUnit objects. + * Conceptual container for user and group directory objects. * @return a {@link AdministrativeUnitCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AdministrativeUnitCollectionResponse get() { return get(null); } /** - * Retrieve a list of administrativeUnit objects. + * Conceptual container for user and group directory objects. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AdministrativeUnitCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AdministrativeUnitCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public AdministrativeUnitCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, AdministrativeUnitCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to create a new administrativeUnit. + * Create new navigation property to administrativeUnits for directory * @param body The request body * @return a {@link AdministrativeUnit} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AdministrativeUnit post(@jakarta.annotation.Nonnull final AdministrativeUnit body) { return post(body, null); } /** - * Use this API to create a new administrativeUnit. + * Create new navigation property to administrativeUnits for directory * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AdministrativeUnit} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AdministrativeUnit post(@jakarta.annotation.Nonnull final AdministrativeUnit body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public AdministrativeUnit post(@jakarta.annotation.Nonnull final AdministrativeU return this.requestAdapter.send(requestInfo, errorMapping, AdministrativeUnit::createFromDiscriminatorValue); } /** - * Retrieve a list of administrativeUnit objects. + * Conceptual container for user and group directory objects. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of administrativeUnit objects. + * Conceptual container for user and group directory objects. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to create a new administrativeUnit. + * Create new navigation property to administrativeUnits for directory * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to create a new administrativeUnit. + * Create new navigation property to administrativeUnits for directory * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public AdministrativeUnitsRequestBuilder withUrl(@jakarta.annotation.Nonnull fin return new AdministrativeUnitsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of administrativeUnit objects. + * Conceptual container for user and group directory objects. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/directory/administrativeunits/item/AdministrativeUnitItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/directory/administrativeunits/item/AdministrativeUnitItemRequestBuilder.java index 5cb99756aec..1e251d37d0c 100644 --- a/src/main/java/com/microsoft/graph/generated/directory/administrativeunits/item/AdministrativeUnitItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/directory/administrativeunits/item/AdministrativeUnitItemRequestBuilder.java @@ -64,18 +64,16 @@ public AdministrativeUnitItemRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/directory/administrativeUnits/{administrativeUnit%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an administrativeUnit. + * Delete navigation property administrativeUnits for directory * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an administrativeUnit. + * Delete navigation property administrativeUnits for directory * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -84,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of an administrativeUnit object. + * Conceptual container for user and group directory objects. * @return a {@link AdministrativeUnit} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AdministrativeUnit get() { return get(null); } /** - * Retrieve the properties and relationships of an administrativeUnit object. + * Conceptual container for user and group directory objects. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AdministrativeUnit} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AdministrativeUnit get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,23 +104,21 @@ public AdministrativeUnit get(@jakarta.annotation.Nullable final java.util.funct return this.requestAdapter.send(requestInfo, errorMapping, AdministrativeUnit::createFromDiscriminatorValue); } /** - * Update the properties of an administrativeUnit object. + * Update the navigation property administrativeUnits in directory * @param body The request body * @return a {@link AdministrativeUnit} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AdministrativeUnit patch(@jakarta.annotation.Nonnull final AdministrativeUnit body) { return patch(body, null); } /** - * Update the properties of an administrativeUnit object. + * Update the navigation property administrativeUnits in directory * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AdministrativeUnit} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AdministrativeUnit patch(@jakarta.annotation.Nonnull final AdministrativeUnit body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +129,7 @@ public AdministrativeUnit patch(@jakarta.annotation.Nonnull final Administrative return this.requestAdapter.send(requestInfo, errorMapping, AdministrativeUnit::createFromDiscriminatorValue); } /** - * Delete an administrativeUnit. + * Delete navigation property administrativeUnits for directory * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +137,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an administrativeUnit. + * Delete navigation property administrativeUnits for directory * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of an administrativeUnit object. + * Conceptual container for user and group directory objects. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -163,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of an administrativeUnit object. + * Conceptual container for user and group directory objects. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -175,7 +169,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an administrativeUnit object. + * Update the navigation property administrativeUnits in directory * @param body The request body * @return a {@link RequestInformation} */ @@ -184,7 +178,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an administrativeUnit object. + * Update the navigation property administrativeUnits in directory * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -215,7 +209,7 @@ public AdministrativeUnitItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of an administrativeUnit object. + * Conceptual container for user and group directory objects. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/directory/administrativeunits/item/members/MembersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/directory/administrativeunits/item/members/MembersRequestBuilder.java index abe0d027881..8276bff1a9f 100644 --- a/src/main/java/com/microsoft/graph/generated/directory/administrativeunits/item/members/MembersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/directory/administrativeunits/item/members/MembersRequestBuilder.java @@ -126,7 +126,6 @@ public MembersRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * Users and groups that are members of this administrative unit. Supports $expand. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get() { @@ -137,7 +136,6 @@ public DirectoryObjectCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -151,7 +149,6 @@ public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final * @param body The request body * @return a {@link DirectoryObject} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObject post(@jakarta.annotation.Nonnull final DirectoryObject body) { @@ -163,7 +160,6 @@ public DirectoryObject post(@jakarta.annotation.Nonnull final DirectoryObject bo * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DirectoryObject} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObject post(@jakarta.annotation.Nonnull final DirectoryObject body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/directory/administrativeunits/item/members/item/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/directory/administrativeunits/item/members/item/ref/RefRequestBuilder.java index 731c00cbbf9..1897350e4df 100644 --- a/src/main/java/com/microsoft/graph/generated/directory/administrativeunits/item/members/item/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/directory/administrativeunits/item/members/item/ref/RefRequestBuilder.java @@ -35,18 +35,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/directory/administrativeUnits/{administrativeUnit%2Did}/members/{directoryObject%2Did}/$ref", rawUrl); } /** - * Use this API to remove a member (user, group, or device) from an administrative unit. + * Delete ref of navigation property members for directory * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Use this API to remove a member (user, group, or device) from an administrative unit. + * Delete ref of navigation property members for directory * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -55,7 +53,7 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Use this API to remove a member (user, group, or device) from an administrative unit. + * Delete ref of navigation property members for directory * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -63,7 +61,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Use this API to remove a member (user, group, or device) from an administrative unit. + * Delete ref of navigation property members for directory * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/directory/administrativeunits/item/members/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/directory/administrativeunits/item/members/ref/RefRequestBuilder.java index 3ff498b5dcb..7ac83055594 100644 --- a/src/main/java/com/microsoft/graph/generated/directory/administrativeunits/item/members/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/directory/administrativeunits/item/members/ref/RefRequestBuilder.java @@ -38,18 +38,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/directory/administrativeUnits/{administrativeUnit%2Did}/members/$ref?@id={%40id}{&%24count,%24filter,%24orderby,%24search,%24skip,%24top}", rawUrl); } /** - * Use this API to remove a member (user, group, or device) from an administrative unit. + * Delete ref of navigation property members for directory * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Use this API to remove a member (user, group, or device) from an administrative unit. + * Delete ref of navigation property members for directory * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -61,7 +59,6 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume * Users and groups that are members of this administrative unit. Supports $expand. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get() { @@ -72,7 +69,6 @@ public StringCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -85,7 +81,6 @@ public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util * Create new navigation property ref to members for directory * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body) { post(body, null); @@ -95,7 +90,6 @@ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body) { * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { Objects.requireNonNull(body); @@ -105,7 +99,7 @@ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakart this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Use this API to remove a member (user, group, or device) from an administrative unit. + * Delete ref of navigation property members for directory * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -113,7 +107,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Use this API to remove a member (user, group, or device) from an administrative unit. + * Delete ref of navigation property members for directory * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -179,7 +173,7 @@ public RefRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl return new RefRequestBuilder(rawUrl, requestAdapter); } /** - * Use this API to remove a member (user, group, or device) from an administrative unit. + * Delete ref of navigation property members for directory */ @jakarta.annotation.Generated("com.microsoft.kiota") public class DeleteQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/directory/administrativeunits/item/scopedrolemembers/ScopedRoleMembersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/directory/administrativeunits/item/scopedrolemembers/ScopedRoleMembersRequestBuilder.java index 192571cad48..ae90fecb594 100644 --- a/src/main/java/com/microsoft/graph/generated/directory/administrativeunits/item/scopedrolemembers/ScopedRoleMembersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/directory/administrativeunits/item/scopedrolemembers/ScopedRoleMembersRequestBuilder.java @@ -60,21 +60,19 @@ public ScopedRoleMembersRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/directory/administrativeUnits/{administrativeUnit%2Did}/scopedRoleMembers{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List Microsoft Entra role assignments with administrative unit scope. + * Scoped-role members of this administrative unit. * @return a {@link ScopedRoleMembershipCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ScopedRoleMembershipCollectionResponse get() { return get(null); } /** - * List Microsoft Entra role assignments with administrative unit scope. + * Scoped-role members of this administrative unit. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ScopedRoleMembershipCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ScopedRoleMembershipCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public ScopedRoleMembershipCollectionResponse get(@jakarta.annotation.Nullable f return this.requestAdapter.send(requestInfo, errorMapping, ScopedRoleMembershipCollectionResponse::createFromDiscriminatorValue); } /** - * Assign a Microsoft Entra role with administrative unit scope. For a list of roles that can be assigned with administrative unit scope, see Assign Microsoft Entra roles with administrative unit scope. + * Create new navigation property to scopedRoleMembers for directory * @param body The request body * @return a {@link ScopedRoleMembership} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ScopedRoleMembership post(@jakarta.annotation.Nonnull final ScopedRoleMembership body) { return post(body, null); } /** - * Assign a Microsoft Entra role with administrative unit scope. For a list of roles that can be assigned with administrative unit scope, see Assign Microsoft Entra roles with administrative unit scope. + * Create new navigation property to scopedRoleMembers for directory * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ScopedRoleMembership} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ScopedRoleMembership post(@jakarta.annotation.Nonnull final ScopedRoleMembership body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public ScopedRoleMembership post(@jakarta.annotation.Nonnull final ScopedRoleMem return this.requestAdapter.send(requestInfo, errorMapping, ScopedRoleMembership::createFromDiscriminatorValue); } /** - * List Microsoft Entra role assignments with administrative unit scope. + * Scoped-role members of this administrative unit. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List Microsoft Entra role assignments with administrative unit scope. + * Scoped-role members of this administrative unit. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Assign a Microsoft Entra role with administrative unit scope. For a list of roles that can be assigned with administrative unit scope, see Assign Microsoft Entra roles with administrative unit scope. + * Create new navigation property to scopedRoleMembers for directory * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Assign a Microsoft Entra role with administrative unit scope. For a list of roles that can be assigned with administrative unit scope, see Assign Microsoft Entra roles with administrative unit scope. + * Create new navigation property to scopedRoleMembers for directory * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ScopedRoleMembersRequestBuilder withUrl(@jakarta.annotation.Nonnull final return new ScopedRoleMembersRequestBuilder(rawUrl, requestAdapter); } /** - * List Microsoft Entra role assignments with administrative unit scope. + * Scoped-role members of this administrative unit. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/directory/administrativeunits/item/scopedrolemembers/item/ScopedRoleMembershipItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/directory/administrativeunits/item/scopedrolemembers/item/ScopedRoleMembershipItemRequestBuilder.java index 3a89ff1d36d..5f5347f346f 100644 --- a/src/main/java/com/microsoft/graph/generated/directory/administrativeunits/item/scopedrolemembers/item/ScopedRoleMembershipItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/directory/administrativeunits/item/scopedrolemembers/item/ScopedRoleMembershipItemRequestBuilder.java @@ -37,18 +37,16 @@ public ScopedRoleMembershipItemRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/directory/administrativeUnits/{administrativeUnit%2Did}/scopedRoleMembers/{scopedRoleMembership%2Did}{?%24expand,%24select}", rawUrl); } /** - * Remove a Microsoft Entra role assignment with administrative unit scope. + * Delete navigation property scopedRoleMembers for directory * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove a Microsoft Entra role assignment with administrative unit scope. + * Delete navigation property scopedRoleMembers for directory * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get a Microsoft Entra role assignment with administrative unit scope. + * Scoped-role members of this administrative unit. * @return a {@link ScopedRoleMembership} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ScopedRoleMembership get() { return get(null); } /** - * Get a Microsoft Entra role assignment with administrative unit scope. + * Scoped-role members of this administrative unit. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ScopedRoleMembership} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ScopedRoleMembership get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -106,7 +102,7 @@ public ScopedRoleMembership patch(@jakarta.annotation.Nonnull final ScopedRoleMe return this.requestAdapter.send(requestInfo, errorMapping, ScopedRoleMembership::createFromDiscriminatorValue); } /** - * Remove a Microsoft Entra role assignment with administrative unit scope. + * Delete navigation property scopedRoleMembers for directory * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -114,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove a Microsoft Entra role assignment with administrative unit scope. + * Delete navigation property scopedRoleMembers for directory * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get a Microsoft Entra role assignment with administrative unit scope. + * Scoped-role members of this administrative unit. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a Microsoft Entra role assignment with administrative unit scope. + * Scoped-role members of this administrative unit. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public ScopedRoleMembershipItemRequestBuilder withUrl(@jakarta.annotation.Nonnul public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get a Microsoft Entra role assignment with administrative unit scope. + * Scoped-role members of this administrative unit. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/directory/attributesets/AttributeSetsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/directory/attributesets/AttributeSetsRequestBuilder.java index 6933cdbf9d2..57ea3a4c7b4 100644 --- a/src/main/java/com/microsoft/graph/generated/directory/attributesets/AttributeSetsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/directory/attributesets/AttributeSetsRequestBuilder.java @@ -60,21 +60,19 @@ public AttributeSetsRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/directory/attributeSets{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the attributeSet objects and their properties. + * Group of related custom security attribute definitions. * @return a {@link AttributeSetCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttributeSetCollectionResponse get() { return get(null); } /** - * Get a list of the attributeSet objects and their properties. + * Group of related custom security attribute definitions. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttributeSetCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttributeSetCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public AttributeSetCollectionResponse get(@jakarta.annotation.Nullable final jav return this.requestAdapter.send(requestInfo, errorMapping, AttributeSetCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new attributeSet object. + * Create new navigation property to attributeSets for directory * @param body The request body * @return a {@link AttributeSet} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttributeSet post(@jakarta.annotation.Nonnull final AttributeSet body) { return post(body, null); } /** - * Create a new attributeSet object. + * Create new navigation property to attributeSets for directory * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttributeSet} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttributeSet post(@jakarta.annotation.Nonnull final AttributeSet body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public AttributeSet post(@jakarta.annotation.Nonnull final AttributeSet body, @j return this.requestAdapter.send(requestInfo, errorMapping, AttributeSet::createFromDiscriminatorValue); } /** - * Get a list of the attributeSet objects and their properties. + * Group of related custom security attribute definitions. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the attributeSet objects and their properties. + * Group of related custom security attribute definitions. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new attributeSet object. + * Create new navigation property to attributeSets for directory * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new attributeSet object. + * Create new navigation property to attributeSets for directory * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public AttributeSetsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new AttributeSetsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the attributeSet objects and their properties. + * Group of related custom security attribute definitions. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/directory/attributesets/item/AttributeSetItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/directory/attributesets/item/AttributeSetItemRequestBuilder.java index 1944e5800d4..a40dfb7d7fb 100644 --- a/src/main/java/com/microsoft/graph/generated/directory/attributesets/item/AttributeSetItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/directory/attributesets/item/AttributeSetItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of an attributeSet object. + * Group of related custom security attribute definitions. * @return a {@link AttributeSet} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttributeSet get() { return get(null); } /** - * Read the properties and relationships of an attributeSet object. + * Group of related custom security attribute definitions. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttributeSet} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttributeSet get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public AttributeSet get(@jakarta.annotation.Nullable final java.util.function.Co return this.requestAdapter.send(requestInfo, errorMapping, AttributeSet::createFromDiscriminatorValue); } /** - * Update the properties of an attributeSet object. + * Update the navigation property attributeSets in directory * @param body The request body * @return a {@link AttributeSet} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttributeSet patch(@jakarta.annotation.Nonnull final AttributeSet body) { return patch(body, null); } /** - * Update the properties of an attributeSet object. + * Update the navigation property attributeSets in directory * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttributeSet} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttributeSet patch(@jakarta.annotation.Nonnull final AttributeSet body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of an attributeSet object. + * Group of related custom security attribute definitions. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of an attributeSet object. + * Group of related custom security attribute definitions. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an attributeSet object. + * Update the navigation property attributeSets in directory * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an attributeSet object. + * Update the navigation property attributeSets in directory * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public AttributeSetItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of an attributeSet object. + * Group of related custom security attribute definitions. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/directory/customsecurityattributedefinitions/CustomSecurityAttributeDefinitionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/directory/customsecurityattributedefinitions/CustomSecurityAttributeDefinitionsRequestBuilder.java index 120610c6cec..b6a48afa5e9 100644 --- a/src/main/java/com/microsoft/graph/generated/directory/customsecurityattributedefinitions/CustomSecurityAttributeDefinitionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/directory/customsecurityattributedefinitions/CustomSecurityAttributeDefinitionsRequestBuilder.java @@ -60,21 +60,19 @@ public CustomSecurityAttributeDefinitionsRequestBuilder(@jakarta.annotation.Nonn super(requestAdapter, "{+baseurl}/directory/customSecurityAttributeDefinitions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the customSecurityAttributeDefinition objects and their properties. + * Schema of a custom security attributes (key-value pairs). * @return a {@link CustomSecurityAttributeDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CustomSecurityAttributeDefinitionCollectionResponse get() { return get(null); } /** - * Get a list of the customSecurityAttributeDefinition objects and their properties. + * Schema of a custom security attributes (key-value pairs). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CustomSecurityAttributeDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CustomSecurityAttributeDefinitionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public CustomSecurityAttributeDefinitionCollectionResponse get(@jakarta.annotati return this.requestAdapter.send(requestInfo, errorMapping, CustomSecurityAttributeDefinitionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new customSecurityAttributeDefinition object. + * Create new navigation property to customSecurityAttributeDefinitions for directory * @param body The request body * @return a {@link CustomSecurityAttributeDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CustomSecurityAttributeDefinition post(@jakarta.annotation.Nonnull final CustomSecurityAttributeDefinition body) { return post(body, null); } /** - * Create a new customSecurityAttributeDefinition object. + * Create new navigation property to customSecurityAttributeDefinitions for directory * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CustomSecurityAttributeDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CustomSecurityAttributeDefinition post(@jakarta.annotation.Nonnull final CustomSecurityAttributeDefinition body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public CustomSecurityAttributeDefinition post(@jakarta.annotation.Nonnull final return this.requestAdapter.send(requestInfo, errorMapping, CustomSecurityAttributeDefinition::createFromDiscriminatorValue); } /** - * Get a list of the customSecurityAttributeDefinition objects and their properties. + * Schema of a custom security attributes (key-value pairs). * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the customSecurityAttributeDefinition objects and their properties. + * Schema of a custom security attributes (key-value pairs). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new customSecurityAttributeDefinition object. + * Create new navigation property to customSecurityAttributeDefinitions for directory * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new customSecurityAttributeDefinition object. + * Create new navigation property to customSecurityAttributeDefinitions for directory * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public CustomSecurityAttributeDefinitionsRequestBuilder withUrl(@jakarta.annotat return new CustomSecurityAttributeDefinitionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the customSecurityAttributeDefinition objects and their properties. + * Schema of a custom security attributes (key-value pairs). */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/directory/customsecurityattributedefinitions/item/CustomSecurityAttributeDefinitionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/directory/customsecurityattributedefinitions/item/CustomSecurityAttributeDefinitionItemRequestBuilder.java index 6a4f924fbd8..d59340b2b60 100644 --- a/src/main/java/com/microsoft/graph/generated/directory/customsecurityattributedefinitions/item/CustomSecurityAttributeDefinitionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/directory/customsecurityattributedefinitions/item/CustomSecurityAttributeDefinitionItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a customSecurityAttributeDefinition object. + * Schema of a custom security attributes (key-value pairs). * @return a {@link CustomSecurityAttributeDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CustomSecurityAttributeDefinition get() { return get(null); } /** - * Read the properties and relationships of a customSecurityAttributeDefinition object. + * Schema of a custom security attributes (key-value pairs). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CustomSecurityAttributeDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CustomSecurityAttributeDefinition get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -88,23 +86,21 @@ public CustomSecurityAttributeDefinition get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, CustomSecurityAttributeDefinition::createFromDiscriminatorValue); } /** - * Update the properties of a customSecurityAttributeDefinition object. + * Update the navigation property customSecurityAttributeDefinitions in directory * @param body The request body * @return a {@link CustomSecurityAttributeDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CustomSecurityAttributeDefinition patch(@jakarta.annotation.Nonnull final CustomSecurityAttributeDefinition body) { return patch(body, null); } /** - * Update the properties of a customSecurityAttributeDefinition object. + * Update the navigation property customSecurityAttributeDefinitions in directory * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CustomSecurityAttributeDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CustomSecurityAttributeDefinition patch(@jakarta.annotation.Nonnull final CustomSecurityAttributeDefinition body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a customSecurityAttributeDefinition object. + * Schema of a custom security attributes (key-value pairs). * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a customSecurityAttributeDefinition object. + * Schema of a custom security attributes (key-value pairs). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a customSecurityAttributeDefinition object. + * Update the navigation property customSecurityAttributeDefinitions in directory * @param body The request body * @return a {@link RequestInformation} */ @@ -164,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a customSecurityAttributeDefinition object. + * Update the navigation property customSecurityAttributeDefinitions in directory * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -195,7 +191,7 @@ public CustomSecurityAttributeDefinitionItemRequestBuilder withUrl(@jakarta.anno public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a customSecurityAttributeDefinition object. + * Schema of a custom security attributes (key-value pairs). */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/directory/customsecurityattributedefinitions/item/allowedvalues/AllowedValuesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/directory/customsecurityattributedefinitions/item/allowedvalues/AllowedValuesRequestBuilder.java index d5fe61c4867..6d73e383987 100644 --- a/src/main/java/com/microsoft/graph/generated/directory/customsecurityattributedefinitions/item/allowedvalues/AllowedValuesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/directory/customsecurityattributedefinitions/item/allowedvalues/AllowedValuesRequestBuilder.java @@ -60,21 +60,19 @@ public AllowedValuesRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition%2Did}/allowedValues{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the allowedValue objects and their properties. + * Values that are predefined for this custom security attribute. This navigation property is not returned by default and must be specified in an $expand query. For example, /directory/customSecurityAttributeDefinitions?$expand=allowedValues. * @return a {@link AllowedValueCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AllowedValueCollectionResponse get() { return get(null); } /** - * Get a list of the allowedValue objects and their properties. + * Values that are predefined for this custom security attribute. This navigation property is not returned by default and must be specified in an $expand query. For example, /directory/customSecurityAttributeDefinitions?$expand=allowedValues. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AllowedValueCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AllowedValueCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public AllowedValueCollectionResponse get(@jakarta.annotation.Nullable final jav return this.requestAdapter.send(requestInfo, errorMapping, AllowedValueCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new allowedValue object. + * Create new navigation property to allowedValues for directory * @param body The request body * @return a {@link AllowedValue} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AllowedValue post(@jakarta.annotation.Nonnull final AllowedValue body) { return post(body, null); } /** - * Create a new allowedValue object. + * Create new navigation property to allowedValues for directory * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AllowedValue} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AllowedValue post(@jakarta.annotation.Nonnull final AllowedValue body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public AllowedValue post(@jakarta.annotation.Nonnull final AllowedValue body, @j return this.requestAdapter.send(requestInfo, errorMapping, AllowedValue::createFromDiscriminatorValue); } /** - * Get a list of the allowedValue objects and their properties. + * Values that are predefined for this custom security attribute. This navigation property is not returned by default and must be specified in an $expand query. For example, /directory/customSecurityAttributeDefinitions?$expand=allowedValues. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the allowedValue objects and their properties. + * Values that are predefined for this custom security attribute. This navigation property is not returned by default and must be specified in an $expand query. For example, /directory/customSecurityAttributeDefinitions?$expand=allowedValues. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new allowedValue object. + * Create new navigation property to allowedValues for directory * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new allowedValue object. + * Create new navigation property to allowedValues for directory * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public AllowedValuesRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new AllowedValuesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the allowedValue objects and their properties. + * Values that are predefined for this custom security attribute. This navigation property is not returned by default and must be specified in an $expand query. For example, /directory/customSecurityAttributeDefinitions?$expand=allowedValues. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/directory/customsecurityattributedefinitions/item/allowedvalues/item/AllowedValueItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/directory/customsecurityattributedefinitions/item/allowedvalues/item/AllowedValueItemRequestBuilder.java index 4435c665efa..1ed848ae228 100644 --- a/src/main/java/com/microsoft/graph/generated/directory/customsecurityattributedefinitions/item/allowedvalues/item/AllowedValueItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/directory/customsecurityattributedefinitions/item/allowedvalues/item/AllowedValueItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of an allowedValue object. + * Values that are predefined for this custom security attribute. This navigation property is not returned by default and must be specified in an $expand query. For example, /directory/customSecurityAttributeDefinitions?$expand=allowedValues. * @return a {@link AllowedValue} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AllowedValue get() { return get(null); } /** - * Read the properties and relationships of an allowedValue object. + * Values that are predefined for this custom security attribute. This navigation property is not returned by default and must be specified in an $expand query. For example, /directory/customSecurityAttributeDefinitions?$expand=allowedValues. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AllowedValue} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AllowedValue get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public AllowedValue get(@jakarta.annotation.Nullable final java.util.function.Co return this.requestAdapter.send(requestInfo, errorMapping, AllowedValue::createFromDiscriminatorValue); } /** - * Update the properties of an allowedValue object. + * Update the navigation property allowedValues in directory * @param body The request body * @return a {@link AllowedValue} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AllowedValue patch(@jakarta.annotation.Nonnull final AllowedValue body) { return patch(body, null); } /** - * Update the properties of an allowedValue object. + * Update the navigation property allowedValues in directory * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AllowedValue} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AllowedValue patch(@jakarta.annotation.Nonnull final AllowedValue body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of an allowedValue object. + * Values that are predefined for this custom security attribute. This navigation property is not returned by default and must be specified in an $expand query. For example, /directory/customSecurityAttributeDefinitions?$expand=allowedValues. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of an allowedValue object. + * Values that are predefined for this custom security attribute. This navigation property is not returned by default and must be specified in an $expand query. For example, /directory/customSecurityAttributeDefinitions?$expand=allowedValues. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an allowedValue object. + * Update the navigation property allowedValues in directory * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an allowedValue object. + * Update the navigation property allowedValues in directory * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public AllowedValueItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of an allowedValue object. + * Values that are predefined for this custom security attribute. This navigation property is not returned by default and must be specified in an $expand query. For example, /directory/customSecurityAttributeDefinitions?$expand=allowedValues. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/directory/deleteditems/DeletedItemsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/directory/deleteditems/DeletedItemsRequestBuilder.java index e1b3db84a2a..c7def3019fe 100644 --- a/src/main/java/com/microsoft/graph/generated/directory/deleteditems/DeletedItemsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/directory/deleteditems/DeletedItemsRequestBuilder.java @@ -140,7 +140,7 @@ public DeletedItemsRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/directory/deletedItems{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the properties of a recently deleted application, group, servicePrincipal, administrative unit, or user object from deleted items. + * Recently deleted items. Read-only. Nullable. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -149,7 +149,7 @@ public DirectoryObjectCollectionResponse get() { return get(null); } /** - * Retrieve the properties of a recently deleted application, group, servicePrincipal, administrative unit, or user object from deleted items. + * Recently deleted items. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -162,7 +162,7 @@ public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, DirectoryObjectCollectionResponse::createFromDiscriminatorValue); } /** - * Retrieve the properties of a recently deleted application, group, servicePrincipal, administrative unit, or user object from deleted items. + * Recently deleted items. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -170,7 +170,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties of a recently deleted application, group, servicePrincipal, administrative unit, or user object from deleted items. + * Recently deleted items. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -192,7 +192,7 @@ public DeletedItemsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri return new DeletedItemsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the properties of a recently deleted application, group, servicePrincipal, administrative unit, or user object from deleted items. + * Recently deleted items. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/directory/deleteditems/item/DirectoryObjectItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/directory/deleteditems/item/DirectoryObjectItemRequestBuilder.java index 5dc8ad436c9..5dffead97be 100644 --- a/src/main/java/com/microsoft/graph/generated/directory/deleteditems/item/DirectoryObjectItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/directory/deleteditems/item/DirectoryObjectItemRequestBuilder.java @@ -138,7 +138,6 @@ public DirectoryObjectItemRequestBuilder(@jakarta.annotation.Nonnull final Strin /** * Delete navigation property deletedItems for directory * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); @@ -147,7 +146,6 @@ public void delete() { * Delete navigation property deletedItems for directory * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -156,21 +154,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties of a recently deleted application, group, servicePrincipal, administrative unit, or user object from deleted items. + * Recently deleted items. Read-only. Nullable. * @return a {@link DirectoryObject} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObject get() { return get(null); } /** - * Retrieve the properties of a recently deleted application, group, servicePrincipal, administrative unit, or user object from deleted items. + * Recently deleted items. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DirectoryObject} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObject get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -200,7 +196,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties of a recently deleted application, group, servicePrincipal, administrative unit, or user object from deleted items. + * Recently deleted items. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -208,7 +204,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties of a recently deleted application, group, servicePrincipal, administrative unit, or user object from deleted items. + * Recently deleted items. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -236,7 +232,7 @@ public DirectoryObjectItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fin public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties of a recently deleted application, group, servicePrincipal, administrative unit, or user object from deleted items. + * Recently deleted items. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/directory/devicelocalcredentials/DeviceLocalCredentialsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/directory/devicelocalcredentials/DeviceLocalCredentialsRequestBuilder.java index a51dd9e89ae..cc2bca5fad3 100644 --- a/src/main/java/com/microsoft/graph/generated/directory/devicelocalcredentials/DeviceLocalCredentialsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/directory/devicelocalcredentials/DeviceLocalCredentialsRequestBuilder.java @@ -60,21 +60,19 @@ public DeviceLocalCredentialsRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/directory/deviceLocalCredentials{?%24count,%24filter,%24orderby,%24search,%24select,%24top}", rawUrl); } /** - * Get a list of the deviceLocalCredentialInfo objects and their properties, excluding the credentials property. + * The credentials of the device's local administrator account backed up to Microsoft Entra ID. * @return a {@link DeviceLocalCredentialInfoCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceLocalCredentialInfoCollectionResponse get() { return get(null); } /** - * Get a list of the deviceLocalCredentialInfo objects and their properties, excluding the credentials property. + * The credentials of the device's local administrator account backed up to Microsoft Entra ID. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceLocalCredentialInfoCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceLocalCredentialInfoCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public DeviceLocalCredentialInfo post(@jakarta.annotation.Nonnull final DeviceLo return this.requestAdapter.send(requestInfo, errorMapping, DeviceLocalCredentialInfo::createFromDiscriminatorValue); } /** - * Get a list of the deviceLocalCredentialInfo objects and their properties, excluding the credentials property. + * The credentials of the device's local administrator account backed up to Microsoft Entra ID. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the deviceLocalCredentialInfo objects and their properties, excluding the credentials property. + * The credentials of the device's local administrator account backed up to Microsoft Entra ID. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public DeviceLocalCredentialsRequestBuilder withUrl(@jakarta.annotation.Nonnull return new DeviceLocalCredentialsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the deviceLocalCredentialInfo objects and their properties, excluding the credentials property. + * The credentials of the device's local administrator account backed up to Microsoft Entra ID. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/directory/devicelocalcredentials/item/DeviceLocalCredentialInfoItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/directory/devicelocalcredentials/item/DeviceLocalCredentialInfoItemRequestBuilder.java index 7c1e5f4dbcb..326c61f1286 100644 --- a/src/main/java/com/microsoft/graph/generated/directory/devicelocalcredentials/item/DeviceLocalCredentialInfoItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/directory/devicelocalcredentials/item/DeviceLocalCredentialInfoItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties of a deviceLocalCredentialInfo for a specified device object. + * The credentials of the device's local administrator account backed up to Microsoft Entra ID. * @return a {@link DeviceLocalCredentialInfo} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceLocalCredentialInfo get() { return get(null); } /** - * Retrieve the properties of a deviceLocalCredentialInfo for a specified device object. + * The credentials of the device's local administrator account backed up to Microsoft Entra ID. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceLocalCredentialInfo} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceLocalCredentialInfo get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties of a deviceLocalCredentialInfo for a specified device object. + * The credentials of the device's local administrator account backed up to Microsoft Entra ID. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties of a deviceLocalCredentialInfo for a specified device object. + * The credentials of the device's local administrator account backed up to Microsoft Entra ID. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public DeviceLocalCredentialInfoItemRequestBuilder withUrl(@jakarta.annotation.N public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties of a deviceLocalCredentialInfo for a specified device object. + * The credentials of the device's local administrator account backed up to Microsoft Entra ID. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/directory/federationconfigurations/availableprovidertypes/AvailableProviderTypesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/directory/federationconfigurations/availableprovidertypes/AvailableProviderTypesRequestBuilder.java index 42cbec51a32..ef20780286b 100644 --- a/src/main/java/com/microsoft/graph/generated/directory/federationconfigurations/availableprovidertypes/AvailableProviderTypesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/directory/federationconfigurations/availableprovidertypes/AvailableProviderTypesRequestBuilder.java @@ -36,19 +36,21 @@ public AvailableProviderTypesRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/directory/federationConfigurations/availableProviderTypes(){?%24count,%24filter,%24search,%24skip,%24top}", rawUrl); } /** - * Invoke function availableProviderTypes + * Get all identity providers supported in a directory. * @return a {@link AvailableProviderTypesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public AvailableProviderTypesGetResponse get() { return get(null); } /** - * Invoke function availableProviderTypes + * Get all identity providers supported in a directory. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AvailableProviderTypesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public AvailableProviderTypesGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public AvailableProviderTypesGetResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, AvailableProviderTypesGetResponse::createFromDiscriminatorValue); } /** - * Invoke function availableProviderTypes + * Get all identity providers supported in a directory. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function availableProviderTypes + * Get all identity providers supported in a directory. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public AvailableProviderTypesRequestBuilder withUrl(@jakarta.annotation.Nonnull return new AvailableProviderTypesRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function availableProviderTypes + * Get all identity providers supported in a directory. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/directory/federationconfigurations/item/IdentityProviderBaseItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/directory/federationconfigurations/item/IdentityProviderBaseItemRequestBuilder.java index 3614d3ce250..95b282b2057 100644 --- a/src/main/java/com/microsoft/graph/generated/directory/federationconfigurations/item/IdentityProviderBaseItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/directory/federationconfigurations/item/IdentityProviderBaseItemRequestBuilder.java @@ -37,18 +37,16 @@ public IdentityProviderBaseItemRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/directory/federationConfigurations/{identityProviderBase%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a samlOrWsFedExternalDomainFederation object. + * Delete navigation property federationConfigurations for directory * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a samlOrWsFedExternalDomainFederation object. + * Delete navigation property federationConfigurations for directory * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -104,7 +102,7 @@ public IdentityProviderBase patch(@jakarta.annotation.Nonnull final IdentityProv return this.requestAdapter.send(requestInfo, errorMapping, IdentityProviderBase::createFromDiscriminatorValue); } /** - * Delete a samlOrWsFedExternalDomainFederation object. + * Delete navigation property federationConfigurations for directory * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -112,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a samlOrWsFedExternalDomainFederation object. + * Delete navigation property federationConfigurations for directory * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/directory/onpremisessynchronization/OnPremisesSynchronizationRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/directory/onpremisessynchronization/OnPremisesSynchronizationRequestBuilder.java index 4ada1986df2..6f0e438d13f 100644 --- a/src/main/java/com/microsoft/graph/generated/directory/onpremisessynchronization/OnPremisesSynchronizationRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/directory/onpremisessynchronization/OnPremisesSynchronizationRequestBuilder.java @@ -60,7 +60,7 @@ public OnPremisesSynchronizationRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/directory/onPremisesSynchronization{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Read the properties and relationships of an onPremisesDirectorySynchronization object. + * A container for on-premises directory synchronization functionalities that are available for the organization. * @return a {@link OnPremisesDirectorySynchronizationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public OnPremisesDirectorySynchronizationCollectionResponse get() { return get(null); } /** - * Read the properties and relationships of an onPremisesDirectorySynchronization object. + * A container for on-premises directory synchronization functionalities that are available for the organization. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnPremisesDirectorySynchronizationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public OnPremisesDirectorySynchronization post(@jakarta.annotation.Nonnull final return this.requestAdapter.send(requestInfo, errorMapping, OnPremisesDirectorySynchronization::createFromDiscriminatorValue); } /** - * Read the properties and relationships of an onPremisesDirectorySynchronization object. + * A container for on-premises directory synchronization functionalities that are available for the organization. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of an onPremisesDirectorySynchronization object. + * A container for on-premises directory synchronization functionalities that are available for the organization. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public OnPremisesSynchronizationRequestBuilder withUrl(@jakarta.annotation.Nonnu return new OnPremisesSynchronizationRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of an onPremisesDirectorySynchronization object. + * A container for on-premises directory synchronization functionalities that are available for the organization. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/directory/onpremisessynchronization/item/OnPremisesDirectorySynchronizationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/directory/onpremisessynchronization/item/OnPremisesDirectorySynchronizationItemRequestBuilder.java index 873aaca99d2..26e49c168ba 100644 --- a/src/main/java/com/microsoft/graph/generated/directory/onpremisessynchronization/item/OnPremisesDirectorySynchronizationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/directory/onpremisessynchronization/item/OnPremisesDirectorySynchronizationItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of an onPremisesDirectorySynchronization object. + * A container for on-premises directory synchronization functionalities that are available for the organization. * @return a {@link OnPremisesDirectorySynchronization} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnPremisesDirectorySynchronization get() { return get(null); } /** - * Read the properties and relationships of an onPremisesDirectorySynchronization object. + * A container for on-premises directory synchronization functionalities that are available for the organization. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnPremisesDirectorySynchronization} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnPremisesDirectorySynchronization get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public OnPremisesDirectorySynchronization get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, OnPremisesDirectorySynchronization::createFromDiscriminatorValue); } /** - * Update the properties of an onPremisesDirectorySynchronization object. + * Update the navigation property onPremisesSynchronization in directory * @param body The request body * @return a {@link OnPremisesDirectorySynchronization} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnPremisesDirectorySynchronization patch(@jakarta.annotation.Nonnull final OnPremisesDirectorySynchronization body) { return patch(body, null); } /** - * Update the properties of an onPremisesDirectorySynchronization object. + * Update the navigation property onPremisesSynchronization in directory * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnPremisesDirectorySynchronization} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnPremisesDirectorySynchronization patch(@jakarta.annotation.Nonnull final OnPremisesDirectorySynchronization body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of an onPremisesDirectorySynchronization object. + * A container for on-premises directory synchronization functionalities that are available for the organization. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of an onPremisesDirectorySynchronization object. + * A container for on-premises directory synchronization functionalities that are available for the organization. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an onPremisesDirectorySynchronization object. + * Update the navigation property onPremisesSynchronization in directory * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an onPremisesDirectorySynchronization object. + * Update the navigation property onPremisesSynchronization in directory * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public OnPremisesDirectorySynchronizationItemRequestBuilder withUrl(@jakarta.ann public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of an onPremisesDirectorySynchronization object. + * A container for on-premises directory synchronization functionalities that are available for the organization. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/directoryobjects/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/directoryobjects/delta/DeltaRequestBuilder.java index a26b74aae49..388093ec24b 100644 --- a/src/main/java/com/microsoft/graph/generated/directoryobjects/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/directoryobjects/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/directoryObjects/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Get newly created, updated, or deleted directory objects without performing a full read of the entire directoryObject collection. For more information about the delta function, see Use delta query to track changes in Microsoft Graph data for details. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Get newly created, updated, or deleted directory objects without performing a full read of the entire directoryObject collection. For more information about the delta function, see Use delta query to track changes in Microsoft Graph data for details. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Get newly created, updated, or deleted directory objects without performing a full read of the entire directoryObject collection. For more information about the delta function, see Use delta query to track changes in Microsoft Graph data for details. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Get newly created, updated, or deleted directory objects without performing a full read of the entire directoryObject collection. For more information about the delta function, see Use delta query to track changes in Microsoft Graph data for details. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Get newly created, updated, or deleted directory objects without performing a full read of the entire directoryObject collection. For more information about the delta function, see Use delta query to track changes in Microsoft Graph data for details. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/directoryroles/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/directoryroles/delta/DeltaRequestBuilder.java index 077cded031d..a95f44c1b79 100644 --- a/src/main/java/com/microsoft/graph/generated/directoryroles/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/directoryroles/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/directoryRoles/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Get newly created, updated, or deleted directory roles without having to perform a full read of the entire resource collection. See Using Delta Query for details. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Get newly created, updated, or deleted directory roles without having to perform a full read of the entire resource collection. See Using Delta Query for details. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Get newly created, updated, or deleted directory roles without having to perform a full read of the entire resource collection. See Using Delta Query for details. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Get newly created, updated, or deleted directory roles without having to perform a full read of the entire resource collection. See Using Delta Query for details. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Get newly created, updated, or deleted directory roles without having to perform a full read of the entire resource collection. See Using Delta Query for details. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/directoryroles/item/members/MembersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/directoryroles/item/members/MembersRequestBuilder.java index 7a1edb0820d..2be0c3f9825 100644 --- a/src/main/java/com/microsoft/graph/generated/directoryroles/item/members/MembersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/directoryroles/item/members/MembersRequestBuilder.java @@ -125,7 +125,6 @@ public MembersRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * Users that are members of this directory role. HTTP Methods: GET, POST, DELETE. Read-only. Nullable. Supports $expand. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get() { @@ -136,7 +135,6 @@ public DirectoryObjectCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/directoryroles/item/members/item/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/directoryroles/item/members/item/ref/RefRequestBuilder.java index b48278ee944..4b934461065 100644 --- a/src/main/java/com/microsoft/graph/generated/directoryroles/item/members/item/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/directoryroles/item/members/item/ref/RefRequestBuilder.java @@ -35,18 +35,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/directoryRoles/{directoryRole%2Did}/members/{directoryObject%2Did}/$ref", rawUrl); } /** - * Remove a member from a directoryRole. You can use both the object ID and template ID of the directoryRole with this API. The template ID of a built-in role is immutable and can be seen in the role description on the Microsoft Entra admin center. For details, see Role template IDs. + * Delete ref of navigation property members for directoryRoles * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove a member from a directoryRole. You can use both the object ID and template ID of the directoryRole with this API. The template ID of a built-in role is immutable and can be seen in the role description on the Microsoft Entra admin center. For details, see Role template IDs. + * Delete ref of navigation property members for directoryRoles * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -55,7 +53,7 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove a member from a directoryRole. You can use both the object ID and template ID of the directoryRole with this API. The template ID of a built-in role is immutable and can be seen in the role description on the Microsoft Entra admin center. For details, see Role template IDs. + * Delete ref of navigation property members for directoryRoles * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -63,7 +61,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove a member from a directoryRole. You can use both the object ID and template ID of the directoryRole with this API. The template ID of a built-in role is immutable and can be seen in the role description on the Microsoft Entra admin center. For details, see Role template IDs. + * Delete ref of navigation property members for directoryRoles * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/directoryroles/item/members/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/directoryroles/item/members/ref/RefRequestBuilder.java index ea55c41ff1d..90f9c63b4e6 100644 --- a/src/main/java/com/microsoft/graph/generated/directoryroles/item/members/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/directoryroles/item/members/ref/RefRequestBuilder.java @@ -38,18 +38,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/directoryRoles/{directoryRole%2Did}/members/$ref?@id={%40id}{&%24count,%24filter,%24orderby,%24search,%24skip,%24top}", rawUrl); } /** - * Remove a member from a directoryRole. You can use both the object ID and template ID of the directoryRole with this API. The template ID of a built-in role is immutable and can be seen in the role description on the Microsoft Entra admin center. For details, see Role template IDs. + * Delete ref of navigation property members for directoryRoles * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove a member from a directoryRole. You can use both the object ID and template ID of the directoryRole with this API. The template ID of a built-in role is immutable and can be seen in the role description on the Microsoft Entra admin center. For details, see Role template IDs. + * Delete ref of navigation property members for directoryRoles * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -61,7 +59,6 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume * Users that are members of this directory role. HTTP Methods: GET, POST, DELETE. Read-only. Nullable. Supports $expand. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get() { @@ -72,7 +69,6 @@ public StringCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -82,20 +78,18 @@ public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util return this.requestAdapter.send(requestInfo, errorMapping, StringCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new directory role member. You can use both the object ID and template ID of the directoryRole with this API. The template ID of a built-in role is immutable and can be seen in the role description on the Microsoft Entra admin center. For details, see Role template IDs. + * Create new navigation property ref to members for directoryRoles * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body) { post(body, null); } /** - * Create a new directory role member. You can use both the object ID and template ID of the directoryRole with this API. The template ID of a built-in role is immutable and can be seen in the role description on the Microsoft Entra admin center. For details, see Role template IDs. + * Create new navigation property ref to members for directoryRoles * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { Objects.requireNonNull(body); @@ -105,7 +99,7 @@ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakart this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove a member from a directoryRole. You can use both the object ID and template ID of the directoryRole with this API. The template ID of a built-in role is immutable and can be seen in the role description on the Microsoft Entra admin center. For details, see Role template IDs. + * Delete ref of navigation property members for directoryRoles * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -113,7 +107,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove a member from a directoryRole. You can use both the object ID and template ID of the directoryRole with this API. The template ID of a built-in role is immutable and can be seen in the role description on the Microsoft Entra admin center. For details, see Role template IDs. + * Delete ref of navigation property members for directoryRoles * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new directory role member. You can use both the object ID and template ID of the directoryRole with this API. The template ID of a built-in role is immutable and can be seen in the role description on the Microsoft Entra admin center. For details, see Role template IDs. + * Create new navigation property ref to members for directoryRoles * @param body The request body * @return a {@link RequestInformation} */ @@ -154,7 +148,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new directory role member. You can use both the object ID and template ID of the directoryRole with this API. The template ID of a built-in role is immutable and can be seen in the role description on the Microsoft Entra admin center. For details, see Role template IDs. + * Create new navigation property ref to members for directoryRoles * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -179,7 +173,7 @@ public RefRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl return new RefRequestBuilder(rawUrl, requestAdapter); } /** - * Remove a member from a directoryRole. You can use both the object ID and template ID of the directoryRole with this API. The template ID of a built-in role is immutable and can be seen in the role description on the Microsoft Entra admin center. For details, see Role template IDs. + * Delete ref of navigation property members for directoryRoles */ @jakarta.annotation.Generated("com.microsoft.kiota") public class DeleteQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/directoryroles/item/scopedmembers/ScopedMembersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/directoryroles/item/scopedmembers/ScopedMembersRequestBuilder.java index 5424c55b147..bb7e8e900b1 100644 --- a/src/main/java/com/microsoft/graph/generated/directoryroles/item/scopedmembers/ScopedMembersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/directoryroles/item/scopedmembers/ScopedMembersRequestBuilder.java @@ -60,21 +60,19 @@ public ScopedMembersRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/directoryRoles/{directoryRole%2Did}/scopedMembers{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of scopedRoleMembership objects for a directory role. + * Members of this directory role that are scoped to administrative units. Read-only. Nullable. * @return a {@link ScopedRoleMembershipCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ScopedRoleMembershipCollectionResponse get() { return get(null); } /** - * Retrieve a list of scopedRoleMembership objects for a directory role. + * Members of this directory role that are scoped to administrative units. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ScopedRoleMembershipCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ScopedRoleMembershipCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ScopedRoleMembership post(@jakarta.annotation.Nonnull final ScopedRoleMem return this.requestAdapter.send(requestInfo, errorMapping, ScopedRoleMembership::createFromDiscriminatorValue); } /** - * Retrieve a list of scopedRoleMembership objects for a directory role. + * Members of this directory role that are scoped to administrative units. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of scopedRoleMembership objects for a directory role. + * Members of this directory role that are scoped to administrative units. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public ScopedMembersRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new ScopedMembersRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of scopedRoleMembership objects for a directory role. + * Members of this directory role that are scoped to administrative units. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/directoryroletemplates/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/directoryroletemplates/delta/DeltaRequestBuilder.java index 97faccc6225..5c3edf728e7 100644 --- a/src/main/java/com/microsoft/graph/generated/directoryroletemplates/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/directoryroletemplates/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/directoryRoleTemplates/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Get newly created, updated, or deleted directory objects without performing a full read of the entire directoryObject collection. For more information about the delta function, see Use delta query to track changes in Microsoft Graph data for details. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Get newly created, updated, or deleted directory objects without performing a full read of the entire directoryObject collection. For more information about the delta function, see Use delta query to track changes in Microsoft Graph data for details. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Get newly created, updated, or deleted directory objects without performing a full read of the entire directoryObject collection. For more information about the delta function, see Use delta query to track changes in Microsoft Graph data for details. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Get newly created, updated, or deleted directory objects without performing a full read of the entire directoryObject collection. For more information about the delta function, see Use delta query to track changes in Microsoft Graph data for details. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Get newly created, updated, or deleted directory objects without performing a full read of the entire directoryObject collection. For more information about the delta function, see Use delta query to track changes in Microsoft Graph data for details. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/domains/item/domainnamereferences/DomainNameReferencesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/domains/item/domainnamereferences/DomainNameReferencesRequestBuilder.java index 7e1202b73fa..ec56301506f 100644 --- a/src/main/java/com/microsoft/graph/generated/domains/item/domainnamereferences/DomainNameReferencesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/domains/item/domainnamereferences/DomainNameReferencesRequestBuilder.java @@ -59,21 +59,19 @@ public DomainNameReferencesRequestBuilder(@jakarta.annotation.Nonnull final Stri super(requestAdapter, "{+baseurl}/domains/{domain%2Did}/domainNameReferences{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of directoryObject with a reference to the domain. The returned list will contain all directory objects that have a dependency on the domain. + * The objects such as users and groups that reference the domain ID. Read-only, Nullable. Supports $expand and $filter by the OData type of objects returned. For example /domains/{domainId}/domainNameReferences/microsoft.graph.user and /domains/{domainId}/domainNameReferences/microsoft.graph.group. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get() { return get(null); } /** - * Retrieve a list of directoryObject with a reference to the domain. The returned list will contain all directory objects that have a dependency on the domain. + * The objects such as users and groups that reference the domain ID. Read-only, Nullable. Supports $expand and $filter by the OData type of objects returned. For example /domains/{domainId}/domainNameReferences/microsoft.graph.user and /domains/{domainId}/domainNameReferences/microsoft.graph.group. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, DirectoryObjectCollectionResponse::createFromDiscriminatorValue); } /** - * Retrieve a list of directoryObject with a reference to the domain. The returned list will contain all directory objects that have a dependency on the domain. + * The objects such as users and groups that reference the domain ID. Read-only, Nullable. Supports $expand and $filter by the OData type of objects returned. For example /domains/{domainId}/domainNameReferences/microsoft.graph.user and /domains/{domainId}/domainNameReferences/microsoft.graph.group. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of directoryObject with a reference to the domain. The returned list will contain all directory objects that have a dependency on the domain. + * The objects such as users and groups that reference the domain ID. Read-only, Nullable. Supports $expand and $filter by the OData type of objects returned. For example /domains/{domainId}/domainNameReferences/microsoft.graph.user and /domains/{domainId}/domainNameReferences/microsoft.graph.group. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public DomainNameReferencesRequestBuilder withUrl(@jakarta.annotation.Nonnull fi return new DomainNameReferencesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of directoryObject with a reference to the domain. The returned list will contain all directory objects that have a dependency on the domain. + * The objects such as users and groups that reference the domain ID. Read-only, Nullable. Supports $expand and $filter by the OData type of objects returned. For example /domains/{domainId}/domainNameReferences/microsoft.graph.user and /domains/{domainId}/domainNameReferences/microsoft.graph.group. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/domains/item/federationconfiguration/FederationConfigurationRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/domains/item/federationconfiguration/FederationConfigurationRequestBuilder.java index 5ad1bea1934..cf4410018a6 100644 --- a/src/main/java/com/microsoft/graph/generated/domains/item/federationconfiguration/FederationConfigurationRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/domains/item/federationconfiguration/FederationConfigurationRequestBuilder.java @@ -60,21 +60,19 @@ public FederationConfigurationRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/domains/{domain%2Did}/federationConfiguration{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Read the properties of the internalDomainFederation objects for the domain. This API returns only one object in the collection. + * Domain settings configured by a customer when federated with Microsoft Entra ID. Supports $expand. * @return a {@link InternalDomainFederationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InternalDomainFederationCollectionResponse get() { return get(null); } /** - * Read the properties of the internalDomainFederation objects for the domain. This API returns only one object in the collection. + * Domain settings configured by a customer when federated with Microsoft Entra ID. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InternalDomainFederationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InternalDomainFederationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public InternalDomainFederationCollectionResponse get(@jakarta.annotation.Nullab return this.requestAdapter.send(requestInfo, errorMapping, InternalDomainFederationCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new internalDomainFederation object. + * Create new navigation property to federationConfiguration for domains * @param body The request body * @return a {@link InternalDomainFederation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InternalDomainFederation post(@jakarta.annotation.Nonnull final InternalDomainFederation body) { return post(body, null); } /** - * Create a new internalDomainFederation object. + * Create new navigation property to federationConfiguration for domains * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InternalDomainFederation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InternalDomainFederation post(@jakarta.annotation.Nonnull final InternalDomainFederation body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public InternalDomainFederation post(@jakarta.annotation.Nonnull final InternalD return this.requestAdapter.send(requestInfo, errorMapping, InternalDomainFederation::createFromDiscriminatorValue); } /** - * Read the properties of the internalDomainFederation objects for the domain. This API returns only one object in the collection. + * Domain settings configured by a customer when federated with Microsoft Entra ID. Supports $expand. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties of the internalDomainFederation objects for the domain. This API returns only one object in the collection. + * Domain settings configured by a customer when federated with Microsoft Entra ID. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new internalDomainFederation object. + * Create new navigation property to federationConfiguration for domains * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new internalDomainFederation object. + * Create new navigation property to federationConfiguration for domains * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public FederationConfigurationRequestBuilder withUrl(@jakarta.annotation.Nonnull return new FederationConfigurationRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties of the internalDomainFederation objects for the domain. This API returns only one object in the collection. + * Domain settings configured by a customer when federated with Microsoft Entra ID. Supports $expand. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/domains/item/federationconfiguration/item/InternalDomainFederationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/domains/item/federationconfiguration/item/InternalDomainFederationItemRequestBuilder.java index b187e804b5d..cc8c392217f 100644 --- a/src/main/java/com/microsoft/graph/generated/domains/item/federationconfiguration/item/InternalDomainFederationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/domains/item/federationconfiguration/item/InternalDomainFederationItemRequestBuilder.java @@ -37,18 +37,16 @@ public InternalDomainFederationItemRequestBuilder(@jakarta.annotation.Nonnull fi super(requestAdapter, "{+baseurl}/domains/{domain%2Did}/federationConfiguration/{internalDomainFederation%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an internalDomainFederation object. + * Delete navigation property federationConfiguration for domains * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an internalDomainFederation object. + * Delete navigation property federationConfiguration for domains * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of an internalDomainFederation object. + * Domain settings configured by a customer when federated with Microsoft Entra ID. Supports $expand. * @return a {@link InternalDomainFederation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InternalDomainFederation get() { return get(null); } /** - * Read the properties and relationships of an internalDomainFederation object. + * Domain settings configured by a customer when federated with Microsoft Entra ID. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InternalDomainFederation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InternalDomainFederation get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public InternalDomainFederation get(@jakarta.annotation.Nullable final java.util return this.requestAdapter.send(requestInfo, errorMapping, InternalDomainFederation::createFromDiscriminatorValue); } /** - * Update the properties of an internalDomainFederation object. + * Update the navigation property federationConfiguration in domains * @param body The request body * @return a {@link InternalDomainFederation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InternalDomainFederation patch(@jakarta.annotation.Nonnull final InternalDomainFederation body) { return patch(body, null); } /** - * Update the properties of an internalDomainFederation object. + * Update the navigation property federationConfiguration in domains * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InternalDomainFederation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InternalDomainFederation patch(@jakarta.annotation.Nonnull final InternalDomainFederation body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public InternalDomainFederation patch(@jakarta.annotation.Nonnull final Internal return this.requestAdapter.send(requestInfo, errorMapping, InternalDomainFederation::createFromDiscriminatorValue); } /** - * Delete an internalDomainFederation object. + * Delete navigation property federationConfiguration for domains * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an internalDomainFederation object. + * Delete navigation property federationConfiguration for domains * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of an internalDomainFederation object. + * Domain settings configured by a customer when federated with Microsoft Entra ID. Supports $expand. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of an internalDomainFederation object. + * Domain settings configured by a customer when federated with Microsoft Entra ID. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an internalDomainFederation object. + * Update the navigation property federationConfiguration in domains * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an internalDomainFederation object. + * Update the navigation property federationConfiguration in domains * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public InternalDomainFederationItemRequestBuilder withUrl(@jakarta.annotation.No public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of an internalDomainFederation object. + * Domain settings configured by a customer when federated with Microsoft Entra ID. Supports $expand. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/domains/item/serviceconfigurationrecords/ServiceConfigurationRecordsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/domains/item/serviceconfigurationrecords/ServiceConfigurationRecordsRequestBuilder.java index 22b0e8a09cb..fdab5998a16 100644 --- a/src/main/java/com/microsoft/graph/generated/domains/item/serviceconfigurationrecords/ServiceConfigurationRecordsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/domains/item/serviceconfigurationrecords/ServiceConfigurationRecordsRequestBuilder.java @@ -60,21 +60,19 @@ public ServiceConfigurationRecordsRequestBuilder(@jakarta.annotation.Nonnull fin super(requestAdapter, "{+baseurl}/domains/{domain%2Did}/serviceConfigurationRecords{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieves a list of domainDnsRecord objects needed to enable services for the domain. Use the returned list to add records to the zone file of the domain. This can be done through the domain registrar or DNS server configuration. + * 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. Supports $expand. * @return a {@link DomainDnsRecordCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DomainDnsRecordCollectionResponse get() { return get(null); } /** - * Retrieves a list of domainDnsRecord objects needed to enable services for the domain. Use the returned list to add records to the zone file of the domain. This can be done through the domain registrar or DNS server configuration. + * 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. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DomainDnsRecordCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DomainDnsRecordCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public DomainDnsRecord post(@jakarta.annotation.Nonnull final DomainDnsRecord bo return this.requestAdapter.send(requestInfo, errorMapping, DomainDnsRecord::createFromDiscriminatorValue); } /** - * Retrieves a list of domainDnsRecord objects needed to enable services for the domain. Use the returned list to add records to the zone file of the domain. This can be done through the domain registrar or DNS server configuration. + * 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. Supports $expand. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieves a list of domainDnsRecord objects needed to enable services for the domain. Use the returned list to add records to the zone file of the domain. This can be done through the domain registrar or DNS server configuration. + * 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. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public ServiceConfigurationRecordsRequestBuilder withUrl(@jakarta.annotation.Non return new ServiceConfigurationRecordsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieves a list of domainDnsRecord objects needed to enable services for the domain. Use the returned list to add records to the zone file of the domain. This can be done through the domain registrar or DNS server configuration. + * 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. Supports $expand. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/domains/item/verificationdnsrecords/VerificationDnsRecordsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/domains/item/verificationdnsrecords/VerificationDnsRecordsRequestBuilder.java index 32f3c6e1f9b..2a5b4751366 100644 --- a/src/main/java/com/microsoft/graph/generated/domains/item/verificationdnsrecords/VerificationDnsRecordsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/domains/item/verificationdnsrecords/VerificationDnsRecordsRequestBuilder.java @@ -60,21 +60,19 @@ public VerificationDnsRecordsRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/domains/{domain%2Did}/verificationDnsRecords{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of domainDnsRecord objects. You cannot use an associated domain with your Microsoft Entra tenant until ownership is verified. To verify the ownership of the domain, retrieve the domain verification records and add the details to the zone file of the domain. This can be done through the domain registrar or DNS server configuration. Root domains require verification. For example, contoso.com requires verification. If a root domain is verified, subdomains of the root domain are automatically verified. For example, subdomain.contoso.com is automatically be verified if contoso.com has been verified. + * DNS records that the customer adds to the DNS zone file of the domain before the customer can complete domain ownership verification with Microsoft Entra ID. Read-only, Nullable. Supports $expand. * @return a {@link DomainDnsRecordCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DomainDnsRecordCollectionResponse get() { return get(null); } /** - * Retrieve a list of domainDnsRecord objects. You cannot use an associated domain with your Microsoft Entra tenant until ownership is verified. To verify the ownership of the domain, retrieve the domain verification records and add the details to the zone file of the domain. This can be done through the domain registrar or DNS server configuration. Root domains require verification. For example, contoso.com requires verification. If a root domain is verified, subdomains of the root domain are automatically verified. For example, subdomain.contoso.com is automatically be verified if contoso.com has been verified. + * DNS records that the customer adds to the DNS zone file of the domain before the customer can complete domain ownership verification with Microsoft Entra ID. Read-only, Nullable. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DomainDnsRecordCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DomainDnsRecordCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public DomainDnsRecord post(@jakarta.annotation.Nonnull final DomainDnsRecord bo return this.requestAdapter.send(requestInfo, errorMapping, DomainDnsRecord::createFromDiscriminatorValue); } /** - * Retrieve a list of domainDnsRecord objects. You cannot use an associated domain with your Microsoft Entra tenant until ownership is verified. To verify the ownership of the domain, retrieve the domain verification records and add the details to the zone file of the domain. This can be done through the domain registrar or DNS server configuration. Root domains require verification. For example, contoso.com requires verification. If a root domain is verified, subdomains of the root domain are automatically verified. For example, subdomain.contoso.com is automatically be verified if contoso.com has been verified. + * DNS records that the customer adds to the DNS zone file of the domain before the customer can complete domain ownership verification with Microsoft Entra ID. Read-only, Nullable. Supports $expand. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of domainDnsRecord objects. You cannot use an associated domain with your Microsoft Entra tenant until ownership is verified. To verify the ownership of the domain, retrieve the domain verification records and add the details to the zone file of the domain. This can be done through the domain registrar or DNS server configuration. Root domains require verification. For example, contoso.com requires verification. If a root domain is verified, subdomains of the root domain are automatically verified. For example, subdomain.contoso.com is automatically be verified if contoso.com has been verified. + * DNS records that the customer adds to the DNS zone file of the domain before the customer can complete domain ownership verification with Microsoft Entra ID. Read-only, Nullable. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public VerificationDnsRecordsRequestBuilder withUrl(@jakarta.annotation.Nonnull return new VerificationDnsRecordsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of domainDnsRecord objects. You cannot use an associated domain with your Microsoft Entra tenant until ownership is verified. To verify the ownership of the domain, retrieve the domain verification records and add the details to the zone file of the domain. This can be done through the domain registrar or DNS server configuration. Root domains require verification. For example, contoso.com requires verification. If a root domain is verified, subdomains of the root domain are automatically verified. For example, subdomain.contoso.com is automatically be verified if contoso.com has been verified. + * DNS records that the customer adds to the DNS zone file of the domain before the customer can complete domain ownership verification with Microsoft Entra ID. Read-only, Nullable. Supports $expand. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/bundles/BundlesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/bundles/BundlesRequestBuilder.java index c35a15ae0aa..aaa30501afb 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/bundles/BundlesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/bundles/BundlesRequestBuilder.java @@ -60,7 +60,7 @@ public BundlesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/bundles{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Collection of [bundles][bundle] (albums and multi-select-shared sets of items). Only in personal OneDrive. + * Collection of bundles (albums and multi-select-shared sets of items). Only in personal OneDrive. * @return a {@link DriveItemCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public DriveItemCollectionResponse get() { return get(null); } /** - * Collection of [bundles][bundle] (albums and multi-select-shared sets of items). Only in personal OneDrive. + * Collection of bundles (albums and multi-select-shared sets of items). Only in personal OneDrive. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DriveItemCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public DriveItem post(@jakarta.annotation.Nonnull final DriveItem body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, DriveItem::createFromDiscriminatorValue); } /** - * Collection of [bundles][bundle] (albums and multi-select-shared sets of items). Only in personal OneDrive. + * Collection of bundles (albums and multi-select-shared sets of items). Only in personal OneDrive. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Collection of [bundles][bundle] (albums and multi-select-shared sets of items). Only in personal OneDrive. + * Collection of bundles (albums and multi-select-shared sets of items). Only in personal OneDrive. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public BundlesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new BundlesRequestBuilder(rawUrl, requestAdapter); } /** - * Collection of [bundles][bundle] (albums and multi-select-shared sets of items). Only in personal OneDrive. + * Collection of bundles (albums and multi-select-shared sets of items). Only in personal OneDrive. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/bundles/item/DriveItemItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/bundles/item/DriveItemItemRequestBuilder.java index ebc9be4a2a7..d138930cd0d 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/bundles/item/DriveItemItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/bundles/item/DriveItemItemRequestBuilder.java @@ -46,7 +46,7 @@ public DriveItemItemRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/bundles/{driveItem%2Did}{?%24expand,%24select}", rawUrl); } /** - * Collection of [bundles][bundle] (albums and multi-select-shared sets of items). Only in personal OneDrive. + * Collection of bundles (albums and multi-select-shared sets of items). Only in personal OneDrive. * @return a {@link DriveItem} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -55,7 +55,7 @@ public DriveItem get() { return get(null); } /** - * Collection of [bundles][bundle] (albums and multi-select-shared sets of items). Only in personal OneDrive. + * Collection of bundles (albums and multi-select-shared sets of items). Only in personal OneDrive. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DriveItem} * @throws ODataError When receiving a 4XX or 5XX status code @@ -68,7 +68,7 @@ public DriveItem get(@jakarta.annotation.Nullable final java.util.function.Consu return this.requestAdapter.send(requestInfo, errorMapping, DriveItem::createFromDiscriminatorValue); } /** - * Collection of [bundles][bundle] (albums and multi-select-shared sets of items). Only in personal OneDrive. + * Collection of bundles (albums and multi-select-shared sets of items). Only in personal OneDrive. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -76,7 +76,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Collection of [bundles][bundle] (albums and multi-select-shared sets of items). Only in personal OneDrive. + * Collection of bundles (albums and multi-select-shared sets of items). Only in personal OneDrive. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -98,7 +98,7 @@ public DriveItemItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new DriveItemItemRequestBuilder(rawUrl, requestAdapter); } /** - * Collection of [bundles][bundle] (albums and multi-select-shared sets of items). Only in personal OneDrive. + * Collection of bundles (albums and multi-select-shared sets of items). Only in personal OneDrive. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/following/FollowingRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/following/FollowingRequestBuilder.java index 3c17cf75fa4..a309937d48c 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/following/FollowingRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/following/FollowingRequestBuilder.java @@ -59,21 +59,19 @@ public FollowingRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/following{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List the items that have been followed by the signed in user.This collection includes items that are in the user's drive as well as items they have access to from other drives. + * The list of items the user is following. Only in OneDrive for Business. * @return a {@link DriveItemCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DriveItemCollectionResponse get() { return get(null); } /** - * List the items that have been followed by the signed in user.This collection includes items that are in the user's drive as well as items they have access to from other drives. + * The list of items the user is following. Only in OneDrive for Business. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DriveItemCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DriveItemCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public DriveItemCollectionResponse get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, DriveItemCollectionResponse::createFromDiscriminatorValue); } /** - * List the items that have been followed by the signed in user.This collection includes items that are in the user's drive as well as items they have access to from other drives. + * The list of items the user is following. Only in OneDrive for Business. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List the items that have been followed by the signed in user.This collection includes items that are in the user's drive as well as items they have access to from other drives. + * The list of items the user is following. Only in OneDrive for Business. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public FollowingRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new FollowingRequestBuilder(rawUrl, requestAdapter); } /** - * List the items that have been followed by the signed in user.This collection includes items that are in the user's drive as well as items they have access to from other drives. + * The list of items the user is following. Only in OneDrive for Business. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/following/item/content/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/following/item/content/ContentRequestBuilder.java index f45c46b8827..e9cdf024ece 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/following/item/content/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/following/item/content/ContentRequestBuilder.java @@ -41,7 +41,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * The content stream, if the item represents a file. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -52,7 +51,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/DriveItemItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/DriveItemItemRequestBuilder.java index bcf71099ade..b4c36790a7b 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/DriveItemItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/DriveItemItemRequestBuilder.java @@ -292,18 +292,16 @@ public DriveItemItemRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a DriveItem by using its ID or path.Deleting items using this method moves the items to the recycle bin instead of permanently deleting the item. + * Delete navigation property items for drives * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a DriveItem by using its ID or path.Deleting items using this method moves the items to the recycle bin instead of permanently deleting the item. + * Delete navigation property items for drives * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -358,23 +356,21 @@ public GetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithIntervalReques return new GetActivitiesByIntervalWithStartDateTimeWithEndDateTimeWithIntervalRequestBuilder(pathParameters, requestAdapter, endDateTime, interval, startDateTime); } /** - * Update the metadata for a driveItem by ID or path. You can also use update to move an item to another parent by updating the item's parentReference property. + * Update the navigation property items in drives * @param body The request body * @return a {@link DriveItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DriveItem patch(@jakarta.annotation.Nonnull final DriveItem body) { return patch(body, null); } /** - * Update the metadata for a driveItem by ID or path. You can also use update to move an item to another parent by updating the item's parentReference property. + * Update the navigation property items in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DriveItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DriveItem patch(@jakarta.annotation.Nonnull final DriveItem body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -395,7 +391,7 @@ public SearchWithQRequestBuilder searchWithQ(@jakarta.annotation.Nonnull final S return new SearchWithQRequestBuilder(pathParameters, requestAdapter, q); } /** - * Delete a DriveItem by using its ID or path.Deleting items using this method moves the items to the recycle bin instead of permanently deleting the item. + * Delete navigation property items for drives * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -403,7 +399,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a DriveItem by using its ID or path.Deleting items using this method moves the items to the recycle bin instead of permanently deleting the item. + * Delete navigation property items for drives * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -435,7 +431,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the metadata for a driveItem by ID or path. You can also use update to move an item to another parent by updating the item's parentReference property. + * Update the navigation property items in drives * @param body The request body * @return a {@link RequestInformation} */ @@ -444,7 +440,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the metadata for a driveItem by ID or path. You can also use update to move an item to another parent by updating the item's parentReference property. + * Update the navigation property items in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/analytics/alltime/AllTimeRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/analytics/alltime/AllTimeRequestBuilder.java index 87faa595f9d..02a0c3dbc85 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/analytics/alltime/AllTimeRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/analytics/alltime/AllTimeRequestBuilder.java @@ -37,21 +37,19 @@ public AllTimeRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/analytics/allTime{?%24expand,%24select}", rawUrl); } /** - * Get [itemAnalytics][] about the views that took place under this resource.The itemAnalytics resource is a convenient way to get activity stats for allTime and the lastSevenDays.For a custom time range or interval, use the [getActivitiesByInterval][] API. + * Get allTime from drives * @return a {@link ItemActivityStat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ItemActivityStat get() { return get(null); } /** - * Get [itemAnalytics][] about the views that took place under this resource.The itemAnalytics resource is a convenient way to get activity stats for allTime and the lastSevenDays.For a custom time range or interval, use the [getActivitiesByInterval][] API. + * Get allTime from drives * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ItemActivityStat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ItemActivityStat get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -61,7 +59,7 @@ public ItemActivityStat get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, ItemActivityStat::createFromDiscriminatorValue); } /** - * Get [itemAnalytics][] about the views that took place under this resource.The itemAnalytics resource is a convenient way to get activity stats for allTime and the lastSevenDays.For a custom time range or interval, use the [getActivitiesByInterval][] API. + * Get allTime from drives * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -69,7 +67,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get [itemAnalytics][] about the views that took place under this resource.The itemAnalytics resource is a convenient way to get activity stats for allTime and the lastSevenDays.For a custom time range or interval, use the [getActivitiesByInterval][] API. + * Get allTime from drives * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -91,7 +89,7 @@ public AllTimeRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new AllTimeRequestBuilder(rawUrl, requestAdapter); } /** - * Get [itemAnalytics][] about the views that took place under this resource.The itemAnalytics resource is a convenient way to get activity stats for allTime and the lastSevenDays.For a custom time range or interval, use the [getActivitiesByInterval][] API. + * Get allTime from drives */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/children/ChildrenRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/children/ChildrenRequestBuilder.java index b1ef4307694..13c1c21e5cf 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/children/ChildrenRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/children/ChildrenRequestBuilder.java @@ -60,21 +60,19 @@ public ChildrenRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/children{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Return a collection of DriveItems in the children relationship of a DriveItem. DriveItems with a non-null folder or package facet can have one or more child DriveItems. + * Collection containing Item objects for the immediate children of Item. Only items representing folders have children. Read-only. Nullable. * @return a {@link DriveItemCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DriveItemCollectionResponse get() { return get(null); } /** - * Return a collection of DriveItems in the children relationship of a DriveItem. DriveItems with a non-null folder or package facet can have one or more child DriveItems. + * Collection containing Item objects for the immediate children of Item. Only items representing folders have children. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DriveItemCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DriveItemCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -88,7 +86,6 @@ public DriveItemCollectionResponse get(@jakarta.annotation.Nullable final java.u * @param body The request body * @return a {@link DriveItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DriveItem post(@jakarta.annotation.Nonnull final DriveItem body) { @@ -100,7 +97,6 @@ public DriveItem post(@jakarta.annotation.Nonnull final DriveItem body) { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DriveItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DriveItem post(@jakarta.annotation.Nonnull final DriveItem body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public DriveItem post(@jakarta.annotation.Nonnull final DriveItem body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, DriveItem::createFromDiscriminatorValue); } /** - * Return a collection of DriveItems in the children relationship of a DriveItem. DriveItems with a non-null folder or package facet can have one or more child DriveItems. + * Collection containing Item objects for the immediate children of Item. Only items representing folders have children. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Return a collection of DriveItems in the children relationship of a DriveItem. DriveItems with a non-null folder or package facet can have one or more child DriveItems. + * Collection containing Item objects for the immediate children of Item. Only items representing folders have children. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -165,7 +161,7 @@ public ChildrenRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new ChildrenRequestBuilder(rawUrl, requestAdapter); } /** - * Return a collection of DriveItems in the children relationship of a DriveItem. DriveItems with a non-null folder or package facet can have one or more child DriveItems. + * Collection containing Item objects for the immediate children of Item. Only items representing folders have children. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/children/item/content/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/children/item/content/ContentRequestBuilder.java index 698dd5cc0d0..957865365f7 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/children/item/content/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/children/item/content/ContentRequestBuilder.java @@ -41,7 +41,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * The content stream, if the item represents a file. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -52,7 +51,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/copy/CopyRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/copy/CopyRequestBuilder.java index 20b3108ff18..ea705d5458c 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/copy/CopyRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/copy/CopyRequestBuilder.java @@ -36,7 +36,7 @@ public CopyRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/copy", rawUrl); } /** - * Asynchronously creates a copy of an [driveItem][item-resource] (including any children), under a new parent item or with a new name. + * Asynchronously creates a copy of an driveItem (including any children), under a new parent item or with a new name. * @param body The request body * @return a {@link DriveItem} * @throws ODataError When receiving a 4XX or 5XX status code @@ -47,7 +47,7 @@ public DriveItem post(@jakarta.annotation.Nonnull final CopyPostRequestBody body return post(body, null); } /** - * Asynchronously creates a copy of an [driveItem][item-resource] (including any children), under a new parent item or with a new name. + * Asynchronously creates a copy of an driveItem (including any children), under a new parent item or with a new name. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DriveItem} @@ -63,7 +63,7 @@ public DriveItem post(@jakarta.annotation.Nonnull final CopyPostRequestBody body return this.requestAdapter.send(requestInfo, errorMapping, DriveItem::createFromDiscriminatorValue); } /** - * Asynchronously creates a copy of an [driveItem][item-resource] (including any children), under a new parent item or with a new name. + * Asynchronously creates a copy of an driveItem (including any children), under a new parent item or with a new name. * @param body The request body * @return a {@link RequestInformation} */ @@ -72,7 +72,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Asynchronously creates a copy of an [driveItem][item-resource] (including any children), under a new parent item or with a new name. + * Asynchronously creates a copy of an driveItem (including any children), under a new parent item or with a new name. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/delta/DeltaRequestBuilder.java index 9180c1de454..62fe9de60bf 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Track changes in a driveItem and its children over time. Your app begins by calling delta without any parameters.The service starts enumerating the drive's hierarchy, returning pages of items and either an @odata.nextLink or an @odata.deltaLink, as described below.Your app should continue calling with the @odata.nextLink until you no longer see an @odata.nextLink returned, or you see a response with an empty set of changes. After you have finished receiving all thechanges, you may apply them to your local state.To check for changes in thefuture, call delta again with the @odata.deltaLink from the previous response. Deleted items are returned with the deleted facet.Items with this property set should be removed from your local state. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Track changes in a driveItem and its children over time. Your app begins by calling delta without any parameters.The service starts enumerating the drive's hierarchy, returning pages of items and either an @odata.nextLink or an @odata.deltaLink, as described below.Your app should continue calling with the @odata.nextLink until you no longer see an @odata.nextLink returned, or you see a response with an empty set of changes. After you have finished receiving all thechanges, you may apply them to your local state.To check for changes in thefuture, call delta again with the @odata.deltaLink from the previous response. Deleted items are returned with the deleted facet.Items with this property set should be removed from your local state. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Track changes in a driveItem and its children over time. Your app begins by calling delta without any parameters.The service starts enumerating the drive's hierarchy, returning pages of items and either an @odata.nextLink or an @odata.deltaLink, as described below.Your app should continue calling with the @odata.nextLink until you no longer see an @odata.nextLink returned, or you see a response with an empty set of changes. After you have finished receiving all thechanges, you may apply them to your local state.To check for changes in thefuture, call delta again with the @odata.deltaLink from the previous response. Deleted items are returned with the deleted facet.Items with this property set should be removed from your local state. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Track changes in a driveItem and its children over time. Your app begins by calling delta without any parameters.The service starts enumerating the drive's hierarchy, returning pages of items and either an @odata.nextLink or an @odata.deltaLink, as described below.Your app should continue calling with the @odata.nextLink until you no longer see an @odata.nextLink returned, or you see a response with an empty set of changes. After you have finished receiving all thechanges, you may apply them to your local state.To check for changes in thefuture, call delta again with the @odata.deltaLink from the previous response. Deleted items are returned with the deleted facet.Items with this property set should be removed from your local state. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Track changes in a driveItem and its children over time. Your app begins by calling delta without any parameters.The service starts enumerating the drive's hierarchy, returning pages of items and either an @odata.nextLink or an @odata.deltaLink, as described below.Your app should continue calling with the @odata.nextLink until you no longer see an @odata.nextLink returned, or you see a response with an empty set of changes. After you have finished receiving all thechanges, you may apply them to your local state.To check for changes in thefuture, call delta again with the @odata.deltaLink from the previous response. Deleted items are returned with the deleted facet.Items with this property set should be removed from your local state. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/getactivitiesbyinterval/GetActivitiesByIntervalRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/getactivitiesbyinterval/GetActivitiesByIntervalRequestBuilder.java index 156c9267214..3eb0ab744c6 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/getactivitiesbyinterval/GetActivitiesByIntervalRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/getactivitiesbyinterval/GetActivitiesByIntervalRequestBuilder.java @@ -36,19 +36,21 @@ public GetActivitiesByIntervalRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/getActivitiesByInterval(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function getActivitiesByInterval + * Get a collection of itemActivityStats resources for the activities that took place on this resource within the specified time interval. Analytics aggregates might not be available for all action types. * @return a {@link GetActivitiesByIntervalGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetActivitiesByIntervalGetResponse get() { return get(null); } /** - * Invoke function getActivitiesByInterval + * Get a collection of itemActivityStats resources for the activities that took place on this resource within the specified time interval. Analytics aggregates might not be available for all action types. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GetActivitiesByIntervalGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetActivitiesByIntervalGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public GetActivitiesByIntervalGetResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, GetActivitiesByIntervalGetResponse::createFromDiscriminatorValue); } /** - * Invoke function getActivitiesByInterval + * Get a collection of itemActivityStats resources for the activities that took place on this resource within the specified time interval. Analytics aggregates might not be available for all action types. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getActivitiesByInterval + * Get a collection of itemActivityStats resources for the activities that took place on this resource within the specified time interval. Analytics aggregates might not be available for all action types. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public GetActivitiesByIntervalRequestBuilder withUrl(@jakarta.annotation.Nonnull return new GetActivitiesByIntervalRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function getActivitiesByInterval + * Get a collection of itemActivityStats resources for the activities that took place on this resource within the specified time interval. Analytics aggregates might not be available for all action types. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/invite/InviteRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/invite/InviteRequestBuilder.java index 12e3c45c303..6f06894705a 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/invite/InviteRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/invite/InviteRequestBuilder.java @@ -35,7 +35,7 @@ public InviteRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/invite", rawUrl); } /** - * Sends a sharing invitation for a driveItem.A sharing invitation provides permissions to the recipients and optionally sends them an email with a [sharing link][]. + * Sends a sharing invitation for a driveItem.A sharing invitation provides permissions to the recipients and optionally sends them an email with a sharing link. * @param body The request body * @return a {@link InvitePostResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -46,7 +46,7 @@ public InvitePostResponse post(@jakarta.annotation.Nonnull final InvitePostReque return post(body, null); } /** - * Sends a sharing invitation for a driveItem.A sharing invitation provides permissions to the recipients and optionally sends them an email with a [sharing link][]. + * Sends a sharing invitation for a driveItem.A sharing invitation provides permissions to the recipients and optionally sends them an email with a sharing link. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InvitePostResponse} @@ -62,7 +62,7 @@ public InvitePostResponse post(@jakarta.annotation.Nonnull final InvitePostReque return this.requestAdapter.send(requestInfo, errorMapping, InvitePostResponse::createFromDiscriminatorValue); } /** - * Sends a sharing invitation for a driveItem.A sharing invitation provides permissions to the recipients and optionally sends them an email with a [sharing link][]. + * Sends a sharing invitation for a driveItem.A sharing invitation provides permissions to the recipients and optionally sends them an email with a sharing link. * @param body The request body * @return a {@link RequestInformation} */ @@ -71,7 +71,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Sends a sharing invitation for a driveItem.A sharing invitation provides permissions to the recipients and optionally sends them an email with a [sharing link][]. + * Sends a sharing invitation for a driveItem.A sharing invitation provides permissions to the recipients and optionally sends them an email with a sharing link. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/permissions/PermissionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/permissions/PermissionsRequestBuilder.java index 1e270edc602..13aab20ac7b 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/permissions/PermissionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/permissions/PermissionsRequestBuilder.java @@ -60,21 +60,19 @@ public PermissionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/permissions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List the effective sharing permissions on a driveItem. + * The set of permissions for the item. Read-only. Nullable. * @return a {@link PermissionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PermissionCollectionResponse get() { return get(null); } /** - * List the effective sharing permissions on a driveItem. + * The set of permissions for the item. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PermissionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PermissionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Permission post(@jakarta.annotation.Nonnull final Permission body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, Permission::createFromDiscriminatorValue); } /** - * List the effective sharing permissions on a driveItem. + * The set of permissions for the item. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List the effective sharing permissions on a driveItem. + * The set of permissions for the item. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public PermissionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new PermissionsRequestBuilder(rawUrl, requestAdapter); } /** - * List the effective sharing permissions on a driveItem. + * The set of permissions for the item. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/permissions/item/PermissionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/permissions/item/PermissionItemRequestBuilder.java index 36b2bae4b5b..27d02604179 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/permissions/item/PermissionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/permissions/item/PermissionItemRequestBuilder.java @@ -46,18 +46,16 @@ public PermissionItemRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/permissions/{permission%2Did}{?%24expand,%24select}", rawUrl); } /** - * Remove access to a DriveItem. Only sharing permissions that are not inherited can be deleted.The inheritedFrom property must be null. + * Delete navigation property permissions for drives * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove access to a DriveItem. Only sharing permissions that are not inherited can be deleted.The inheritedFrom property must be null. + * Delete navigation property permissions for drives * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Return the effective sharing permission for a particular permission resource. Effective permissions of an item can come from two sources: permissions set directly on the item itself or permissions that are inherited from the item's ancestors. Callers can differentiate if the permission is inherited or not by checking the inheritedFrom property.This property is an ItemReference resource referencing the ancestor that the permission is inherited from. + * The set of permissions for the item. Read-only. Nullable. * @return a {@link Permission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Permission get() { return get(null); } /** - * Return the effective sharing permission for a particular permission resource. Effective permissions of an item can come from two sources: permissions set directly on the item itself or permissions that are inherited from the item's ancestors. Callers can differentiate if the permission is inherited or not by checking the inheritedFrom property.This property is an ItemReference resource referencing the ancestor that the permission is inherited from. + * The set of permissions for the item. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Permission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Permission get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public Permission get(@jakarta.annotation.Nullable final java.util.function.Cons return this.requestAdapter.send(requestInfo, errorMapping, Permission::createFromDiscriminatorValue); } /** - * Update the properties of a sharing permission by patching the permission resource. Only the roles property can be modified this way. + * Update the navigation property permissions in drives * @param body The request body * @return a {@link Permission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Permission patch(@jakarta.annotation.Nonnull final Permission body) { return patch(body, null); } /** - * Update the properties of a sharing permission by patching the permission resource. Only the roles property can be modified this way. + * Update the navigation property permissions in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Permission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Permission patch(@jakarta.annotation.Nonnull final Permission body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public Permission patch(@jakarta.annotation.Nonnull final Permission body, @jaka return this.requestAdapter.send(requestInfo, errorMapping, Permission::createFromDiscriminatorValue); } /** - * Remove access to a DriveItem. Only sharing permissions that are not inherited can be deleted.The inheritedFrom property must be null. + * Delete navigation property permissions for drives * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove access to a DriveItem. Only sharing permissions that are not inherited can be deleted.The inheritedFrom property must be null. + * Delete navigation property permissions for drives * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Return the effective sharing permission for a particular permission resource. Effective permissions of an item can come from two sources: permissions set directly on the item itself or permissions that are inherited from the item's ancestors. Callers can differentiate if the permission is inherited or not by checking the inheritedFrom property.This property is an ItemReference resource referencing the ancestor that the permission is inherited from. + * The set of permissions for the item. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Return the effective sharing permission for a particular permission resource. Effective permissions of an item can come from two sources: permissions set directly on the item itself or permissions that are inherited from the item's ancestors. Callers can differentiate if the permission is inherited or not by checking the inheritedFrom property.This property is an ItemReference resource referencing the ancestor that the permission is inherited from. + * The set of permissions for the item. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a sharing permission by patching the permission resource. Only the roles property can be modified this way. + * Update the navigation property permissions in drives * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a sharing permission by patching the permission resource. Only the roles property can be modified this way. + * Update the navigation property permissions in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public PermissionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final St public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Return the effective sharing permission for a particular permission resource. Effective permissions of an item can come from two sources: permissions set directly on the item itself or permissions that are inherited from the item's ancestors. Callers can differentiate if the permission is inherited or not by checking the inheritedFrom property.This property is an ItemReference resource referencing the ancestor that the permission is inherited from. + * The set of permissions for the item. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/permissions/item/grant/GrantRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/permissions/item/grant/GrantRequestBuilder.java index 310a92fcba1..f0778f6e79d 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/permissions/item/grant/GrantRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/permissions/item/grant/GrantRequestBuilder.java @@ -35,7 +35,7 @@ public GrantRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/permissions/{permission%2Did}/grant", rawUrl); } /** - * Grant users access to a link represented by a [permission][]. + * Grant users access to a link represented by a permission. * @param body The request body * @return a {@link GrantPostResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -46,7 +46,7 @@ public GrantPostResponse post(@jakarta.annotation.Nonnull final GrantPostRequest return post(body, null); } /** - * Grant users access to a link represented by a [permission][]. + * Grant users access to a link represented by a permission. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GrantPostResponse} @@ -62,7 +62,7 @@ public GrantPostResponse post(@jakarta.annotation.Nonnull final GrantPostRequest return this.requestAdapter.send(requestInfo, errorMapping, GrantPostResponse::createFromDiscriminatorValue); } /** - * Grant users access to a link represented by a [permission][]. + * Grant users access to a link represented by a permission. * @param body The request body * @return a {@link RequestInformation} */ @@ -71,7 +71,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Grant users access to a link represented by a [permission][]. + * Grant users access to a link represented by a permission. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/retentionlabel/RetentionLabelRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/retentionlabel/RetentionLabelRequestBuilder.java index 195bf3fca2a..7456a50fe5a 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/retentionlabel/RetentionLabelRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/retentionlabel/RetentionLabelRequestBuilder.java @@ -37,18 +37,16 @@ public RetentionLabelRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/retentionLabel{?%24expand,%24select}", rawUrl); } /** - * Remove a retention label from a driveItem. For information about retention labels from an administrator's perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint. + * Delete navigation property retentionLabel for drives * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove a retention label from a driveItem. For information about retention labels from an administrator's perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint. + * Delete navigation property retentionLabel for drives * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -79,23 +77,21 @@ public ItemRetentionLabel get(@jakarta.annotation.Nullable final java.util.funct return this.requestAdapter.send(requestInfo, errorMapping, ItemRetentionLabel::createFromDiscriminatorValue); } /** - * Lock or unlock a retention label on a driveItem that classifies content as records. For information about retention labels from an administrator's perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint. For more information about how you can lock and unlock retention labels, see Use record versioning to update records stored in SharePoint or OneDrive. + * Update the navigation property retentionLabel in drives * @param body The request body * @return a {@link ItemRetentionLabel} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ItemRetentionLabel patch(@jakarta.annotation.Nonnull final ItemRetentionLabel body) { return patch(body, null); } /** - * Lock or unlock a retention label on a driveItem that classifies content as records. For information about retention labels from an administrator's perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint. For more information about how you can lock and unlock retention labels, see Use record versioning to update records stored in SharePoint or OneDrive. + * Update the navigation property retentionLabel in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ItemRetentionLabel} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ItemRetentionLabel patch(@jakarta.annotation.Nonnull final ItemRetentionLabel body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -106,7 +102,7 @@ public ItemRetentionLabel patch(@jakarta.annotation.Nonnull final ItemRetentionL return this.requestAdapter.send(requestInfo, errorMapping, ItemRetentionLabel::createFromDiscriminatorValue); } /** - * Remove a retention label from a driveItem. For information about retention labels from an administrator's perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint. + * Delete navigation property retentionLabel for drives * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -114,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove a retention label from a driveItem. For information about retention labels from an administrator's perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint. + * Delete navigation property retentionLabel for drives * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Lock or unlock a retention label on a driveItem that classifies content as records. For information about retention labels from an administrator's perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint. For more information about how you can lock and unlock retention labels, see Use record versioning to update records stored in SharePoint or OneDrive. + * Update the navigation property retentionLabel in drives * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Lock or unlock a retention label on a driveItem that classifies content as records. For information about retention labels from an administrator's perspective, see Use retention labels to manage the lifecycle of documents stored in SharePoint. For more information about how you can lock and unlock retention labels, see Use record versioning to update records stored in SharePoint or OneDrive. + * Update the navigation property retentionLabel in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/searchwithq/SearchWithQRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/searchwithq/SearchWithQRequestBuilder.java index ec5c8de49be..963b0785d61 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/searchwithq/SearchWithQRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/searchwithq/SearchWithQRequestBuilder.java @@ -38,19 +38,21 @@ public SearchWithQRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/search(q='{q}'){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function search + * Search the hierarchy of items for items matching a query.You can search within a folder hierarchy, a whole drive, or files shared with the current user. * @return a {@link SearchWithQGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public SearchWithQGetResponse get() { return get(null); } /** - * Invoke function search + * Search the hierarchy of items for items matching a query.You can search within a folder hierarchy, a whole drive, or files shared with the current user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SearchWithQGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public SearchWithQGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public SearchWithQGetResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, SearchWithQGetResponse::createFromDiscriminatorValue); } /** - * Invoke function search + * Search the hierarchy of items for items matching a query.You can search within a folder hierarchy, a whole drive, or files shared with the current user. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function search + * Search the hierarchy of items for items matching a query.You can search within a folder hierarchy, a whole drive, or files shared with the current user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -90,7 +92,7 @@ public SearchWithQRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new SearchWithQRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function search + * Search the hierarchy of items for items matching a query.You can search within a folder hierarchy, a whole drive, or files shared with the current user. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/thumbnails/ThumbnailsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/thumbnails/ThumbnailsRequestBuilder.java index e2a5e28963c..24ab551429a 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/thumbnails/ThumbnailsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/thumbnails/ThumbnailsRequestBuilder.java @@ -60,21 +60,19 @@ public ThumbnailsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/thumbnails{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a collection of ThumbnailSet resources for a DriveItem resource. A DriveItem can be represented by zero or more ThumbnailSet resources.Each thumbnailSet can have one or more thumbnail objects, which are images that represent the item.For example, a thumbnailSet may include thumbnail objects, such as common ones including small, medium, or large. There are many ways to work with thumbnails on OneDrive.Here are the most common ones: + * Collection of thumbnailSet objects associated with the item. For more information, see getting thumbnails. Read-only. Nullable. * @return a {@link ThumbnailSetCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ThumbnailSetCollectionResponse get() { return get(null); } /** - * Retrieve a collection of ThumbnailSet resources for a DriveItem resource. A DriveItem can be represented by zero or more ThumbnailSet resources.Each thumbnailSet can have one or more thumbnail objects, which are images that represent the item.For example, a thumbnailSet may include thumbnail objects, such as common ones including small, medium, or large. There are many ways to work with thumbnails on OneDrive.Here are the most common ones: + * Collection of thumbnailSet objects associated with the item. For more information, see getting thumbnails. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ThumbnailSetCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ThumbnailSetCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ThumbnailSet post(@jakarta.annotation.Nonnull final ThumbnailSet body, @j return this.requestAdapter.send(requestInfo, errorMapping, ThumbnailSet::createFromDiscriminatorValue); } /** - * Retrieve a collection of ThumbnailSet resources for a DriveItem resource. A DriveItem can be represented by zero or more ThumbnailSet resources.Each thumbnailSet can have one or more thumbnail objects, which are images that represent the item.For example, a thumbnailSet may include thumbnail objects, such as common ones including small, medium, or large. There are many ways to work with thumbnails on OneDrive.Here are the most common ones: + * Collection of thumbnailSet objects associated with the item. For more information, see getting thumbnails. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a collection of ThumbnailSet resources for a DriveItem resource. A DriveItem can be represented by zero or more ThumbnailSet resources.Each thumbnailSet can have one or more thumbnail objects, which are images that represent the item.For example, a thumbnailSet may include thumbnail objects, such as common ones including small, medium, or large. There are many ways to work with thumbnails on OneDrive.Here are the most common ones: + * Collection of thumbnailSet objects associated with the item. For more information, see getting thumbnails. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public ThumbnailsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ThumbnailsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a collection of ThumbnailSet resources for a DriveItem resource. A DriveItem can be represented by zero or more ThumbnailSet resources.Each thumbnailSet can have one or more thumbnail objects, which are images that represent the item.For example, a thumbnailSet may include thumbnail objects, such as common ones including small, medium, or large. There are many ways to work with thumbnails on OneDrive.Here are the most common ones: + * Collection of thumbnailSet objects associated with the item. For more information, see getting thumbnails. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/thumbnails/item/ThumbnailSetItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/thumbnails/item/ThumbnailSetItemRequestBuilder.java index 994ac9a6f4b..b69b2e649f8 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/thumbnails/item/ThumbnailSetItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/thumbnails/item/ThumbnailSetItemRequestBuilder.java @@ -55,7 +55,7 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Collection of [thumbnailSet][] objects associated with the item. For more information, see [getting thumbnails][]. Read-only. Nullable. + * Collection of thumbnailSet objects associated with the item. For more information, see getting thumbnails. Read-only. Nullable. * @return a {@link ThumbnailSet} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -64,7 +64,7 @@ public ThumbnailSet get() { return get(null); } /** - * Collection of [thumbnailSet][] objects associated with the item. For more information, see [getting thumbnails][]. Read-only. Nullable. + * Collection of thumbnailSet objects associated with the item. For more information, see getting thumbnails. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ThumbnailSet} * @throws ODataError When receiving a 4XX or 5XX status code @@ -122,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Collection of [thumbnailSet][] objects associated with the item. For more information, see [getting thumbnails][]. Read-only. Nullable. + * Collection of thumbnailSet objects associated with the item. For more information, see getting thumbnails. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -130,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Collection of [thumbnailSet][] objects associated with the item. For more information, see [getting thumbnails][]. Read-only. Nullable. + * Collection of thumbnailSet objects associated with the item. For more information, see getting thumbnails. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -182,7 +182,7 @@ public ThumbnailSetItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Collection of [thumbnailSet][] objects associated with the item. For more information, see [getting thumbnails][]. Read-only. Nullable. + * Collection of thumbnailSet objects associated with the item. For more information, see getting thumbnails. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/versions/VersionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/versions/VersionsRequestBuilder.java index 6ff11c0964d..ea3d354c19b 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/versions/VersionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/versions/VersionsRequestBuilder.java @@ -60,21 +60,19 @@ public VersionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/versions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * OneDrive and SharePoint can be configured to retain the history for files.Depending on the service and configuration, a new version can be created for each edit, each time the file is saved, manually, or never. Previous versions of a document may be retained for a finite period of time depending on admin settings that may be unique per user or location. + * The list of previous versions of the item. For more info, see getting previous versions. Read-only. Nullable. * @return a {@link DriveItemVersionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DriveItemVersionCollectionResponse get() { return get(null); } /** - * OneDrive and SharePoint can be configured to retain the history for files.Depending on the service and configuration, a new version can be created for each edit, each time the file is saved, manually, or never. Previous versions of a document may be retained for a finite period of time depending on admin settings that may be unique per user or location. + * The list of previous versions of the item. For more info, see getting previous versions. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DriveItemVersionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DriveItemVersionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public DriveItemVersion post(@jakarta.annotation.Nonnull final DriveItemVersion return this.requestAdapter.send(requestInfo, errorMapping, DriveItemVersion::createFromDiscriminatorValue); } /** - * OneDrive and SharePoint can be configured to retain the history for files.Depending on the service and configuration, a new version can be created for each edit, each time the file is saved, manually, or never. Previous versions of a document may be retained for a finite period of time depending on admin settings that may be unique per user or location. + * The list of previous versions of the item. For more info, see getting previous versions. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * OneDrive and SharePoint can be configured to retain the history for files.Depending on the service and configuration, a new version can be created for each edit, each time the file is saved, manually, or never. Previous versions of a document may be retained for a finite period of time depending on admin settings that may be unique per user or location. + * The list of previous versions of the item. For more info, see getting previous versions. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public VersionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new VersionsRequestBuilder(rawUrl, requestAdapter); } /** - * OneDrive and SharePoint can be configured to retain the history for files.Depending on the service and configuration, a new version can be created for each edit, each time the file is saved, manually, or never. Previous versions of a document may be retained for a finite period of time depending on admin settings that may be unique per user or location. + * The list of previous versions of the item. For more info, see getting previous versions. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/versions/item/DriveItemVersionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/versions/item/DriveItemVersionItemRequestBuilder.java index 39dd749d9f5..78ad8ac7d85 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/versions/item/DriveItemVersionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/versions/item/DriveItemVersionItemRequestBuilder.java @@ -73,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the metadata for a specific version of a DriveItem. + * The list of previous versions of the item. For more info, see getting previous versions. Read-only. Nullable. * @return a {@link DriveItemVersion} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DriveItemVersion get() { return get(null); } /** - * Retrieve the metadata for a specific version of a DriveItem. + * The list of previous versions of the item. For more info, see getting previous versions. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DriveItemVersion} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DriveItemVersion get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -142,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the metadata for a specific version of a DriveItem. + * The list of previous versions of the item. For more info, see getting previous versions. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -150,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the metadata for a specific version of a DriveItem. + * The list of previous versions of the item. For more info, see getting previous versions. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -202,7 +200,7 @@ public DriveItemVersionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fi public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the metadata for a specific version of a DriveItem. + * The list of previous versions of the item. For more info, see getting previous versions. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/versions/item/content/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/versions/item/content/ContentRequestBuilder.java index 3d63ed9e43b..e1454d32827 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/versions/item/content/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/versions/item/content/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * The content stream for this version of the item. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/application/ApplicationRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/application/ApplicationRequestBuilder.java index ee54dd23ff2..eb4d819147a 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/application/ApplicationRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/application/ApplicationRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a workbookApplication object. + * Get application from drives * @return a {@link WorkbookApplication} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookApplication get() { return get(null); } /** - * Retrieve the properties and relationships of a workbookApplication object. + * Get application from drives * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookApplication} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookApplication get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a workbookApplication object. + * Get application from drives * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a workbookApplication object. + * Get application from drives * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public ApplicationRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a workbookApplication object. + * Get application from drives */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/comments/item/replies/RepliesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/comments/item/replies/RepliesRequestBuilder.java index 8634ed72478..82a5578e60a 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/comments/item/replies/RepliesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/comments/item/replies/RepliesRequestBuilder.java @@ -60,7 +60,7 @@ public RepliesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/comments/{workbookComment%2Did}/replies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the properties and relationships of workbookCommentReply object. + * Get replies from drives * @return a {@link WorkbookCommentReplyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public WorkbookCommentReplyCollectionResponse get() { return get(null); } /** - * Retrieve the properties and relationships of workbookCommentReply object. + * Get replies from drives * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookCommentReplyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public WorkbookCommentReply post(@jakarta.annotation.Nonnull final WorkbookComme return this.requestAdapter.send(requestInfo, errorMapping, WorkbookCommentReply::createFromDiscriminatorValue); } /** - * Retrieve the properties and relationships of workbookCommentReply object. + * Get replies from drives * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of workbookCommentReply object. + * Get replies from drives * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public RepliesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new RepliesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the properties and relationships of workbookCommentReply object. + * Get replies from drives */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/comments/item/replies/item/WorkbookCommentReplyItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/comments/item/replies/item/WorkbookCommentReplyItemRequestBuilder.java index 95f40dc83f2..2da02c544f7 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/comments/item/replies/item/WorkbookCommentReplyItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/comments/item/replies/item/WorkbookCommentReplyItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of workbookCommentReply object. + * Get replies from drives * @return a {@link WorkbookCommentReply} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookCommentReply get() { return get(null); } /** - * Retrieve the properties and relationships of workbookCommentReply object. + * Get replies from drives * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookCommentReply} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookCommentReply get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of workbookCommentReply object. + * Get replies from drives * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of workbookCommentReply object. + * Get replies from drives * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public WorkbookCommentReplyItemRequestBuilder withUrl(@jakarta.annotation.Nonnul public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of workbookCommentReply object. + * Get replies from drives */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/names/NamesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/names/NamesRequestBuilder.java index b05753b3785..33752667f13 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/names/NamesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/names/NamesRequestBuilder.java @@ -78,21 +78,19 @@ public NamesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/names{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of nameditem objects. + * Represents a collection of workbooks scoped named items (named ranges and constants). Read-only. * @return a {@link WorkbookNamedItemCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookNamedItemCollectionResponse get() { return get(null); } /** - * Retrieve a list of nameditem objects. + * Represents a collection of workbooks scoped named items (named ranges and constants). Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookNamedItemCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookNamedItemCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -127,7 +125,7 @@ public WorkbookNamedItem post(@jakarta.annotation.Nonnull final WorkbookNamedIte return this.requestAdapter.send(requestInfo, errorMapping, WorkbookNamedItem::createFromDiscriminatorValue); } /** - * Retrieve a list of nameditem objects. + * Represents a collection of workbooks scoped named items (named ranges and constants). Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -135,7 +133,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of nameditem objects. + * Represents a collection of workbooks scoped named items (named ranges and constants). Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -181,7 +179,7 @@ public NamesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new NamesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of nameditem objects. + * Represents a collection of workbooks scoped named items (named ranges and constants). Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/names/item/WorkbookNamedItemItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/names/item/WorkbookNamedItemItemRequestBuilder.java index 81fc747e472..d0deb81d0f1 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/names/item/WorkbookNamedItemItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/names/item/WorkbookNamedItemItemRequestBuilder.java @@ -73,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of nameditem object. + * Represents a collection of workbooks scoped named items (named ranges and constants). Read-only. * @return a {@link WorkbookNamedItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookNamedItem get() { return get(null); } /** - * Retrieve the properties and relationships of nameditem object. + * Represents a collection of workbooks scoped named items (named ranges and constants). Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookNamedItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookNamedItem get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -97,23 +95,21 @@ public WorkbookNamedItem get(@jakarta.annotation.Nullable final java.util.functi return this.requestAdapter.send(requestInfo, errorMapping, WorkbookNamedItem::createFromDiscriminatorValue); } /** - * Update the properties of nameditem object. + * Update the navigation property names in drives * @param body The request body * @return a {@link WorkbookNamedItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookNamedItem patch(@jakarta.annotation.Nonnull final WorkbookNamedItem body) { return patch(body, null); } /** - * Update the properties of nameditem object. + * Update the navigation property names in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookNamedItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookNamedItem patch(@jakarta.annotation.Nonnull final WorkbookNamedItem body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -144,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of nameditem object. + * Represents a collection of workbooks scoped named items (named ranges and constants). Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -152,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of nameditem object. + * Represents a collection of workbooks scoped named items (named ranges and constants). Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -164,7 +160,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of nameditem object. + * Update the navigation property names in drives * @param body The request body * @return a {@link RequestInformation} */ @@ -173,7 +169,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of nameditem object. + * Update the navigation property names in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -204,7 +200,7 @@ public WorkbookNamedItemItemRequestBuilder withUrl(@jakarta.annotation.Nonnull f public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of nameditem object. + * Represents a collection of workbooks scoped named items (named ranges and constants). Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/operations/OperationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/operations/OperationsRequestBuilder.java index d84a2b8f904..3113789bf40 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/operations/OperationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/operations/OperationsRequestBuilder.java @@ -60,7 +60,7 @@ public OperationsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/operations{?%24expand,%24orderby,%24search,%24select}", rawUrl); } /** - * Meaningless if this url is called independently. This request is part of all async requests for excel. This is used to retrieve the status of a workbookOperation object. Currently not all requests support async. Take Create session request as an example. Issue an async Create session request, follow the documentation and you may get status code 202 Accepted, async operation starts from here and you can find the url this document required from the response header, from the location part. + * The status of workbook operations. Getting an operation collection is not supported, but you can get the status of a long-running operation if the Location header is returned in the response. Read-only. * @return a {@link WorkbookOperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public WorkbookOperationCollectionResponse get() { return get(null); } /** - * Meaningless if this url is called independently. This request is part of all async requests for excel. This is used to retrieve the status of a workbookOperation object. Currently not all requests support async. Take Create session request as an example. Issue an async Create session request, follow the documentation and you may get status code 202 Accepted, async operation starts from here and you can find the url this document required from the response header, from the location part. + * The status of workbook operations. Getting an operation collection is not supported, but you can get the status of a long-running operation if the Location header is returned in the response. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookOperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public WorkbookOperation post(@jakarta.annotation.Nonnull final WorkbookOperatio return this.requestAdapter.send(requestInfo, errorMapping, WorkbookOperation::createFromDiscriminatorValue); } /** - * Meaningless if this url is called independently. This request is part of all async requests for excel. This is used to retrieve the status of a workbookOperation object. Currently not all requests support async. Take Create session request as an example. Issue an async Create session request, follow the documentation and you may get status code 202 Accepted, async operation starts from here and you can find the url this document required from the response header, from the location part. + * The status of workbook operations. Getting an operation collection is not supported, but you can get the status of a long-running operation if the Location header is returned in the response. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Meaningless if this url is called independently. This request is part of all async requests for excel. This is used to retrieve the status of a workbookOperation object. Currently not all requests support async. Take Create session request as an example. Issue an async Create session request, follow the documentation and you may get status code 202 Accepted, async operation starts from here and you can find the url this document required from the response header, from the location part. + * The status of workbook operations. Getting an operation collection is not supported, but you can get the status of a long-running operation if the Location header is returned in the response. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public OperationsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new OperationsRequestBuilder(rawUrl, requestAdapter); } /** - * Meaningless if this url is called independently. This request is part of all async requests for excel. This is used to retrieve the status of a workbookOperation object. Currently not all requests support async. Take Create session request as an example. Issue an async Create session request, follow the documentation and you may get status code 202 Accepted, async operation starts from here and you can find the url this document required from the response header, from the location part. + * The status of workbook operations. Getting an operation collection is not supported, but you can get the status of a long-running operation if the Location header is returned in the response. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/operations/item/WorkbookOperationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/operations/item/WorkbookOperationItemRequestBuilder.java index 3e647a503fe..583dfac14c6 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/operations/item/WorkbookOperationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/operations/item/WorkbookOperationItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Meaningless if this url is called independently. This request is part of all async requests for excel. This is used to retrieve the status of a workbookOperation object. Currently not all requests support async. Take Create session request as an example. Issue an async Create session request, follow the documentation and you may get status code 202 Accepted, async operation starts from here and you can find the url this document required from the response header, from the location part. + * The status of workbook operations. Getting an operation collection is not supported, but you can get the status of a long-running operation if the Location header is returned in the response. Read-only. * @return a {@link WorkbookOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookOperation get() { return get(null); } /** - * Meaningless if this url is called independently. This request is part of all async requests for excel. This is used to retrieve the status of a workbookOperation object. Currently not all requests support async. Take Create session request as an example. Issue an async Create session request, follow the documentation and you may get status code 202 Accepted, async operation starts from here and you can find the url this document required from the response header, from the location part. + * The status of workbook operations. Getting an operation collection is not supported, but you can get the status of a long-running operation if the Location header is returned in the response. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookOperation get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Meaningless if this url is called independently. This request is part of all async requests for excel. This is used to retrieve the status of a workbookOperation object. Currently not all requests support async. Take Create session request as an example. Issue an async Create session request, follow the documentation and you may get status code 202 Accepted, async operation starts from here and you can find the url this document required from the response header, from the location part. + * The status of workbook operations. Getting an operation collection is not supported, but you can get the status of a long-running operation if the Location header is returned in the response. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Meaningless if this url is called independently. This request is part of all async requests for excel. This is used to retrieve the status of a workbookOperation object. Currently not all requests support async. Take Create session request as an example. Issue an async Create session request, follow the documentation and you may get status code 202 Accepted, async operation starts from here and you can find the url this document required from the response header, from the location part. + * The status of workbook operations. Getting an operation collection is not supported, but you can get the status of a long-running operation if the Location header is returned in the response. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public WorkbookOperationItemRequestBuilder withUrl(@jakarta.annotation.Nonnull f public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Meaningless if this url is called independently. This request is part of all async requests for excel. This is used to retrieve the status of a workbookOperation object. Currently not all requests support async. Take Create session request as an example. Issue an async Create session request, follow the documentation and you may get status code 202 Accepted, async operation starts from here and you can find the url this document required from the response header, from the location part. + * The status of workbook operations. Getting an operation collection is not supported, but you can get the status of a long-running operation if the Location header is returned in the response. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tablerowoperationresultwithkey/TableRowOperationResultWithKeyRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tablerowoperationresultwithkey/TableRowOperationResultWithKeyRequestBuilder.java index f0ede4a80bb..4f6e4b6164e 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tablerowoperationresultwithkey/TableRowOperationResultWithKeyRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tablerowoperationresultwithkey/TableRowOperationResultWithKeyRequestBuilder.java @@ -38,19 +38,21 @@ public TableRowOperationResultWithKeyRequestBuilder(@jakarta.annotation.Nonnull super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/tableRowOperationResult(key='{key}')", rawUrl); } /** - * Invoke function tableRowOperationResult + * This function is the last in a series of steps to create a workbookTableRow resource asynchronously. A best practice to create multiple table rows is to batch them in one create tableRow operation and carry out the operation asynchronously. An asynchronous request to create table rows involves the following steps:1. Issue an async Create tableRow request and get the query URL returned in the Location response header.2. Use the query URL returned from step 1 to issue the Get workbookOperation request and get the operation ID for step 3. Alternatively, for convenience, after you get a succeeded operationStatus result, you can get the query URL from the resourceLocation property of the workbookOperation returned in the response, and apply the query URL to step 3. 3. Use the query URL returned from step 2 as the GET request URL for this function tableRowOperationResult. A successful function call returns the new table rows in a workbookTableRow resource. This function does not do anything if called independently. * @return a {@link WorkbookTableRow} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableRow get() { return get(null); } /** - * Invoke function tableRowOperationResult + * This function is the last in a series of steps to create a workbookTableRow resource asynchronously. A best practice to create multiple table rows is to batch them in one create tableRow operation and carry out the operation asynchronously. An asynchronous request to create table rows involves the following steps:1. Issue an async Create tableRow request and get the query URL returned in the Location response header.2. Use the query URL returned from step 1 to issue the Get workbookOperation request and get the operation ID for step 3. Alternatively, for convenience, after you get a succeeded operationStatus result, you can get the query URL from the resourceLocation property of the workbookOperation returned in the response, and apply the query URL to step 3. 3. Use the query URL returned from step 2 as the GET request URL for this function tableRowOperationResult. A successful function call returns the new table rows in a workbookTableRow resource. This function does not do anything if called independently. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookTableRow} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableRow get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public WorkbookTableRow get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, WorkbookTableRow::createFromDiscriminatorValue); } /** - * Invoke function tableRowOperationResult + * This function is the last in a series of steps to create a workbookTableRow resource asynchronously. A best practice to create multiple table rows is to batch them in one create tableRow operation and carry out the operation asynchronously. An asynchronous request to create table rows involves the following steps:1. Issue an async Create tableRow request and get the query URL returned in the Location response header.2. Use the query URL returned from step 1 to issue the Get workbookOperation request and get the operation ID for step 3. Alternatively, for convenience, after you get a succeeded operationStatus result, you can get the query URL from the resourceLocation property of the workbookOperation returned in the response, and apply the query URL to step 3. 3. Use the query URL returned from step 2 as the GET request URL for this function tableRowOperationResult. A successful function call returns the new table rows in a workbookTableRow resource. This function does not do anything if called independently. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function tableRowOperationResult + * This function is the last in a series of steps to create a workbookTableRow resource asynchronously. A best practice to create multiple table rows is to batch them in one create tableRow operation and carry out the operation asynchronously. An asynchronous request to create table rows involves the following steps:1. Issue an async Create tableRow request and get the query URL returned in the Location response header.2. Use the query URL returned from step 1 to issue the Get workbookOperation request and get the operation ID for step 3. Alternatively, for convenience, after you get a succeeded operationStatus result, you can get the query URL from the resourceLocation property of the workbookOperation returned in the response, and apply the query URL to step 3. 3. Use the query URL returned from step 2 as the GET request URL for this function tableRowOperationResult. A successful function call returns the new table rows in a workbookTableRow resource. This function does not do anything if called independently. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/TablesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/TablesRequestBuilder.java index bda77e1d329..67b77a5e0de 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/TablesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/TablesRequestBuilder.java @@ -70,21 +70,19 @@ public TablesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/tables{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of table objects. + * Represents a collection of tables associated with the workbook. Read-only. * @return a {@link WorkbookTableCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableCollectionResponse get() { return get(null); } /** - * Retrieve a list of table objects. + * Represents a collection of tables associated with the workbook. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookTableCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -129,7 +127,7 @@ public WorkbookTable post(@jakarta.annotation.Nonnull final WorkbookTable body, return this.requestAdapter.send(requestInfo, errorMapping, WorkbookTable::createFromDiscriminatorValue); } /** - * Retrieve a list of table objects. + * Represents a collection of tables associated with the workbook. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -137,7 +135,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of table objects. + * Represents a collection of tables associated with the workbook. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -183,7 +181,7 @@ public TablesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw return new TablesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of table objects. + * Represents a collection of tables associated with the workbook. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/add/AddRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/add/AddRequestBuilder.java index bcf6f11d17b..25580bb3f11 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/add/AddRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/add/AddRequestBuilder.java @@ -36,23 +36,23 @@ public AddRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/tables/add", rawUrl); } /** - * Create a new table. The range source address determines the worksheet under which the table will be added. If the table can't be added (for example, because the address is invalid, or the table would overlap with another table), an error is generated. + * Use this API to create a new Table. * @param body The request body * @return a {@link WorkbookTable} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here + * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTable post(@jakarta.annotation.Nonnull final AddPostRequestBody body) { return post(body, null); } /** - * Create a new table. The range source address determines the worksheet under which the table will be added. If the table can't be added (for example, because the address is invalid, or the table would overlap with another table), an error is generated. + * Use this API to create a new Table. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookTable} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here + * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTable post(@jakarta.annotation.Nonnull final AddPostRequestBody body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -63,7 +63,7 @@ public WorkbookTable post(@jakarta.annotation.Nonnull final AddPostRequestBody b return this.requestAdapter.send(requestInfo, errorMapping, WorkbookTable::createFromDiscriminatorValue); } /** - * Create a new table. The range source address determines the worksheet under which the table will be added. If the table can't be added (for example, because the address is invalid, or the table would overlap with another table), an error is generated. + * Use this API to create a new Table. * @param body The request body * @return a {@link RequestInformation} */ @@ -72,7 +72,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new table. The range source address determines the worksheet under which the table will be added. If the table can't be added (for example, because the address is invalid, or the table would overlap with another table), an error is generated. + * Use this API to create a new Table. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/item/WorkbookTableItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/item/WorkbookTableItemRequestBuilder.java index 096cc55844d..1c635a03337 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/item/WorkbookTableItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/item/WorkbookTableItemRequestBuilder.java @@ -136,18 +136,16 @@ public WorkbookTableItemRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/tables/{workbookTable%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes the table. + * Delete navigation property tables for drives * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes the table. + * Delete navigation property tables for drives * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -156,21 +154,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of table object. + * Represents a collection of tables associated with the workbook. Read-only. * @return a {@link WorkbookTable} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTable get() { return get(null); } /** - * Retrieve the properties and relationships of table object. + * Represents a collection of tables associated with the workbook. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookTable} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTable get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -180,23 +176,21 @@ public WorkbookTable get(@jakarta.annotation.Nullable final java.util.function.C return this.requestAdapter.send(requestInfo, errorMapping, WorkbookTable::createFromDiscriminatorValue); } /** - * Update the properties of table object. + * Update the navigation property tables in drives * @param body The request body * @return a {@link WorkbookTable} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTable patch(@jakarta.annotation.Nonnull final WorkbookTable body) { return patch(body, null); } /** - * Update the properties of table object. + * Update the navigation property tables in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookTable} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTable patch(@jakarta.annotation.Nonnull final WorkbookTable body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -207,7 +201,7 @@ public WorkbookTable patch(@jakarta.annotation.Nonnull final WorkbookTable body, return this.requestAdapter.send(requestInfo, errorMapping, WorkbookTable::createFromDiscriminatorValue); } /** - * Deletes the table. + * Delete navigation property tables for drives * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -215,7 +209,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes the table. + * Delete navigation property tables for drives * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -227,7 +221,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of table object. + * Represents a collection of tables associated with the workbook. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -235,7 +229,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of table object. + * Represents a collection of tables associated with the workbook. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -247,7 +241,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of table object. + * Update the navigation property tables in drives * @param body The request body * @return a {@link RequestInformation} */ @@ -256,7 +250,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of table object. + * Update the navigation property tables in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -287,7 +281,7 @@ public WorkbookTableItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of table object. + * Represents a collection of tables associated with the workbook. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/item/columns/ColumnsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/item/columns/ColumnsRequestBuilder.java index d893117ffc4..70f88129440 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/item/columns/ColumnsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/item/columns/ColumnsRequestBuilder.java @@ -70,21 +70,19 @@ public ColumnsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/tables/{workbookTable%2Did}/columns{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of tablecolumn objects. + * Represents a collection of all the columns in the table. Read-only. * @return a {@link WorkbookTableColumnCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableColumnCollectionResponse get() { return get(null); } /** - * Retrieve a list of tablecolumn objects. + * Represents a collection of all the columns in the table. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookTableColumnCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableColumnCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -104,23 +102,21 @@ public ItemAtWithIndexRequestBuilder itemAtWithIndex(@jakarta.annotation.Nonnull return new ItemAtWithIndexRequestBuilder(pathParameters, requestAdapter, index); } /** - * Use this API to create a new TableColumn. + * Create new navigation property to columns for drives * @param body The request body * @return a {@link WorkbookTableColumn} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableColumn post(@jakarta.annotation.Nonnull final WorkbookTableColumn body) { return post(body, null); } /** - * Use this API to create a new TableColumn. + * Create new navigation property to columns for drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookTableColumn} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableColumn post(@jakarta.annotation.Nonnull final WorkbookTableColumn body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -131,7 +127,7 @@ public WorkbookTableColumn post(@jakarta.annotation.Nonnull final WorkbookTableC return this.requestAdapter.send(requestInfo, errorMapping, WorkbookTableColumn::createFromDiscriminatorValue); } /** - * Retrieve a list of tablecolumn objects. + * Represents a collection of all the columns in the table. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -139,7 +135,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of tablecolumn objects. + * Represents a collection of all the columns in the table. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -151,7 +147,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to create a new TableColumn. + * Create new navigation property to columns for drives * @param body The request body * @return a {@link RequestInformation} */ @@ -160,7 +156,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to create a new TableColumn. + * Create new navigation property to columns for drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -185,7 +181,7 @@ public ColumnsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new ColumnsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of tablecolumn objects. + * Represents a collection of all the columns in the table. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/item/columns/item/WorkbookTableColumnItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/item/columns/item/WorkbookTableColumnItemRequestBuilder.java index 9a2a8667a87..17e4cc4e24f 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/item/columns/item/WorkbookTableColumnItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/item/columns/item/WorkbookTableColumnItemRequestBuilder.java @@ -82,18 +82,16 @@ public WorkbookTableColumnItemRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/tables/{workbookTable%2Did}/columns/{workbookTableColumn%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes the column from the table. + * Delete navigation property columns for drives * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes the column from the table. + * Delete navigation property columns for drives * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -102,21 +100,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of tablecolumn object. + * Represents a collection of all the columns in the table. Read-only. * @return a {@link WorkbookTableColumn} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableColumn get() { return get(null); } /** - * Retrieve the properties and relationships of tablecolumn object. + * Represents a collection of all the columns in the table. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookTableColumn} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableColumn get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,23 +122,21 @@ public WorkbookTableColumn get(@jakarta.annotation.Nullable final java.util.func return this.requestAdapter.send(requestInfo, errorMapping, WorkbookTableColumn::createFromDiscriminatorValue); } /** - * Update the properties of tablecolumn object. + * Update the navigation property columns in drives * @param body The request body * @return a {@link WorkbookTableColumn} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableColumn patch(@jakarta.annotation.Nonnull final WorkbookTableColumn body) { return patch(body, null); } /** - * Update the properties of tablecolumn object. + * Update the navigation property columns in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookTableColumn} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableColumn patch(@jakarta.annotation.Nonnull final WorkbookTableColumn body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -153,7 +147,7 @@ public WorkbookTableColumn patch(@jakarta.annotation.Nonnull final WorkbookTable return this.requestAdapter.send(requestInfo, errorMapping, WorkbookTableColumn::createFromDiscriminatorValue); } /** - * Deletes the column from the table. + * Delete navigation property columns for drives * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -161,7 +155,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes the column from the table. + * Delete navigation property columns for drives * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -173,7 +167,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of tablecolumn object. + * Represents a collection of all the columns in the table. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -181,7 +175,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of tablecolumn object. + * Represents a collection of all the columns in the table. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +187,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of tablecolumn object. + * Update the navigation property columns in drives * @param body The request body * @return a {@link RequestInformation} */ @@ -202,7 +196,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of tablecolumn object. + * Update the navigation property columns in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -233,7 +227,7 @@ public WorkbookTableColumnItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of tablecolumn object. + * Represents a collection of all the columns in the table. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/item/columns/itematwithindex/ItemAtWithIndexRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/item/columns/itematwithindex/ItemAtWithIndexRequestBuilder.java index c36e19b12a4..3ca67a999c0 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/item/columns/itematwithindex/ItemAtWithIndexRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/item/columns/itematwithindex/ItemAtWithIndexRequestBuilder.java @@ -83,19 +83,21 @@ public ItemAtWithIndexRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/tables/{workbookTable%2Did}/columns/itemAt(index={index})", rawUrl); } /** - * Invoke function itemAt + * Gets a column based on its position in the collection. * @return a {@link WorkbookTableColumn} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableColumn get() { return get(null); } /** - * Invoke function itemAt + * Gets a column based on its position in the collection. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookTableColumn} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableColumn get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -105,7 +107,7 @@ public WorkbookTableColumn get(@jakarta.annotation.Nullable final java.util.func return this.requestAdapter.send(requestInfo, errorMapping, WorkbookTableColumn::createFromDiscriminatorValue); } /** - * Invoke function itemAt + * Gets a column based on its position in the collection. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -113,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function itemAt + * Gets a column based on its position in the collection. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/item/rows/RowsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/item/rows/RowsRequestBuilder.java index f124d3cf865..f86f2880713 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/item/rows/RowsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/item/rows/RowsRequestBuilder.java @@ -70,21 +70,19 @@ public RowsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/tables/{workbookTable%2Did}/rows{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of tablerow objects. + * Represents a collection of all the rows in the table. Read-only. * @return a {@link WorkbookTableRowCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableRowCollectionResponse get() { return get(null); } /** - * Retrieve a list of tablerow objects. + * Represents a collection of all the rows in the table. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookTableRowCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableRowCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -104,23 +102,21 @@ public ItemAtWithIndexRequestBuilder itemAtWithIndex(@jakarta.annotation.Nonnull return new ItemAtWithIndexRequestBuilder(pathParameters, requestAdapter, index); } /** - * Adds rows to the end of a table. Note that this API can accept multiple rows of data. Adding one row at a time can affect performance. The recommended approach is to batch the rows together in a single call rather than inserting single rows. For best results, collect the rows to be inserted on the application side and perform a single row add operation. Experiment with the number of rows to determine the ideal number of rows to use in a single API call. This request might occasionally result in a 504 HTTP error. The appropriate response to this error is to repeat the request. + * Create new navigation property to rows for drives * @param body The request body * @return a {@link WorkbookTableRow} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableRow post(@jakarta.annotation.Nonnull final WorkbookTableRow body) { return post(body, null); } /** - * Adds rows to the end of a table. Note that this API can accept multiple rows of data. Adding one row at a time can affect performance. The recommended approach is to batch the rows together in a single call rather than inserting single rows. For best results, collect the rows to be inserted on the application side and perform a single row add operation. Experiment with the number of rows to determine the ideal number of rows to use in a single API call. This request might occasionally result in a 504 HTTP error. The appropriate response to this error is to repeat the request. + * Create new navigation property to rows for drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookTableRow} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableRow post(@jakarta.annotation.Nonnull final WorkbookTableRow body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -131,7 +127,7 @@ public WorkbookTableRow post(@jakarta.annotation.Nonnull final WorkbookTableRow return this.requestAdapter.send(requestInfo, errorMapping, WorkbookTableRow::createFromDiscriminatorValue); } /** - * Retrieve a list of tablerow objects. + * Represents a collection of all the rows in the table. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -139,7 +135,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of tablerow objects. + * Represents a collection of all the rows in the table. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -151,7 +147,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Adds rows to the end of a table. Note that this API can accept multiple rows of data. Adding one row at a time can affect performance. The recommended approach is to batch the rows together in a single call rather than inserting single rows. For best results, collect the rows to be inserted on the application side and perform a single row add operation. Experiment with the number of rows to determine the ideal number of rows to use in a single API call. This request might occasionally result in a 504 HTTP error. The appropriate response to this error is to repeat the request. + * Create new navigation property to rows for drives * @param body The request body * @return a {@link RequestInformation} */ @@ -160,7 +156,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Adds rows to the end of a table. Note that this API can accept multiple rows of data. Adding one row at a time can affect performance. The recommended approach is to batch the rows together in a single call rather than inserting single rows. For best results, collect the rows to be inserted on the application side and perform a single row add operation. Experiment with the number of rows to determine the ideal number of rows to use in a single API call. This request might occasionally result in a 504 HTTP error. The appropriate response to this error is to repeat the request. + * Create new navigation property to rows for drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -185,7 +181,7 @@ public RowsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr return new RowsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of tablerow objects. + * Represents a collection of all the rows in the table. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/item/rows/item/WorkbookTableRowItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/item/rows/item/WorkbookTableRowItemRequestBuilder.java index ae5aca66b0a..53132d8e238 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/item/rows/item/WorkbookTableRowItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/item/rows/item/WorkbookTableRowItemRequestBuilder.java @@ -46,18 +46,16 @@ public WorkbookTableRowItemRequestBuilder(@jakarta.annotation.Nonnull final Stri super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/tables/{workbookTable%2Did}/rows/{workbookTableRow%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes the row from the table. + * Delete navigation property rows for drives * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes the row from the table. + * Delete navigation property rows for drives * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of tablerow object. + * Represents a collection of all the rows in the table. Read-only. * @return a {@link WorkbookTableRow} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableRow get() { return get(null); } /** - * Retrieve the properties and relationships of tablerow object. + * Represents a collection of all the rows in the table. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookTableRow} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableRow get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public WorkbookTableRow get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, WorkbookTableRow::createFromDiscriminatorValue); } /** - * Update the properties of tablerow object. + * Update the navigation property rows in drives * @param body The request body * @return a {@link WorkbookTableRow} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableRow patch(@jakarta.annotation.Nonnull final WorkbookTableRow body) { return patch(body, null); } /** - * Update the properties of tablerow object. + * Update the navigation property rows in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookTableRow} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableRow patch(@jakarta.annotation.Nonnull final WorkbookTableRow body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public WorkbookTableRow patch(@jakarta.annotation.Nonnull final WorkbookTableRow return this.requestAdapter.send(requestInfo, errorMapping, WorkbookTableRow::createFromDiscriminatorValue); } /** - * Deletes the row from the table. + * Delete navigation property rows for drives * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes the row from the table. + * Delete navigation property rows for drives * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of tablerow object. + * Represents a collection of all the rows in the table. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of tablerow object. + * Represents a collection of all the rows in the table. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of tablerow object. + * Update the navigation property rows in drives * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of tablerow object. + * Update the navigation property rows in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public WorkbookTableRowItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fi public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of tablerow object. + * Represents a collection of all the rows in the table. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/item/rows/itematwithindex/ItemAtWithIndexRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/item/rows/itematwithindex/ItemAtWithIndexRequestBuilder.java index dbd6d0d3b7a..6afe93e1891 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/item/rows/itematwithindex/ItemAtWithIndexRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/item/rows/itematwithindex/ItemAtWithIndexRequestBuilder.java @@ -47,19 +47,21 @@ public ItemAtWithIndexRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/tables/{workbookTable%2Did}/rows/itemAt(index={index})", rawUrl); } /** - * Invoke function itemAt + * Gets a row based on its position in the collection. * @return a {@link WorkbookTableRow} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableRow get() { return get(null); } /** - * Invoke function itemAt + * Gets a row based on its position in the collection. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookTableRow} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableRow get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -69,7 +71,7 @@ public WorkbookTableRow get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, WorkbookTableRow::createFromDiscriminatorValue); } /** - * Invoke function itemAt + * Gets a row based on its position in the collection. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -77,7 +79,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function itemAt + * Gets a row based on its position in the collection. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/item/sort/SortRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/item/sort/SortRequestBuilder.java index 9a9dbb497d9..56a6b89d06d 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/item/sort/SortRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/item/sort/SortRequestBuilder.java @@ -82,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of tablesort object. + * Represents the sorting for the table. Read-only. * @return a {@link WorkbookTableSort} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableSort get() { return get(null); } /** - * Retrieve the properties and relationships of tablesort object. + * Represents the sorting for the table. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookTableSort} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableSort get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -151,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of tablesort object. + * Represents the sorting for the table. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -159,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of tablesort object. + * Represents the sorting for the table. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -211,7 +209,7 @@ public SortRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of tablesort object. + * Represents the sorting for the table. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/itematwithindex/columns/ColumnsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/itematwithindex/columns/ColumnsRequestBuilder.java index 32f56c2e845..c7de929a54a 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/itematwithindex/columns/ColumnsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/itematwithindex/columns/ColumnsRequestBuilder.java @@ -38,21 +38,19 @@ public ColumnsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/tables/itemAt(index={index})/columns{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of tablecolumn objects. + * Represents a collection of all the columns in the table. Read-only. * @return a {@link WorkbookTableColumnCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableColumnCollectionResponse get() { return get(null); } /** - * Retrieve a list of tablecolumn objects. + * Represents a collection of all the columns in the table. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookTableColumnCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableColumnCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -62,23 +60,21 @@ public WorkbookTableColumnCollectionResponse get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, WorkbookTableColumnCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to create a new TableColumn. + * Create new navigation property to columns for drives * @param body The request body * @return a {@link WorkbookTableColumn} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableColumn post(@jakarta.annotation.Nonnull final WorkbookTableColumn body) { return post(body, null); } /** - * Use this API to create a new TableColumn. + * Create new navigation property to columns for drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookTableColumn} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableColumn post(@jakarta.annotation.Nonnull final WorkbookTableColumn body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -89,7 +85,7 @@ public WorkbookTableColumn post(@jakarta.annotation.Nonnull final WorkbookTableC return this.requestAdapter.send(requestInfo, errorMapping, WorkbookTableColumn::createFromDiscriminatorValue); } /** - * Retrieve a list of tablecolumn objects. + * Represents a collection of all the columns in the table. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -97,7 +93,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of tablecolumn objects. + * Represents a collection of all the columns in the table. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -109,7 +105,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to create a new TableColumn. + * Create new navigation property to columns for drives * @param body The request body * @return a {@link RequestInformation} */ @@ -118,7 +114,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to create a new TableColumn. + * Create new navigation property to columns for drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -143,7 +139,7 @@ public ColumnsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new ColumnsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of tablecolumn objects. + * Represents a collection of all the columns in the table. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/itematwithindex/rows/RowsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/itematwithindex/rows/RowsRequestBuilder.java index 7c2920168f6..31100f01bef 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/itematwithindex/rows/RowsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/itematwithindex/rows/RowsRequestBuilder.java @@ -38,21 +38,19 @@ public RowsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/tables/itemAt(index={index})/rows{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of tablerow objects. + * Represents a collection of all the rows in the table. Read-only. * @return a {@link WorkbookTableRowCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableRowCollectionResponse get() { return get(null); } /** - * Retrieve a list of tablerow objects. + * Represents a collection of all the rows in the table. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookTableRowCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableRowCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -62,23 +60,21 @@ public WorkbookTableRowCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, WorkbookTableRowCollectionResponse::createFromDiscriminatorValue); } /** - * Adds rows to the end of a table. Note that this API can accept multiple rows of data. Adding one row at a time can affect performance. The recommended approach is to batch the rows together in a single call rather than inserting single rows. For best results, collect the rows to be inserted on the application side and perform a single row add operation. Experiment with the number of rows to determine the ideal number of rows to use in a single API call. This request might occasionally result in a 504 HTTP error. The appropriate response to this error is to repeat the request. + * Create new navigation property to rows for drives * @param body The request body * @return a {@link WorkbookTableRow} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableRow post(@jakarta.annotation.Nonnull final WorkbookTableRow body) { return post(body, null); } /** - * Adds rows to the end of a table. Note that this API can accept multiple rows of data. Adding one row at a time can affect performance. The recommended approach is to batch the rows together in a single call rather than inserting single rows. For best results, collect the rows to be inserted on the application side and perform a single row add operation. Experiment with the number of rows to determine the ideal number of rows to use in a single API call. This request might occasionally result in a 504 HTTP error. The appropriate response to this error is to repeat the request. + * Create new navigation property to rows for drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookTableRow} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableRow post(@jakarta.annotation.Nonnull final WorkbookTableRow body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -89,7 +85,7 @@ public WorkbookTableRow post(@jakarta.annotation.Nonnull final WorkbookTableRow return this.requestAdapter.send(requestInfo, errorMapping, WorkbookTableRow::createFromDiscriminatorValue); } /** - * Retrieve a list of tablerow objects. + * Represents a collection of all the rows in the table. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -97,7 +93,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of tablerow objects. + * Represents a collection of all the rows in the table. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -109,7 +105,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Adds rows to the end of a table. Note that this API can accept multiple rows of data. Adding one row at a time can affect performance. The recommended approach is to batch the rows together in a single call rather than inserting single rows. For best results, collect the rows to be inserted on the application side and perform a single row add operation. Experiment with the number of rows to determine the ideal number of rows to use in a single API call. This request might occasionally result in a 504 HTTP error. The appropriate response to this error is to repeat the request. + * Create new navigation property to rows for drives * @param body The request body * @return a {@link RequestInformation} */ @@ -118,7 +114,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Adds rows to the end of a table. Note that this API can accept multiple rows of data. Adding one row at a time can affect performance. The recommended approach is to batch the rows together in a single call rather than inserting single rows. For best results, collect the rows to be inserted on the application side and perform a single row add operation. Experiment with the number of rows to determine the ideal number of rows to use in a single API call. This request might occasionally result in a 504 HTTP error. The appropriate response to this error is to repeat the request. + * Create new navigation property to rows for drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -143,7 +139,7 @@ public RowsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr return new RowsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of tablerow objects. + * Represents a collection of all the rows in the table. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/itematwithindex/sort/SortRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/itematwithindex/sort/SortRequestBuilder.java index 5e8312e5744..e81a3ee8501 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/itematwithindex/sort/SortRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/tables/itematwithindex/sort/SortRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of tablesort object. + * Represents the sorting for the table. Read-only. * @return a {@link WorkbookTableSort} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableSort get() { return get(null); } /** - * Retrieve the properties and relationships of tablesort object. + * Represents the sorting for the table. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookTableSort} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableSort get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of tablesort object. + * Represents the sorting for the table. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of tablesort object. + * Represents the sorting for the table. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public SortRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of tablesort object. + * Represents the sorting for the table. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/WorksheetsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/WorksheetsRequestBuilder.java index 06cd4778fd8..e413993435a 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/WorksheetsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/WorksheetsRequestBuilder.java @@ -69,21 +69,19 @@ public WorksheetsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/worksheets{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of worksheet objects. + * Represents a collection of worksheets associated with the workbook. Read-only. * @return a {@link WorkbookWorksheetCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookWorksheetCollectionResponse get() { return get(null); } /** - * Retrieve a list of worksheet objects. + * Represents a collection of worksheets associated with the workbook. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookWorksheetCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookWorksheetCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -118,7 +116,7 @@ public WorkbookWorksheet post(@jakarta.annotation.Nonnull final WorkbookWorkshee return this.requestAdapter.send(requestInfo, errorMapping, WorkbookWorksheet::createFromDiscriminatorValue); } /** - * Retrieve a list of worksheet objects. + * Represents a collection of worksheets associated with the workbook. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -126,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of worksheet objects. + * Represents a collection of worksheets associated with the workbook. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -172,7 +170,7 @@ public WorksheetsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new WorksheetsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of worksheet objects. + * Represents a collection of worksheets associated with the workbook. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/WorkbookWorksheetItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/WorkbookWorksheetItemRequestBuilder.java index ca61a7abe45..453fd306d69 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/WorkbookWorksheetItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/WorkbookWorksheetItemRequestBuilder.java @@ -115,18 +115,16 @@ public WorkbookWorksheetItemRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/worksheets/{workbookWorksheet%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes the worksheet from the workbook. + * Delete navigation property worksheets for drives * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes the worksheet from the workbook. + * Delete navigation property worksheets for drives * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -135,21 +133,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of worksheet object. + * Represents a collection of worksheets associated with the workbook. Read-only. * @return a {@link WorkbookWorksheet} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookWorksheet get() { return get(null); } /** - * Retrieve the properties and relationships of worksheet object. + * Represents a collection of worksheets associated with the workbook. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookWorksheet} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookWorksheet get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -159,23 +155,21 @@ public WorkbookWorksheet get(@jakarta.annotation.Nullable final java.util.functi return this.requestAdapter.send(requestInfo, errorMapping, WorkbookWorksheet::createFromDiscriminatorValue); } /** - * Update the properties of worksheet object. + * Update the navigation property worksheets in drives * @param body The request body * @return a {@link WorkbookWorksheet} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookWorksheet patch(@jakarta.annotation.Nonnull final WorkbookWorksheet body) { return patch(body, null); } /** - * Update the properties of worksheet object. + * Update the navigation property worksheets in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookWorksheet} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookWorksheet patch(@jakarta.annotation.Nonnull final WorkbookWorksheet body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -196,7 +190,7 @@ public RangeWithAddressRequestBuilder rangeWithAddress(@jakarta.annotation.Nonnu return new RangeWithAddressRequestBuilder(pathParameters, requestAdapter, address); } /** - * Deletes the worksheet from the workbook. + * Delete navigation property worksheets for drives * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -204,7 +198,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes the worksheet from the workbook. + * Delete navigation property worksheets for drives * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -216,7 +210,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of worksheet object. + * Represents a collection of worksheets associated with the workbook. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -224,7 +218,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of worksheet object. + * Represents a collection of worksheets associated with the workbook. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -236,7 +230,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of worksheet object. + * Update the navigation property worksheets in drives * @param body The request body * @return a {@link RequestInformation} */ @@ -245,7 +239,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of worksheet object. + * Update the navigation property worksheets in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -286,7 +280,7 @@ public WorkbookWorksheetItemRequestBuilder withUrl(@jakarta.annotation.Nonnull f public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of worksheet object. + * Represents a collection of worksheets associated with the workbook. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/cellwithrowwithcolumn/CellWithRowWithColumnRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/cellwithrowwithcolumn/CellWithRowWithColumnRequestBuilder.java index 70c077aa268..b660cb4cdf7 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/cellwithrowwithcolumn/CellWithRowWithColumnRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/cellwithrowwithcolumn/CellWithRowWithColumnRequestBuilder.java @@ -40,19 +40,21 @@ public CellWithRowWithColumnRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/worksheets/{workbookWorksheet%2Did}/cell(row={row},column={column})", rawUrl); } /** - * Invoke function cell + * Gets the range object containing the single cell based on row and column numbers. The cell can be outside the bounds of its parent range, so long as it's stays within the worksheet grid. * @return a {@link WorkbookRange} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookRange get() { return get(null); } /** - * Invoke function cell + * Gets the range object containing the single cell based on row and column numbers. The cell can be outside the bounds of its parent range, so long as it's stays within the worksheet grid. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookRange} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookRange get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -62,7 +64,7 @@ public WorkbookRange get(@jakarta.annotation.Nullable final java.util.function.C return this.requestAdapter.send(requestInfo, errorMapping, WorkbookRange::createFromDiscriminatorValue); } /** - * Invoke function cell + * Gets the range object containing the single cell based on row and column numbers. The cell can be outside the bounds of its parent range, so long as it's stays within the worksheet grid. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -70,7 +72,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function cell + * Gets the range object containing the single cell based on row and column numbers. The cell can be outside the bounds of its parent range, so long as it's stays within the worksheet grid. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/ChartsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/ChartsRequestBuilder.java index 46ded1ad0c7..4585d3641ff 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/ChartsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/ChartsRequestBuilder.java @@ -71,21 +71,19 @@ public ChartsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/worksheets/{workbookWorksheet%2Did}/charts{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of chart objects. + * Returns collection of charts that are part of the worksheet. Read-only. * @return a {@link WorkbookChartCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartCollectionResponse get() { return get(null); } /** - * Retrieve a list of chart objects. + * Returns collection of charts that are part of the worksheet. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -115,23 +113,21 @@ public ItemWithNameRequestBuilder itemWithName(@jakarta.annotation.Nonnull final return new ItemWithNameRequestBuilder(pathParameters, requestAdapter, name); } /** - * Use this API to create a new Chart. + * Create new navigation property to charts for drives * @param body The request body * @return a {@link WorkbookChart} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChart post(@jakarta.annotation.Nonnull final WorkbookChart body) { return post(body, null); } /** - * Use this API to create a new Chart. + * Create new navigation property to charts for drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChart} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChart post(@jakarta.annotation.Nonnull final WorkbookChart body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -142,7 +138,7 @@ public WorkbookChart post(@jakarta.annotation.Nonnull final WorkbookChart body, return this.requestAdapter.send(requestInfo, errorMapping, WorkbookChart::createFromDiscriminatorValue); } /** - * Retrieve a list of chart objects. + * Returns collection of charts that are part of the worksheet. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -150,7 +146,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of chart objects. + * Returns collection of charts that are part of the worksheet. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -162,7 +158,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to create a new Chart. + * Create new navigation property to charts for drives * @param body The request body * @return a {@link RequestInformation} */ @@ -171,7 +167,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to create a new Chart. + * Create new navigation property to charts for drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -196,7 +192,7 @@ public ChartsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw return new ChartsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of chart objects. + * Returns collection of charts that are part of the worksheet. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/WorkbookChartItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/WorkbookChartItemRequestBuilder.java index f0d1c167cfc..e2d83d8e44c 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/WorkbookChartItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/WorkbookChartItemRequestBuilder.java @@ -130,18 +130,16 @@ public WorkbookChartItemRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/worksheets/{workbookWorksheet%2Did}/charts/{workbookChart%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes the chart object. + * Delete navigation property charts for drives * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes the chart object. + * Delete navigation property charts for drives * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -150,21 +148,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of chart object. + * Returns collection of charts that are part of the worksheet. Read-only. * @return a {@link WorkbookChart} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChart get() { return get(null); } /** - * Retrieve the properties and relationships of chart object. + * Returns collection of charts that are part of the worksheet. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChart} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChart get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -210,23 +206,21 @@ public ImageWithWidthWithHeightWithFittingModeRequestBuilder imageWithWidthWithH return new ImageWithWidthWithHeightWithFittingModeRequestBuilder(pathParameters, requestAdapter, fittingMode, height, width); } /** - * Update the properties of chart object. + * Update the navigation property charts in drives * @param body The request body * @return a {@link WorkbookChart} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChart patch(@jakarta.annotation.Nonnull final WorkbookChart body) { return patch(body, null); } /** - * Update the properties of chart object. + * Update the navigation property charts in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChart} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChart patch(@jakarta.annotation.Nonnull final WorkbookChart body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -237,7 +231,7 @@ public WorkbookChart patch(@jakarta.annotation.Nonnull final WorkbookChart body, return this.requestAdapter.send(requestInfo, errorMapping, WorkbookChart::createFromDiscriminatorValue); } /** - * Deletes the chart object. + * Delete navigation property charts for drives * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -245,7 +239,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes the chart object. + * Delete navigation property charts for drives * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -257,7 +251,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of chart object. + * Returns collection of charts that are part of the worksheet. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -265,7 +259,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of chart object. + * Returns collection of charts that are part of the worksheet. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -277,7 +271,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of chart object. + * Update the navigation property charts in drives * @param body The request body * @return a {@link RequestInformation} */ @@ -286,7 +280,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of chart object. + * Update the navigation property charts in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -317,7 +311,7 @@ public WorkbookChartItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of chart object. + * Returns collection of charts that are part of the worksheet. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/categoryaxis/format/font/FontRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/categoryaxis/format/font/FontRequestBuilder.java index 9acc84e0405..889e707e9c4 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/categoryaxis/format/font/FontRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/categoryaxis/format/font/FontRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of chartfont object. + * Represents the font attributes (font name, font size, color, etc.) for a chart axis element. Read-only. * @return a {@link WorkbookChartFont} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartFont get() { return get(null); } /** - * Retrieve the properties and relationships of chartfont object. + * Represents the font attributes (font name, font size, color, etc.) for a chart axis element. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartFont} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartFont get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public WorkbookChartFont get(@jakarta.annotation.Nullable final java.util.functi return this.requestAdapter.send(requestInfo, errorMapping, WorkbookChartFont::createFromDiscriminatorValue); } /** - * Update the properties of chartfont object. + * Update the navigation property font in drives * @param body The request body * @return a {@link WorkbookChartFont} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartFont patch(@jakarta.annotation.Nonnull final WorkbookChartFont body) { return patch(body, null); } /** - * Update the properties of chartfont object. + * Update the navigation property font in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartFont} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartFont patch(@jakarta.annotation.Nonnull final WorkbookChartFont body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of chartfont object. + * Represents the font attributes (font name, font size, color, etc.) for a chart axis element. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of chartfont object. + * Represents the font attributes (font name, font size, color, etc.) for a chart axis element. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of chartfont object. + * Update the navigation property font in drives * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of chartfont object. + * Update the navigation property font in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public FontRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of chartfont object. + * Represents the font attributes (font name, font size, color, etc.) for a chart axis element. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/categoryaxis/format/line/LineRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/categoryaxis/format/line/LineRequestBuilder.java index 2217d5daf2a..5ef5f1f7f75 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/categoryaxis/format/line/LineRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/categoryaxis/format/line/LineRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of chartlineformat object. + * Represents chart line formatting. Read-only. * @return a {@link WorkbookChartLineFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartLineFormat get() { return get(null); } /** - * Retrieve the properties and relationships of chartlineformat object. + * Represents chart line formatting. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartLineFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartLineFormat get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -88,23 +86,21 @@ public WorkbookChartLineFormat get(@jakarta.annotation.Nullable final java.util. return this.requestAdapter.send(requestInfo, errorMapping, WorkbookChartLineFormat::createFromDiscriminatorValue); } /** - * Update the properties of chartlineformat object. + * Update the navigation property line in drives * @param body The request body * @return a {@link WorkbookChartLineFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartLineFormat patch(@jakarta.annotation.Nonnull final WorkbookChartLineFormat body) { return patch(body, null); } /** - * Update the properties of chartlineformat object. + * Update the navigation property line in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartLineFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartLineFormat patch(@jakarta.annotation.Nonnull final WorkbookChartLineFormat body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of chartlineformat object. + * Represents chart line formatting. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of chartlineformat object. + * Represents chart line formatting. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of chartlineformat object. + * Update the navigation property line in drives * @param body The request body * @return a {@link RequestInformation} */ @@ -164,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of chartlineformat object. + * Update the navigation property line in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -195,7 +191,7 @@ public LineRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of chartlineformat object. + * Represents chart line formatting. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/categoryaxis/minorgridlines/MinorGridlinesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/categoryaxis/minorgridlines/MinorGridlinesRequestBuilder.java index 7cbec47f761..e772ac6c14a 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/categoryaxis/minorgridlines/MinorGridlinesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/categoryaxis/minorgridlines/MinorGridlinesRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of chartgridlines object. + * Returns a Gridlines object that represents the minor gridlines for the specified axis. Read-only. * @return a {@link WorkbookChartGridlines} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartGridlines get() { return get(null); } /** - * Retrieve the properties and relationships of chartgridlines object. + * Returns a Gridlines object that represents the minor gridlines for the specified axis. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartGridlines} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartGridlines get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -88,23 +86,21 @@ public WorkbookChartGridlines get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, WorkbookChartGridlines::createFromDiscriminatorValue); } /** - * Update the properties of chartgridlines object. + * Update the navigation property minorGridlines in drives * @param body The request body * @return a {@link WorkbookChartGridlines} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartGridlines patch(@jakarta.annotation.Nonnull final WorkbookChartGridlines body) { return patch(body, null); } /** - * Update the properties of chartgridlines object. + * Update the navigation property minorGridlines in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartGridlines} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartGridlines patch(@jakarta.annotation.Nonnull final WorkbookChartGridlines body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of chartgridlines object. + * Returns a Gridlines object that represents the minor gridlines for the specified axis. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of chartgridlines object. + * Returns a Gridlines object that represents the minor gridlines for the specified axis. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of chartgridlines object. + * Update the navigation property minorGridlines in drives * @param body The request body * @return a {@link RequestInformation} */ @@ -164,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of chartgridlines object. + * Update the navigation property minorGridlines in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -195,7 +191,7 @@ public MinorGridlinesRequestBuilder withUrl(@jakarta.annotation.Nonnull final St public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of chartgridlines object. + * Returns a Gridlines object that represents the minor gridlines for the specified axis. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/categoryaxis/title/TitleRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/categoryaxis/title/TitleRequestBuilder.java index 4ecbdaca183..2892d8f0216 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/categoryaxis/title/TitleRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/categoryaxis/title/TitleRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of chartaxistitle object. + * Represents the axis title. Read-only. * @return a {@link WorkbookChartAxisTitle} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartAxisTitle get() { return get(null); } /** - * Retrieve the properties and relationships of chartaxistitle object. + * Represents the axis title. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartAxisTitle} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartAxisTitle get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -88,23 +86,21 @@ public WorkbookChartAxisTitle get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, WorkbookChartAxisTitle::createFromDiscriminatorValue); } /** - * Update the properties of chartaxistitle object. + * Update the navigation property title in drives * @param body The request body * @return a {@link WorkbookChartAxisTitle} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartAxisTitle patch(@jakarta.annotation.Nonnull final WorkbookChartAxisTitle body) { return patch(body, null); } /** - * Update the properties of chartaxistitle object. + * Update the navigation property title in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartAxisTitle} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartAxisTitle patch(@jakarta.annotation.Nonnull final WorkbookChartAxisTitle body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of chartaxistitle object. + * Represents the axis title. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of chartaxistitle object. + * Represents the axis title. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of chartaxistitle object. + * Update the navigation property title in drives * @param body The request body * @return a {@link RequestInformation} */ @@ -164,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of chartaxistitle object. + * Update the navigation property title in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -195,7 +191,7 @@ public TitleRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of chartaxistitle object. + * Represents the axis title. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/seriesaxis/format/font/FontRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/seriesaxis/format/font/FontRequestBuilder.java index bf32aa4149b..ac6f163ead2 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/seriesaxis/format/font/FontRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/seriesaxis/format/font/FontRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of chartfont object. + * Represents the font attributes (font name, font size, color, etc.) for a chart axis element. Read-only. * @return a {@link WorkbookChartFont} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartFont get() { return get(null); } /** - * Retrieve the properties and relationships of chartfont object. + * Represents the font attributes (font name, font size, color, etc.) for a chart axis element. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartFont} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartFont get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public WorkbookChartFont get(@jakarta.annotation.Nullable final java.util.functi return this.requestAdapter.send(requestInfo, errorMapping, WorkbookChartFont::createFromDiscriminatorValue); } /** - * Update the properties of chartfont object. + * Update the navigation property font in drives * @param body The request body * @return a {@link WorkbookChartFont} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartFont patch(@jakarta.annotation.Nonnull final WorkbookChartFont body) { return patch(body, null); } /** - * Update the properties of chartfont object. + * Update the navigation property font in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartFont} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartFont patch(@jakarta.annotation.Nonnull final WorkbookChartFont body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of chartfont object. + * Represents the font attributes (font name, font size, color, etc.) for a chart axis element. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of chartfont object. + * Represents the font attributes (font name, font size, color, etc.) for a chart axis element. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of chartfont object. + * Update the navigation property font in drives * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of chartfont object. + * Update the navigation property font in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public FontRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of chartfont object. + * Represents the font attributes (font name, font size, color, etc.) for a chart axis element. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/seriesaxis/format/line/LineRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/seriesaxis/format/line/LineRequestBuilder.java index 84983a220ce..d3e27f6b682 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/seriesaxis/format/line/LineRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/seriesaxis/format/line/LineRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of chartlineformat object. + * Represents chart line formatting. Read-only. * @return a {@link WorkbookChartLineFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartLineFormat get() { return get(null); } /** - * Retrieve the properties and relationships of chartlineformat object. + * Represents chart line formatting. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartLineFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartLineFormat get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -88,23 +86,21 @@ public WorkbookChartLineFormat get(@jakarta.annotation.Nullable final java.util. return this.requestAdapter.send(requestInfo, errorMapping, WorkbookChartLineFormat::createFromDiscriminatorValue); } /** - * Update the properties of chartlineformat object. + * Update the navigation property line in drives * @param body The request body * @return a {@link WorkbookChartLineFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartLineFormat patch(@jakarta.annotation.Nonnull final WorkbookChartLineFormat body) { return patch(body, null); } /** - * Update the properties of chartlineformat object. + * Update the navigation property line in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartLineFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartLineFormat patch(@jakarta.annotation.Nonnull final WorkbookChartLineFormat body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of chartlineformat object. + * Represents chart line formatting. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of chartlineformat object. + * Represents chart line formatting. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of chartlineformat object. + * Update the navigation property line in drives * @param body The request body * @return a {@link RequestInformation} */ @@ -164,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of chartlineformat object. + * Update the navigation property line in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -195,7 +191,7 @@ public LineRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of chartlineformat object. + * Represents chart line formatting. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/seriesaxis/minorgridlines/MinorGridlinesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/seriesaxis/minorgridlines/MinorGridlinesRequestBuilder.java index bfca133c493..4ad5565059a 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/seriesaxis/minorgridlines/MinorGridlinesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/seriesaxis/minorgridlines/MinorGridlinesRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of chartgridlines object. + * Returns a Gridlines object that represents the minor gridlines for the specified axis. Read-only. * @return a {@link WorkbookChartGridlines} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartGridlines get() { return get(null); } /** - * Retrieve the properties and relationships of chartgridlines object. + * Returns a Gridlines object that represents the minor gridlines for the specified axis. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartGridlines} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartGridlines get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -88,23 +86,21 @@ public WorkbookChartGridlines get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, WorkbookChartGridlines::createFromDiscriminatorValue); } /** - * Update the properties of chartgridlines object. + * Update the navigation property minorGridlines in drives * @param body The request body * @return a {@link WorkbookChartGridlines} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartGridlines patch(@jakarta.annotation.Nonnull final WorkbookChartGridlines body) { return patch(body, null); } /** - * Update the properties of chartgridlines object. + * Update the navigation property minorGridlines in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartGridlines} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartGridlines patch(@jakarta.annotation.Nonnull final WorkbookChartGridlines body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of chartgridlines object. + * Returns a Gridlines object that represents the minor gridlines for the specified axis. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of chartgridlines object. + * Returns a Gridlines object that represents the minor gridlines for the specified axis. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of chartgridlines object. + * Update the navigation property minorGridlines in drives * @param body The request body * @return a {@link RequestInformation} */ @@ -164,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of chartgridlines object. + * Update the navigation property minorGridlines in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -195,7 +191,7 @@ public MinorGridlinesRequestBuilder withUrl(@jakarta.annotation.Nonnull final St public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of chartgridlines object. + * Returns a Gridlines object that represents the minor gridlines for the specified axis. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/seriesaxis/title/TitleRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/seriesaxis/title/TitleRequestBuilder.java index 111dfd2e22c..7fd742907c9 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/seriesaxis/title/TitleRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/seriesaxis/title/TitleRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of chartaxistitle object. + * Represents the axis title. Read-only. * @return a {@link WorkbookChartAxisTitle} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartAxisTitle get() { return get(null); } /** - * Retrieve the properties and relationships of chartaxistitle object. + * Represents the axis title. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartAxisTitle} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartAxisTitle get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -88,23 +86,21 @@ public WorkbookChartAxisTitle get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, WorkbookChartAxisTitle::createFromDiscriminatorValue); } /** - * Update the properties of chartaxistitle object. + * Update the navigation property title in drives * @param body The request body * @return a {@link WorkbookChartAxisTitle} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartAxisTitle patch(@jakarta.annotation.Nonnull final WorkbookChartAxisTitle body) { return patch(body, null); } /** - * Update the properties of chartaxistitle object. + * Update the navigation property title in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartAxisTitle} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartAxisTitle patch(@jakarta.annotation.Nonnull final WorkbookChartAxisTitle body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of chartaxistitle object. + * Represents the axis title. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of chartaxistitle object. + * Represents the axis title. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of chartaxistitle object. + * Update the navigation property title in drives * @param body The request body * @return a {@link RequestInformation} */ @@ -164,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of chartaxistitle object. + * Update the navigation property title in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -195,7 +191,7 @@ public TitleRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of chartaxistitle object. + * Represents the axis title. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/valueaxis/ValueAxisRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/valueaxis/ValueAxisRequestBuilder.java index 1c6aa69f0bf..2066975cf2c 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/valueaxis/ValueAxisRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/valueaxis/ValueAxisRequestBuilder.java @@ -91,21 +91,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of chartaxis object. + * Represents the value axis in an axis. Read-only. * @return a {@link WorkbookChartAxis} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartAxis get() { return get(null); } /** - * Retrieve the properties and relationships of chartaxis object. + * Represents the value axis in an axis. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartAxis} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartAxis get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -115,23 +113,21 @@ public WorkbookChartAxis get(@jakarta.annotation.Nullable final java.util.functi return this.requestAdapter.send(requestInfo, errorMapping, WorkbookChartAxis::createFromDiscriminatorValue); } /** - * Update the properties of chartaxis object. + * Update the navigation property valueAxis in drives * @param body The request body * @return a {@link WorkbookChartAxis} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartAxis patch(@jakarta.annotation.Nonnull final WorkbookChartAxis body) { return patch(body, null); } /** - * Update the properties of chartaxis object. + * Update the navigation property valueAxis in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartAxis} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartAxis patch(@jakarta.annotation.Nonnull final WorkbookChartAxis body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -162,7 +158,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of chartaxis object. + * Represents the value axis in an axis. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -170,7 +166,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of chartaxis object. + * Represents the value axis in an axis. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -182,7 +178,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of chartaxis object. + * Update the navigation property valueAxis in drives * @param body The request body * @return a {@link RequestInformation} */ @@ -191,7 +187,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of chartaxis object. + * Update the navigation property valueAxis in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -222,7 +218,7 @@ public ValueAxisRequestBuilder withUrl(@jakarta.annotation.Nonnull final String public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of chartaxis object. + * Represents the value axis in an axis. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/valueaxis/format/font/FontRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/valueaxis/format/font/FontRequestBuilder.java index f9bb066081f..77801b1a50b 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/valueaxis/format/font/FontRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/valueaxis/format/font/FontRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of chartfont object. + * Represents the font attributes (font name, font size, color, etc.) for a chart axis element. Read-only. * @return a {@link WorkbookChartFont} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartFont get() { return get(null); } /** - * Retrieve the properties and relationships of chartfont object. + * Represents the font attributes (font name, font size, color, etc.) for a chart axis element. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartFont} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartFont get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public WorkbookChartFont get(@jakarta.annotation.Nullable final java.util.functi return this.requestAdapter.send(requestInfo, errorMapping, WorkbookChartFont::createFromDiscriminatorValue); } /** - * Update the properties of chartfont object. + * Update the navigation property font in drives * @param body The request body * @return a {@link WorkbookChartFont} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartFont patch(@jakarta.annotation.Nonnull final WorkbookChartFont body) { return patch(body, null); } /** - * Update the properties of chartfont object. + * Update the navigation property font in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartFont} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartFont patch(@jakarta.annotation.Nonnull final WorkbookChartFont body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of chartfont object. + * Represents the font attributes (font name, font size, color, etc.) for a chart axis element. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of chartfont object. + * Represents the font attributes (font name, font size, color, etc.) for a chart axis element. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of chartfont object. + * Update the navigation property font in drives * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of chartfont object. + * Update the navigation property font in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public FontRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of chartfont object. + * Represents the font attributes (font name, font size, color, etc.) for a chart axis element. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/valueaxis/format/line/LineRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/valueaxis/format/line/LineRequestBuilder.java index 5882f770b5b..b483694d34e 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/valueaxis/format/line/LineRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/valueaxis/format/line/LineRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of chartlineformat object. + * Represents chart line formatting. Read-only. * @return a {@link WorkbookChartLineFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartLineFormat get() { return get(null); } /** - * Retrieve the properties and relationships of chartlineformat object. + * Represents chart line formatting. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartLineFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartLineFormat get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -88,23 +86,21 @@ public WorkbookChartLineFormat get(@jakarta.annotation.Nullable final java.util. return this.requestAdapter.send(requestInfo, errorMapping, WorkbookChartLineFormat::createFromDiscriminatorValue); } /** - * Update the properties of chartlineformat object. + * Update the navigation property line in drives * @param body The request body * @return a {@link WorkbookChartLineFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartLineFormat patch(@jakarta.annotation.Nonnull final WorkbookChartLineFormat body) { return patch(body, null); } /** - * Update the properties of chartlineformat object. + * Update the navigation property line in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartLineFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartLineFormat patch(@jakarta.annotation.Nonnull final WorkbookChartLineFormat body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of chartlineformat object. + * Represents chart line formatting. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of chartlineformat object. + * Represents chart line formatting. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of chartlineformat object. + * Update the navigation property line in drives * @param body The request body * @return a {@link RequestInformation} */ @@ -164,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of chartlineformat object. + * Update the navigation property line in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -195,7 +191,7 @@ public LineRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of chartlineformat object. + * Represents chart line formatting. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/valueaxis/minorgridlines/MinorGridlinesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/valueaxis/minorgridlines/MinorGridlinesRequestBuilder.java index 641f874c7b0..0c0dcfce5d1 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/valueaxis/minorgridlines/MinorGridlinesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/valueaxis/minorgridlines/MinorGridlinesRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of chartgridlines object. + * Returns a Gridlines object that represents the minor gridlines for the specified axis. Read-only. * @return a {@link WorkbookChartGridlines} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartGridlines get() { return get(null); } /** - * Retrieve the properties and relationships of chartgridlines object. + * Returns a Gridlines object that represents the minor gridlines for the specified axis. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartGridlines} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartGridlines get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -88,23 +86,21 @@ public WorkbookChartGridlines get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, WorkbookChartGridlines::createFromDiscriminatorValue); } /** - * Update the properties of chartgridlines object. + * Update the navigation property minorGridlines in drives * @param body The request body * @return a {@link WorkbookChartGridlines} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartGridlines patch(@jakarta.annotation.Nonnull final WorkbookChartGridlines body) { return patch(body, null); } /** - * Update the properties of chartgridlines object. + * Update the navigation property minorGridlines in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartGridlines} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartGridlines patch(@jakarta.annotation.Nonnull final WorkbookChartGridlines body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of chartgridlines object. + * Returns a Gridlines object that represents the minor gridlines for the specified axis. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of chartgridlines object. + * Returns a Gridlines object that represents the minor gridlines for the specified axis. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of chartgridlines object. + * Update the navigation property minorGridlines in drives * @param body The request body * @return a {@link RequestInformation} */ @@ -164,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of chartgridlines object. + * Update the navigation property minorGridlines in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -195,7 +191,7 @@ public MinorGridlinesRequestBuilder withUrl(@jakarta.annotation.Nonnull final St public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of chartgridlines object. + * Returns a Gridlines object that represents the minor gridlines for the specified axis. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/valueaxis/title/TitleRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/valueaxis/title/TitleRequestBuilder.java index 08f3309d2d0..2a7033de5a9 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/valueaxis/title/TitleRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/axes/valueaxis/title/TitleRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of chartaxistitle object. + * Represents the axis title. Read-only. * @return a {@link WorkbookChartAxisTitle} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartAxisTitle get() { return get(null); } /** - * Retrieve the properties and relationships of chartaxistitle object. + * Represents the axis title. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartAxisTitle} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartAxisTitle get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -88,23 +86,21 @@ public WorkbookChartAxisTitle get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, WorkbookChartAxisTitle::createFromDiscriminatorValue); } /** - * Update the properties of chartaxistitle object. + * Update the navigation property title in drives * @param body The request body * @return a {@link WorkbookChartAxisTitle} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartAxisTitle patch(@jakarta.annotation.Nonnull final WorkbookChartAxisTitle body) { return patch(body, null); } /** - * Update the properties of chartaxistitle object. + * Update the navigation property title in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartAxisTitle} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartAxisTitle patch(@jakarta.annotation.Nonnull final WorkbookChartAxisTitle body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of chartaxistitle object. + * Represents the axis title. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of chartaxistitle object. + * Represents the axis title. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of chartaxistitle object. + * Update the navigation property title in drives * @param body The request body * @return a {@link RequestInformation} */ @@ -164,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of chartaxistitle object. + * Update the navigation property title in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -195,7 +191,7 @@ public TitleRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of chartaxistitle object. + * Represents the axis title. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/datalabels/DataLabelsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/datalabels/DataLabelsRequestBuilder.java index 2336fdc5b7e..f03ad27519c 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/datalabels/DataLabelsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/datalabels/DataLabelsRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of chartdatalabels object. + * Represents the datalabels on the chart. Read-only. * @return a {@link WorkbookChartDataLabels} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartDataLabels get() { return get(null); } /** - * Retrieve the properties and relationships of chartdatalabels object. + * Represents the datalabels on the chart. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartDataLabels} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartDataLabels get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -88,23 +86,21 @@ public WorkbookChartDataLabels get(@jakarta.annotation.Nullable final java.util. return this.requestAdapter.send(requestInfo, errorMapping, WorkbookChartDataLabels::createFromDiscriminatorValue); } /** - * Update the properties of chartdatalabels object. + * Update the navigation property dataLabels in drives * @param body The request body * @return a {@link WorkbookChartDataLabels} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartDataLabels patch(@jakarta.annotation.Nonnull final WorkbookChartDataLabels body) { return patch(body, null); } /** - * Update the properties of chartdatalabels object. + * Update the navigation property dataLabels in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartDataLabels} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartDataLabels patch(@jakarta.annotation.Nonnull final WorkbookChartDataLabels body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of chartdatalabels object. + * Represents the datalabels on the chart. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of chartdatalabels object. + * Represents the datalabels on the chart. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of chartdatalabels object. + * Update the navigation property dataLabels in drives * @param body The request body * @return a {@link RequestInformation} */ @@ -164,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of chartdatalabels object. + * Update the navigation property dataLabels in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -195,7 +191,7 @@ public DataLabelsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of chartdatalabels object. + * Represents the datalabels on the chart. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/legend/LegendRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/legend/LegendRequestBuilder.java index 123e481a77c..e30db265732 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/legend/LegendRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/legend/LegendRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of chartlegend object. + * Represents the legend for the chart. Read-only. * @return a {@link WorkbookChartLegend} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartLegend get() { return get(null); } /** - * Retrieve the properties and relationships of chartlegend object. + * Represents the legend for the chart. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartLegend} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartLegend get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -88,23 +86,21 @@ public WorkbookChartLegend get(@jakarta.annotation.Nullable final java.util.func return this.requestAdapter.send(requestInfo, errorMapping, WorkbookChartLegend::createFromDiscriminatorValue); } /** - * Update the properties of chartlegend object. + * Update the navigation property legend in drives * @param body The request body * @return a {@link WorkbookChartLegend} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartLegend patch(@jakarta.annotation.Nonnull final WorkbookChartLegend body) { return patch(body, null); } /** - * Update the properties of chartlegend object. + * Update the navigation property legend in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartLegend} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartLegend patch(@jakarta.annotation.Nonnull final WorkbookChartLegend body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of chartlegend object. + * Represents the legend for the chart. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of chartlegend object. + * Represents the legend for the chart. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of chartlegend object. + * Update the navigation property legend in drives * @param body The request body * @return a {@link RequestInformation} */ @@ -164,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of chartlegend object. + * Update the navigation property legend in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -195,7 +191,7 @@ public LegendRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of chartlegend object. + * Represents the legend for the chart. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/series/SeriesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/series/SeriesRequestBuilder.java index 0372211a970..f12600a108d 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/series/SeriesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/series/SeriesRequestBuilder.java @@ -61,21 +61,19 @@ public SeriesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/worksheets/{workbookWorksheet%2Did}/charts/{workbookChart%2Did}/series{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of chartseries objects. + * Represents either a single series or collection of series in the chart. Read-only. * @return a {@link WorkbookChartSeriesCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartSeriesCollectionResponse get() { return get(null); } /** - * Retrieve a list of chartseries objects. + * Represents either a single series or collection of series in the chart. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartSeriesCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartSeriesCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -95,23 +93,21 @@ public ItemAtWithIndexRequestBuilder itemAtWithIndex(@jakarta.annotation.Nonnull return new ItemAtWithIndexRequestBuilder(pathParameters, requestAdapter, index); } /** - * Use this API to create a new ChartSeries. + * Create new navigation property to series for drives * @param body The request body * @return a {@link WorkbookChartSeries} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartSeries post(@jakarta.annotation.Nonnull final WorkbookChartSeries body) { return post(body, null); } /** - * Use this API to create a new ChartSeries. + * Create new navigation property to series for drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartSeries} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartSeries post(@jakarta.annotation.Nonnull final WorkbookChartSeries body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -122,7 +118,7 @@ public WorkbookChartSeries post(@jakarta.annotation.Nonnull final WorkbookChartS return this.requestAdapter.send(requestInfo, errorMapping, WorkbookChartSeries::createFromDiscriminatorValue); } /** - * Retrieve a list of chartseries objects. + * Represents either a single series or collection of series in the chart. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -130,7 +126,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of chartseries objects. + * Represents either a single series or collection of series in the chart. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -142,7 +138,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to create a new ChartSeries. + * Create new navigation property to series for drives * @param body The request body * @return a {@link RequestInformation} */ @@ -151,7 +147,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to create a new ChartSeries. + * Create new navigation property to series for drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -176,7 +172,7 @@ public SeriesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw return new SeriesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of chartseries objects. + * Represents either a single series or collection of series in the chart. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/series/item/WorkbookChartSeriesItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/series/item/WorkbookChartSeriesItemRequestBuilder.java index 6233feb23db..53998390afe 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/series/item/WorkbookChartSeriesItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/series/item/WorkbookChartSeriesItemRequestBuilder.java @@ -73,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of chartseries object. + * Represents either a single series or collection of series in the chart. Read-only. * @return a {@link WorkbookChartSeries} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartSeries get() { return get(null); } /** - * Retrieve the properties and relationships of chartseries object. + * Represents either a single series or collection of series in the chart. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartSeries} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartSeries get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -97,23 +95,21 @@ public WorkbookChartSeries get(@jakarta.annotation.Nullable final java.util.func return this.requestAdapter.send(requestInfo, errorMapping, WorkbookChartSeries::createFromDiscriminatorValue); } /** - * Update the properties of chartSeries object. + * Update the navigation property series in drives * @param body The request body * @return a {@link WorkbookChartSeries} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartSeries patch(@jakarta.annotation.Nonnull final WorkbookChartSeries body) { return patch(body, null); } /** - * Update the properties of chartSeries object. + * Update the navigation property series in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartSeries} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartSeries patch(@jakarta.annotation.Nonnull final WorkbookChartSeries body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -144,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of chartseries object. + * Represents either a single series or collection of series in the chart. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -152,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of chartseries object. + * Represents either a single series or collection of series in the chart. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -164,7 +160,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of chartSeries object. + * Update the navigation property series in drives * @param body The request body * @return a {@link RequestInformation} */ @@ -173,7 +169,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of chartSeries object. + * Update the navigation property series in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -204,7 +200,7 @@ public WorkbookChartSeriesItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of chartseries object. + * Represents either a single series or collection of series in the chart. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/series/item/points/PointsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/series/item/points/PointsRequestBuilder.java index 0e7c4ba9e64..f4f4e73e145 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/series/item/points/PointsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/series/item/points/PointsRequestBuilder.java @@ -61,21 +61,19 @@ public PointsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/worksheets/{workbookWorksheet%2Did}/charts/{workbookChart%2Did}/series/{workbookChartSeries%2Did}/points{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of chartpoints objects. + * Represents a collection of all points in the series. Read-only. * @return a {@link WorkbookChartPointCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartPointCollectionResponse get() { return get(null); } /** - * Retrieve a list of chartpoints objects. + * Represents a collection of all points in the series. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartPointCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartPointCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -95,23 +93,21 @@ public ItemAtWithIndexRequestBuilder itemAtWithIndex(@jakarta.annotation.Nonnull return new ItemAtWithIndexRequestBuilder(pathParameters, requestAdapter, index); } /** - * Use this API to create a new ChartPoints. + * Create new navigation property to points for drives * @param body The request body * @return a {@link WorkbookChartPoint} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartPoint post(@jakarta.annotation.Nonnull final WorkbookChartPoint body) { return post(body, null); } /** - * Use this API to create a new ChartPoints. + * Create new navigation property to points for drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartPoint} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartPoint post(@jakarta.annotation.Nonnull final WorkbookChartPoint body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -122,7 +118,7 @@ public WorkbookChartPoint post(@jakarta.annotation.Nonnull final WorkbookChartPo return this.requestAdapter.send(requestInfo, errorMapping, WorkbookChartPoint::createFromDiscriminatorValue); } /** - * Retrieve a list of chartpoints objects. + * Represents a collection of all points in the series. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -130,7 +126,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of chartpoints objects. + * Represents a collection of all points in the series. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -142,7 +138,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to create a new ChartPoints. + * Create new navigation property to points for drives * @param body The request body * @return a {@link RequestInformation} */ @@ -151,7 +147,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to create a new ChartPoints. + * Create new navigation property to points for drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -176,7 +172,7 @@ public PointsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw return new PointsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of chartpoints objects. + * Represents a collection of all points in the series. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/series/item/points/item/WorkbookChartPointItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/series/item/points/item/WorkbookChartPointItemRequestBuilder.java index b442852f64b..eb82b45f284 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/series/item/points/item/WorkbookChartPointItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/series/item/points/item/WorkbookChartPointItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of chartpoint object. + * Represents a collection of all points in the series. Read-only. * @return a {@link WorkbookChartPoint} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartPoint get() { return get(null); } /** - * Retrieve the properties and relationships of chartpoint object. + * Represents a collection of all points in the series. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartPoint} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartPoint get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of chartpoint object. + * Represents a collection of all points in the series. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of chartpoint object. + * Represents a collection of all points in the series. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public WorkbookChartPointItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of chartpoint object. + * Represents a collection of all points in the series. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/series/item/points/itematwithindex/ItemAtWithIndexRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/series/item/points/itematwithindex/ItemAtWithIndexRequestBuilder.java index 4dbfcea425e..382c53af66f 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/series/item/points/itematwithindex/ItemAtWithIndexRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/series/item/points/itematwithindex/ItemAtWithIndexRequestBuilder.java @@ -47,19 +47,21 @@ public ItemAtWithIndexRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/worksheets/{workbookWorksheet%2Did}/charts/{workbookChart%2Did}/series/{workbookChartSeries%2Did}/points/itemAt(index={index})", rawUrl); } /** - * Invoke function itemAt + * Retrieve a point based on its position within the series. * @return a {@link WorkbookChartPoint} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartPoint get() { return get(null); } /** - * Invoke function itemAt + * Retrieve a point based on its position within the series. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartPoint} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartPoint get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -69,7 +71,7 @@ public WorkbookChartPoint get(@jakarta.annotation.Nullable final java.util.funct return this.requestAdapter.send(requestInfo, errorMapping, WorkbookChartPoint::createFromDiscriminatorValue); } /** - * Invoke function itemAt + * Retrieve a point based on its position within the series. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -77,7 +79,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function itemAt + * Retrieve a point based on its position within the series. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/series/itematwithindex/ItemAtWithIndexRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/series/itematwithindex/ItemAtWithIndexRequestBuilder.java index 89499090f41..8ecf993e53c 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/series/itematwithindex/ItemAtWithIndexRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/series/itematwithindex/ItemAtWithIndexRequestBuilder.java @@ -56,19 +56,21 @@ public ItemAtWithIndexRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/worksheets/{workbookWorksheet%2Did}/charts/{workbookChart%2Did}/series/itemAt(index={index})", rawUrl); } /** - * Invoke function itemAt + * Retrieves a series based on its position in the collection * @return a {@link WorkbookChartSeries} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartSeries get() { return get(null); } /** - * Invoke function itemAt + * Retrieves a series based on its position in the collection * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartSeries} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartSeries get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -78,7 +80,7 @@ public WorkbookChartSeries get(@jakarta.annotation.Nullable final java.util.func return this.requestAdapter.send(requestInfo, errorMapping, WorkbookChartSeries::createFromDiscriminatorValue); } /** - * Invoke function itemAt + * Retrieves a series based on its position in the collection * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -86,7 +88,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function itemAt + * Retrieves a series based on its position in the collection * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/series/itematwithindex/points/PointsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/series/itematwithindex/points/PointsRequestBuilder.java index c0ef432ba1f..dc79e8ce883 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/series/itematwithindex/points/PointsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/series/itematwithindex/points/PointsRequestBuilder.java @@ -38,21 +38,19 @@ public PointsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/worksheets/{workbookWorksheet%2Did}/charts/{workbookChart%2Did}/series/itemAt(index={index})/points{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of chartpoints objects. + * Represents a collection of all points in the series. Read-only. * @return a {@link WorkbookChartPointCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartPointCollectionResponse get() { return get(null); } /** - * Retrieve a list of chartpoints objects. + * Represents a collection of all points in the series. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartPointCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartPointCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -62,23 +60,21 @@ public WorkbookChartPointCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, WorkbookChartPointCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to create a new ChartPoints. + * Create new navigation property to points for drives * @param body The request body * @return a {@link WorkbookChartPoint} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartPoint post(@jakarta.annotation.Nonnull final WorkbookChartPoint body) { return post(body, null); } /** - * Use this API to create a new ChartPoints. + * Create new navigation property to points for drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartPoint} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartPoint post(@jakarta.annotation.Nonnull final WorkbookChartPoint body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -89,7 +85,7 @@ public WorkbookChartPoint post(@jakarta.annotation.Nonnull final WorkbookChartPo return this.requestAdapter.send(requestInfo, errorMapping, WorkbookChartPoint::createFromDiscriminatorValue); } /** - * Retrieve a list of chartpoints objects. + * Represents a collection of all points in the series. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -97,7 +93,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of chartpoints objects. + * Represents a collection of all points in the series. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -109,7 +105,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to create a new ChartPoints. + * Create new navigation property to points for drives * @param body The request body * @return a {@link RequestInformation} */ @@ -118,7 +114,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to create a new ChartPoints. + * Create new navigation property to points for drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -143,7 +139,7 @@ public PointsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw return new PointsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of chartpoints objects. + * Represents a collection of all points in the series. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/title/TitleRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/title/TitleRequestBuilder.java index aaa212ed707..2270b5030bd 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/title/TitleRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/item/title/TitleRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of charttitle object. + * Represents the title of the specified chart, including the text, visibility, position and formating of the title. Read-only. * @return a {@link WorkbookChartTitle} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartTitle get() { return get(null); } /** - * Retrieve the properties and relationships of charttitle object. + * Represents the title of the specified chart, including the text, visibility, position and formating of the title. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartTitle} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartTitle get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -88,23 +86,21 @@ public WorkbookChartTitle get(@jakarta.annotation.Nullable final java.util.funct return this.requestAdapter.send(requestInfo, errorMapping, WorkbookChartTitle::createFromDiscriminatorValue); } /** - * Update the properties of charttitle object. + * Update the navigation property title in drives * @param body The request body * @return a {@link WorkbookChartTitle} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartTitle patch(@jakarta.annotation.Nonnull final WorkbookChartTitle body) { return patch(body, null); } /** - * Update the properties of charttitle object. + * Update the navigation property title in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartTitle} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartTitle patch(@jakarta.annotation.Nonnull final WorkbookChartTitle body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of charttitle object. + * Represents the title of the specified chart, including the text, visibility, position and formating of the title. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of charttitle object. + * Represents the title of the specified chart, including the text, visibility, position and formating of the title. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of charttitle object. + * Update the navigation property title in drives * @param body The request body * @return a {@link RequestInformation} */ @@ -164,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of charttitle object. + * Update the navigation property title in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -195,7 +191,7 @@ public TitleRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of charttitle object. + * Represents the title of the specified chart, including the text, visibility, position and formating of the title. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/itematwithindex/ItemAtWithIndexRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/itematwithindex/ItemAtWithIndexRequestBuilder.java index 2a177fde014..226d03132fd 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/itematwithindex/ItemAtWithIndexRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/itematwithindex/ItemAtWithIndexRequestBuilder.java @@ -131,19 +131,21 @@ public ItemAtWithIndexRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/worksheets/{workbookWorksheet%2Did}/charts/itemAt(index={index})", rawUrl); } /** - * Invoke function itemAt + * Gets a chart based on its position in the collection. * @return a {@link WorkbookChart} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChart get() { return get(null); } /** - * Invoke function itemAt + * Gets a chart based on its position in the collection. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChart} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChart get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -189,7 +191,7 @@ public ImageWithWidthWithHeightWithFittingModeRequestBuilder imageWithWidthWithH return new ImageWithWidthWithHeightWithFittingModeRequestBuilder(pathParameters, requestAdapter, fittingMode, height, width); } /** - * Invoke function itemAt + * Gets a chart based on its position in the collection. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -197,7 +199,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function itemAt + * Gets a chart based on its position in the collection. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/itematwithindex/datalabels/DataLabelsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/itematwithindex/datalabels/DataLabelsRequestBuilder.java index bb84b1fd664..b9df13f73b8 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/itematwithindex/datalabels/DataLabelsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/itematwithindex/datalabels/DataLabelsRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of chartdatalabels object. + * Represents the datalabels on the chart. Read-only. * @return a {@link WorkbookChartDataLabels} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartDataLabels get() { return get(null); } /** - * Retrieve the properties and relationships of chartdatalabels object. + * Represents the datalabels on the chart. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartDataLabels} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartDataLabels get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public WorkbookChartDataLabels get(@jakarta.annotation.Nullable final java.util. return this.requestAdapter.send(requestInfo, errorMapping, WorkbookChartDataLabels::createFromDiscriminatorValue); } /** - * Update the properties of chartdatalabels object. + * Update the navigation property dataLabels in drives * @param body The request body * @return a {@link WorkbookChartDataLabels} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartDataLabels patch(@jakarta.annotation.Nonnull final WorkbookChartDataLabels body) { return patch(body, null); } /** - * Update the properties of chartdatalabels object. + * Update the navigation property dataLabels in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartDataLabels} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartDataLabels patch(@jakarta.annotation.Nonnull final WorkbookChartDataLabels body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of chartdatalabels object. + * Represents the datalabels on the chart. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of chartdatalabels object. + * Represents the datalabels on the chart. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of chartdatalabels object. + * Update the navigation property dataLabels in drives * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of chartdatalabels object. + * Update the navigation property dataLabels in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public DataLabelsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of chartdatalabels object. + * Represents the datalabels on the chart. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/itematwithindex/legend/LegendRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/itematwithindex/legend/LegendRequestBuilder.java index f294fc15fcf..0f0d8900463 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/itematwithindex/legend/LegendRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/itematwithindex/legend/LegendRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of chartlegend object. + * Represents the legend for the chart. Read-only. * @return a {@link WorkbookChartLegend} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartLegend get() { return get(null); } /** - * Retrieve the properties and relationships of chartlegend object. + * Represents the legend for the chart. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartLegend} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartLegend get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public WorkbookChartLegend get(@jakarta.annotation.Nullable final java.util.func return this.requestAdapter.send(requestInfo, errorMapping, WorkbookChartLegend::createFromDiscriminatorValue); } /** - * Update the properties of chartlegend object. + * Update the navigation property legend in drives * @param body The request body * @return a {@link WorkbookChartLegend} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartLegend patch(@jakarta.annotation.Nonnull final WorkbookChartLegend body) { return patch(body, null); } /** - * Update the properties of chartlegend object. + * Update the navigation property legend in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartLegend} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartLegend patch(@jakarta.annotation.Nonnull final WorkbookChartLegend body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of chartlegend object. + * Represents the legend for the chart. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of chartlegend object. + * Represents the legend for the chart. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of chartlegend object. + * Update the navigation property legend in drives * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of chartlegend object. + * Update the navigation property legend in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public LegendRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of chartlegend object. + * Represents the legend for the chart. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/itematwithindex/series/SeriesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/itematwithindex/series/SeriesRequestBuilder.java index 7bceec62460..9b36649a15e 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/itematwithindex/series/SeriesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/itematwithindex/series/SeriesRequestBuilder.java @@ -38,21 +38,19 @@ public SeriesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/worksheets/{workbookWorksheet%2Did}/charts/itemAt(index={index})/series{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of chartseries objects. + * Represents either a single series or collection of series in the chart. Read-only. * @return a {@link WorkbookChartSeriesCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartSeriesCollectionResponse get() { return get(null); } /** - * Retrieve a list of chartseries objects. + * Represents either a single series or collection of series in the chart. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartSeriesCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartSeriesCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -62,23 +60,21 @@ public WorkbookChartSeriesCollectionResponse get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, WorkbookChartSeriesCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to create a new ChartSeries. + * Create new navigation property to series for drives * @param body The request body * @return a {@link WorkbookChartSeries} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartSeries post(@jakarta.annotation.Nonnull final WorkbookChartSeries body) { return post(body, null); } /** - * Use this API to create a new ChartSeries. + * Create new navigation property to series for drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartSeries} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartSeries post(@jakarta.annotation.Nonnull final WorkbookChartSeries body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -89,7 +85,7 @@ public WorkbookChartSeries post(@jakarta.annotation.Nonnull final WorkbookChartS return this.requestAdapter.send(requestInfo, errorMapping, WorkbookChartSeries::createFromDiscriminatorValue); } /** - * Retrieve a list of chartseries objects. + * Represents either a single series or collection of series in the chart. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -97,7 +93,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of chartseries objects. + * Represents either a single series or collection of series in the chart. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -109,7 +105,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to create a new ChartSeries. + * Create new navigation property to series for drives * @param body The request body * @return a {@link RequestInformation} */ @@ -118,7 +114,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to create a new ChartSeries. + * Create new navigation property to series for drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -143,7 +139,7 @@ public SeriesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw return new SeriesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of chartseries objects. + * Represents either a single series or collection of series in the chart. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/itematwithindex/title/TitleRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/itematwithindex/title/TitleRequestBuilder.java index c27ccad2005..c46412cf190 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/itematwithindex/title/TitleRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/itematwithindex/title/TitleRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of charttitle object. + * Represents the title of the specified chart, including the text, visibility, position and formating of the title. Read-only. * @return a {@link WorkbookChartTitle} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartTitle get() { return get(null); } /** - * Retrieve the properties and relationships of charttitle object. + * Represents the title of the specified chart, including the text, visibility, position and formating of the title. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartTitle} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartTitle get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public WorkbookChartTitle get(@jakarta.annotation.Nullable final java.util.funct return this.requestAdapter.send(requestInfo, errorMapping, WorkbookChartTitle::createFromDiscriminatorValue); } /** - * Update the properties of charttitle object. + * Update the navigation property title in drives * @param body The request body * @return a {@link WorkbookChartTitle} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartTitle patch(@jakarta.annotation.Nonnull final WorkbookChartTitle body) { return patch(body, null); } /** - * Update the properties of charttitle object. + * Update the navigation property title in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartTitle} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartTitle patch(@jakarta.annotation.Nonnull final WorkbookChartTitle body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of charttitle object. + * Represents the title of the specified chart, including the text, visibility, position and formating of the title. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of charttitle object. + * Represents the title of the specified chart, including the text, visibility, position and formating of the title. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of charttitle object. + * Update the navigation property title in drives * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of charttitle object. + * Update the navigation property title in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public TitleRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of charttitle object. + * Represents the title of the specified chart, including the text, visibility, position and formating of the title. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/itemwithname/datalabels/DataLabelsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/itemwithname/datalabels/DataLabelsRequestBuilder.java index 2291d5c5519..e85f7977db6 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/itemwithname/datalabels/DataLabelsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/itemwithname/datalabels/DataLabelsRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of chartdatalabels object. + * Represents the datalabels on the chart. Read-only. * @return a {@link WorkbookChartDataLabels} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartDataLabels get() { return get(null); } /** - * Retrieve the properties and relationships of chartdatalabels object. + * Represents the datalabels on the chart. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartDataLabels} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartDataLabels get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public WorkbookChartDataLabels get(@jakarta.annotation.Nullable final java.util. return this.requestAdapter.send(requestInfo, errorMapping, WorkbookChartDataLabels::createFromDiscriminatorValue); } /** - * Update the properties of chartdatalabels object. + * Update the navigation property dataLabels in drives * @param body The request body * @return a {@link WorkbookChartDataLabels} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartDataLabels patch(@jakarta.annotation.Nonnull final WorkbookChartDataLabels body) { return patch(body, null); } /** - * Update the properties of chartdatalabels object. + * Update the navigation property dataLabels in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartDataLabels} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartDataLabels patch(@jakarta.annotation.Nonnull final WorkbookChartDataLabels body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of chartdatalabels object. + * Represents the datalabels on the chart. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of chartdatalabels object. + * Represents the datalabels on the chart. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of chartdatalabels object. + * Update the navigation property dataLabels in drives * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of chartdatalabels object. + * Update the navigation property dataLabels in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public DataLabelsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of chartdatalabels object. + * Represents the datalabels on the chart. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/itemwithname/legend/LegendRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/itemwithname/legend/LegendRequestBuilder.java index f7236392068..f54ab37a93e 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/itemwithname/legend/LegendRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/itemwithname/legend/LegendRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of chartlegend object. + * Represents the legend for the chart. Read-only. * @return a {@link WorkbookChartLegend} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartLegend get() { return get(null); } /** - * Retrieve the properties and relationships of chartlegend object. + * Represents the legend for the chart. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartLegend} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartLegend get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public WorkbookChartLegend get(@jakarta.annotation.Nullable final java.util.func return this.requestAdapter.send(requestInfo, errorMapping, WorkbookChartLegend::createFromDiscriminatorValue); } /** - * Update the properties of chartlegend object. + * Update the navigation property legend in drives * @param body The request body * @return a {@link WorkbookChartLegend} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartLegend patch(@jakarta.annotation.Nonnull final WorkbookChartLegend body) { return patch(body, null); } /** - * Update the properties of chartlegend object. + * Update the navigation property legend in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartLegend} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartLegend patch(@jakarta.annotation.Nonnull final WorkbookChartLegend body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of chartlegend object. + * Represents the legend for the chart. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of chartlegend object. + * Represents the legend for the chart. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of chartlegend object. + * Update the navigation property legend in drives * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of chartlegend object. + * Update the navigation property legend in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public LegendRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of chartlegend object. + * Represents the legend for the chart. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/itemwithname/series/SeriesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/itemwithname/series/SeriesRequestBuilder.java index bedadbe6dd8..d1c5d2ced72 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/itemwithname/series/SeriesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/itemwithname/series/SeriesRequestBuilder.java @@ -38,21 +38,19 @@ public SeriesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/worksheets/{workbookWorksheet%2Did}/charts/item(name='{name}')/series{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of chartseries objects. + * Represents either a single series or collection of series in the chart. Read-only. * @return a {@link WorkbookChartSeriesCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartSeriesCollectionResponse get() { return get(null); } /** - * Retrieve a list of chartseries objects. + * Represents either a single series or collection of series in the chart. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartSeriesCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartSeriesCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -62,23 +60,21 @@ public WorkbookChartSeriesCollectionResponse get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, WorkbookChartSeriesCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to create a new ChartSeries. + * Create new navigation property to series for drives * @param body The request body * @return a {@link WorkbookChartSeries} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartSeries post(@jakarta.annotation.Nonnull final WorkbookChartSeries body) { return post(body, null); } /** - * Use this API to create a new ChartSeries. + * Create new navigation property to series for drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartSeries} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartSeries post(@jakarta.annotation.Nonnull final WorkbookChartSeries body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -89,7 +85,7 @@ public WorkbookChartSeries post(@jakarta.annotation.Nonnull final WorkbookChartS return this.requestAdapter.send(requestInfo, errorMapping, WorkbookChartSeries::createFromDiscriminatorValue); } /** - * Retrieve a list of chartseries objects. + * Represents either a single series or collection of series in the chart. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -97,7 +93,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of chartseries objects. + * Represents either a single series or collection of series in the chart. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -109,7 +105,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to create a new ChartSeries. + * Create new navigation property to series for drives * @param body The request body * @return a {@link RequestInformation} */ @@ -118,7 +114,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to create a new ChartSeries. + * Create new navigation property to series for drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -143,7 +139,7 @@ public SeriesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw return new SeriesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of chartseries objects. + * Represents either a single series or collection of series in the chart. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/itemwithname/title/TitleRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/itemwithname/title/TitleRequestBuilder.java index 23195a2eb2a..6480444a786 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/itemwithname/title/TitleRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/charts/itemwithname/title/TitleRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of charttitle object. + * Represents the title of the specified chart, including the text, visibility, position and formating of the title. Read-only. * @return a {@link WorkbookChartTitle} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartTitle get() { return get(null); } /** - * Retrieve the properties and relationships of charttitle object. + * Represents the title of the specified chart, including the text, visibility, position and formating of the title. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartTitle} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartTitle get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public WorkbookChartTitle get(@jakarta.annotation.Nullable final java.util.funct return this.requestAdapter.send(requestInfo, errorMapping, WorkbookChartTitle::createFromDiscriminatorValue); } /** - * Update the properties of charttitle object. + * Update the navigation property title in drives * @param body The request body * @return a {@link WorkbookChartTitle} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartTitle patch(@jakarta.annotation.Nonnull final WorkbookChartTitle body) { return patch(body, null); } /** - * Update the properties of charttitle object. + * Update the navigation property title in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookChartTitle} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookChartTitle patch(@jakarta.annotation.Nonnull final WorkbookChartTitle body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of charttitle object. + * Represents the title of the specified chart, including the text, visibility, position and formating of the title. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of charttitle object. + * Represents the title of the specified chart, including the text, visibility, position and formating of the title. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of charttitle object. + * Update the navigation property title in drives * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of charttitle object. + * Update the navigation property title in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public TitleRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of charttitle object. + * Represents the title of the specified chart, including the text, visibility, position and formating of the title. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/names/NamesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/names/NamesRequestBuilder.java index 70d9f0a776a..6b7f9e3725d 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/names/NamesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/names/NamesRequestBuilder.java @@ -78,21 +78,19 @@ public NamesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/worksheets/{workbookWorksheet%2Did}/names{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of named item associated with the worksheet. + * Returns collection of names that are associated with the worksheet. Read-only. * @return a {@link WorkbookNamedItemCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookNamedItemCollectionResponse get() { return get(null); } /** - * Retrieve a list of named item associated with the worksheet. + * Returns collection of names that are associated with the worksheet. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookNamedItemCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookNamedItemCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -127,7 +125,7 @@ public WorkbookNamedItem post(@jakarta.annotation.Nonnull final WorkbookNamedIte return this.requestAdapter.send(requestInfo, errorMapping, WorkbookNamedItem::createFromDiscriminatorValue); } /** - * Retrieve a list of named item associated with the worksheet. + * Returns collection of names that are associated with the worksheet. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -135,7 +133,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of named item associated with the worksheet. + * Returns collection of names that are associated with the worksheet. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -181,7 +179,7 @@ public NamesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new NamesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of named item associated with the worksheet. + * Returns collection of names that are associated with the worksheet. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/pivottables/PivotTablesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/pivottables/PivotTablesRequestBuilder.java index 95d1c508786..588a1cc4af8 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/pivottables/PivotTablesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/pivottables/PivotTablesRequestBuilder.java @@ -69,21 +69,19 @@ public PivotTablesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/worksheets/{workbookWorksheet%2Did}/pivotTables{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of workbookpivottable objects. + * Collection of PivotTables that are part of the worksheet. * @return a {@link WorkbookPivotTableCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookPivotTableCollectionResponse get() { return get(null); } /** - * Retrieve a list of workbookpivottable objects. + * Collection of PivotTables that are part of the worksheet. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookPivotTableCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookPivotTableCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -118,7 +116,7 @@ public WorkbookPivotTable post(@jakarta.annotation.Nonnull final WorkbookPivotTa return this.requestAdapter.send(requestInfo, errorMapping, WorkbookPivotTable::createFromDiscriminatorValue); } /** - * Retrieve a list of workbookpivottable objects. + * Collection of PivotTables that are part of the worksheet. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -126,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of workbookpivottable objects. + * Collection of PivotTables that are part of the worksheet. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -172,7 +170,7 @@ public PivotTablesRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new PivotTablesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of workbookpivottable objects. + * Collection of PivotTables that are part of the worksheet. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/pivottables/item/WorkbookPivotTableItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/pivottables/item/WorkbookPivotTableItemRequestBuilder.java index e1705387ad9..a9762c02938 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/pivottables/item/WorkbookPivotTableItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/pivottables/item/WorkbookPivotTableItemRequestBuilder.java @@ -73,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of workbookPivotTable object. + * Collection of PivotTables that are part of the worksheet. * @return a {@link WorkbookPivotTable} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookPivotTable get() { return get(null); } /** - * Retrieve the properties and relationships of workbookPivotTable object. + * Collection of PivotTables that are part of the worksheet. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookPivotTable} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookPivotTable get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -142,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of workbookPivotTable object. + * Collection of PivotTables that are part of the worksheet. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -150,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of workbookPivotTable object. + * Collection of PivotTables that are part of the worksheet. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -202,7 +200,7 @@ public WorkbookPivotTableItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of workbookPivotTable object. + * Collection of PivotTables that are part of the worksheet. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/protection/ProtectionRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/protection/ProtectionRequestBuilder.java index dc84e578159..7fc2df42d84 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/protection/ProtectionRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/protection/ProtectionRequestBuilder.java @@ -73,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of worksheetprotection object. + * Returns sheet protection object for a worksheet. Read-only. * @return a {@link WorkbookWorksheetProtection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookWorksheetProtection get() { return get(null); } /** - * Retrieve the properties and relationships of worksheetprotection object. + * Returns sheet protection object for a worksheet. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookWorksheetProtection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookWorksheetProtection get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -142,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of worksheetprotection object. + * Returns sheet protection object for a worksheet. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -150,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of worksheetprotection object. + * Returns sheet protection object for a worksheet. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -202,7 +200,7 @@ public ProtectionRequestBuilder withUrl(@jakarta.annotation.Nonnull final String public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of worksheetprotection object. + * Returns sheet protection object for a worksheet. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/TablesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/TablesRequestBuilder.java index 612416595c2..0f1f8019e5a 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/TablesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/TablesRequestBuilder.java @@ -70,21 +70,19 @@ public TablesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/worksheets/{workbookWorksheet%2Did}/tables{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of table objects. + * Collection of tables that are part of the worksheet. Read-only. * @return a {@link WorkbookTableCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableCollectionResponse get() { return get(null); } /** - * Retrieve a list of table objects. + * Collection of tables that are part of the worksheet. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookTableCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -129,7 +127,7 @@ public WorkbookTable post(@jakarta.annotation.Nonnull final WorkbookTable body, return this.requestAdapter.send(requestInfo, errorMapping, WorkbookTable::createFromDiscriminatorValue); } /** - * Retrieve a list of table objects. + * Collection of tables that are part of the worksheet. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -137,7 +135,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of table objects. + * Collection of tables that are part of the worksheet. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -183,7 +181,7 @@ public TablesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw return new TablesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of table objects. + * Collection of tables that are part of the worksheet. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/add/AddRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/add/AddRequestBuilder.java index 635c39d3b34..a487e3decfd 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/add/AddRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/add/AddRequestBuilder.java @@ -36,23 +36,23 @@ public AddRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/worksheets/{workbookWorksheet%2Did}/tables/add", rawUrl); } /** - * Create a new table. The range source address determines the worksheet under which the table will be added. If the table can't be added (for example, because the address is invalid, or the table would overlap with another table), an error is generated. + * Use this API to create a new Table. * @param body The request body * @return a {@link WorkbookTable} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here + * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTable post(@jakarta.annotation.Nonnull final AddPostRequestBody body) { return post(body, null); } /** - * Create a new table. The range source address determines the worksheet under which the table will be added. If the table can't be added (for example, because the address is invalid, or the table would overlap with another table), an error is generated. + * Use this API to create a new Table. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookTable} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here + * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTable post(@jakarta.annotation.Nonnull final AddPostRequestBody body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -63,7 +63,7 @@ public WorkbookTable post(@jakarta.annotation.Nonnull final AddPostRequestBody b return this.requestAdapter.send(requestInfo, errorMapping, WorkbookTable::createFromDiscriminatorValue); } /** - * Create a new table. The range source address determines the worksheet under which the table will be added. If the table can't be added (for example, because the address is invalid, or the table would overlap with another table), an error is generated. + * Use this API to create a new Table. * @param body The request body * @return a {@link RequestInformation} */ @@ -72,7 +72,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new table. The range source address determines the worksheet under which the table will be added. If the table can't be added (for example, because the address is invalid, or the table would overlap with another table), an error is generated. + * Use this API to create a new Table. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/item/columns/ColumnsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/item/columns/ColumnsRequestBuilder.java index 1c7a77e1e3d..fac0c115fc1 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/item/columns/ColumnsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/item/columns/ColumnsRequestBuilder.java @@ -70,21 +70,19 @@ public ColumnsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/worksheets/{workbookWorksheet%2Did}/tables/{workbookTable%2Did}/columns{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of tablecolumn objects. + * Represents a collection of all the columns in the table. Read-only. * @return a {@link WorkbookTableColumnCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableColumnCollectionResponse get() { return get(null); } /** - * Retrieve a list of tablecolumn objects. + * Represents a collection of all the columns in the table. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookTableColumnCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableColumnCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -104,23 +102,21 @@ public ItemAtWithIndexRequestBuilder itemAtWithIndex(@jakarta.annotation.Nonnull return new ItemAtWithIndexRequestBuilder(pathParameters, requestAdapter, index); } /** - * Use this API to create a new TableColumn. + * Create new navigation property to columns for drives * @param body The request body * @return a {@link WorkbookTableColumn} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableColumn post(@jakarta.annotation.Nonnull final WorkbookTableColumn body) { return post(body, null); } /** - * Use this API to create a new TableColumn. + * Create new navigation property to columns for drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookTableColumn} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableColumn post(@jakarta.annotation.Nonnull final WorkbookTableColumn body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -131,7 +127,7 @@ public WorkbookTableColumn post(@jakarta.annotation.Nonnull final WorkbookTableC return this.requestAdapter.send(requestInfo, errorMapping, WorkbookTableColumn::createFromDiscriminatorValue); } /** - * Retrieve a list of tablecolumn objects. + * Represents a collection of all the columns in the table. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -139,7 +135,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of tablecolumn objects. + * Represents a collection of all the columns in the table. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -151,7 +147,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to create a new TableColumn. + * Create new navigation property to columns for drives * @param body The request body * @return a {@link RequestInformation} */ @@ -160,7 +156,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to create a new TableColumn. + * Create new navigation property to columns for drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -185,7 +181,7 @@ public ColumnsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new ColumnsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of tablecolumn objects. + * Represents a collection of all the columns in the table. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/item/columns/item/WorkbookTableColumnItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/item/columns/item/WorkbookTableColumnItemRequestBuilder.java index fc6843ec8a2..06b0f031063 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/item/columns/item/WorkbookTableColumnItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/item/columns/item/WorkbookTableColumnItemRequestBuilder.java @@ -82,18 +82,16 @@ public WorkbookTableColumnItemRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/worksheets/{workbookWorksheet%2Did}/tables/{workbookTable%2Did}/columns/{workbookTableColumn%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes the column from the table. + * Delete navigation property columns for drives * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes the column from the table. + * Delete navigation property columns for drives * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -102,21 +100,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of tablecolumn object. + * Represents a collection of all the columns in the table. Read-only. * @return a {@link WorkbookTableColumn} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableColumn get() { return get(null); } /** - * Retrieve the properties and relationships of tablecolumn object. + * Represents a collection of all the columns in the table. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookTableColumn} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableColumn get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,23 +122,21 @@ public WorkbookTableColumn get(@jakarta.annotation.Nullable final java.util.func return this.requestAdapter.send(requestInfo, errorMapping, WorkbookTableColumn::createFromDiscriminatorValue); } /** - * Update the properties of tablecolumn object. + * Update the navigation property columns in drives * @param body The request body * @return a {@link WorkbookTableColumn} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableColumn patch(@jakarta.annotation.Nonnull final WorkbookTableColumn body) { return patch(body, null); } /** - * Update the properties of tablecolumn object. + * Update the navigation property columns in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookTableColumn} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableColumn patch(@jakarta.annotation.Nonnull final WorkbookTableColumn body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -153,7 +147,7 @@ public WorkbookTableColumn patch(@jakarta.annotation.Nonnull final WorkbookTable return this.requestAdapter.send(requestInfo, errorMapping, WorkbookTableColumn::createFromDiscriminatorValue); } /** - * Deletes the column from the table. + * Delete navigation property columns for drives * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -161,7 +155,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes the column from the table. + * Delete navigation property columns for drives * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -173,7 +167,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of tablecolumn object. + * Represents a collection of all the columns in the table. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -181,7 +175,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of tablecolumn object. + * Represents a collection of all the columns in the table. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +187,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of tablecolumn object. + * Update the navigation property columns in drives * @param body The request body * @return a {@link RequestInformation} */ @@ -202,7 +196,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of tablecolumn object. + * Update the navigation property columns in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -233,7 +227,7 @@ public WorkbookTableColumnItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of tablecolumn object. + * Represents a collection of all the columns in the table. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/item/columns/itematwithindex/ItemAtWithIndexRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/item/columns/itematwithindex/ItemAtWithIndexRequestBuilder.java index 3ecf58d134f..68628c25811 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/item/columns/itematwithindex/ItemAtWithIndexRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/item/columns/itematwithindex/ItemAtWithIndexRequestBuilder.java @@ -83,19 +83,21 @@ public ItemAtWithIndexRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/worksheets/{workbookWorksheet%2Did}/tables/{workbookTable%2Did}/columns/itemAt(index={index})", rawUrl); } /** - * Invoke function itemAt + * Gets a column based on its position in the collection. * @return a {@link WorkbookTableColumn} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableColumn get() { return get(null); } /** - * Invoke function itemAt + * Gets a column based on its position in the collection. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookTableColumn} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableColumn get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -105,7 +107,7 @@ public WorkbookTableColumn get(@jakarta.annotation.Nullable final java.util.func return this.requestAdapter.send(requestInfo, errorMapping, WorkbookTableColumn::createFromDiscriminatorValue); } /** - * Invoke function itemAt + * Gets a column based on its position in the collection. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -113,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function itemAt + * Gets a column based on its position in the collection. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/item/rows/RowsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/item/rows/RowsRequestBuilder.java index 2d306a06f3b..36c43e62495 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/item/rows/RowsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/item/rows/RowsRequestBuilder.java @@ -70,21 +70,19 @@ public RowsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/worksheets/{workbookWorksheet%2Did}/tables/{workbookTable%2Did}/rows{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of tablerow objects. + * Represents a collection of all the rows in the table. Read-only. * @return a {@link WorkbookTableRowCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableRowCollectionResponse get() { return get(null); } /** - * Retrieve a list of tablerow objects. + * Represents a collection of all the rows in the table. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookTableRowCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableRowCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -104,23 +102,21 @@ public ItemAtWithIndexRequestBuilder itemAtWithIndex(@jakarta.annotation.Nonnull return new ItemAtWithIndexRequestBuilder(pathParameters, requestAdapter, index); } /** - * Adds rows to the end of a table. Note that this API can accept multiple rows of data. Adding one row at a time can affect performance. The recommended approach is to batch the rows together in a single call rather than inserting single rows. For best results, collect the rows to be inserted on the application side and perform a single row add operation. Experiment with the number of rows to determine the ideal number of rows to use in a single API call. This request might occasionally result in a 504 HTTP error. The appropriate response to this error is to repeat the request. + * Create new navigation property to rows for drives * @param body The request body * @return a {@link WorkbookTableRow} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableRow post(@jakarta.annotation.Nonnull final WorkbookTableRow body) { return post(body, null); } /** - * Adds rows to the end of a table. Note that this API can accept multiple rows of data. Adding one row at a time can affect performance. The recommended approach is to batch the rows together in a single call rather than inserting single rows. For best results, collect the rows to be inserted on the application side and perform a single row add operation. Experiment with the number of rows to determine the ideal number of rows to use in a single API call. This request might occasionally result in a 504 HTTP error. The appropriate response to this error is to repeat the request. + * Create new navigation property to rows for drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookTableRow} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableRow post(@jakarta.annotation.Nonnull final WorkbookTableRow body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -131,7 +127,7 @@ public WorkbookTableRow post(@jakarta.annotation.Nonnull final WorkbookTableRow return this.requestAdapter.send(requestInfo, errorMapping, WorkbookTableRow::createFromDiscriminatorValue); } /** - * Retrieve a list of tablerow objects. + * Represents a collection of all the rows in the table. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -139,7 +135,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of tablerow objects. + * Represents a collection of all the rows in the table. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -151,7 +147,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Adds rows to the end of a table. Note that this API can accept multiple rows of data. Adding one row at a time can affect performance. The recommended approach is to batch the rows together in a single call rather than inserting single rows. For best results, collect the rows to be inserted on the application side and perform a single row add operation. Experiment with the number of rows to determine the ideal number of rows to use in a single API call. This request might occasionally result in a 504 HTTP error. The appropriate response to this error is to repeat the request. + * Create new navigation property to rows for drives * @param body The request body * @return a {@link RequestInformation} */ @@ -160,7 +156,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Adds rows to the end of a table. Note that this API can accept multiple rows of data. Adding one row at a time can affect performance. The recommended approach is to batch the rows together in a single call rather than inserting single rows. For best results, collect the rows to be inserted on the application side and perform a single row add operation. Experiment with the number of rows to determine the ideal number of rows to use in a single API call. This request might occasionally result in a 504 HTTP error. The appropriate response to this error is to repeat the request. + * Create new navigation property to rows for drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -185,7 +181,7 @@ public RowsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr return new RowsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of tablerow objects. + * Represents a collection of all the rows in the table. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/item/rows/item/WorkbookTableRowItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/item/rows/item/WorkbookTableRowItemRequestBuilder.java index 0958b1b915e..47a6b818ad2 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/item/rows/item/WorkbookTableRowItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/item/rows/item/WorkbookTableRowItemRequestBuilder.java @@ -46,18 +46,16 @@ public WorkbookTableRowItemRequestBuilder(@jakarta.annotation.Nonnull final Stri super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/worksheets/{workbookWorksheet%2Did}/tables/{workbookTable%2Did}/rows/{workbookTableRow%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes the row from the table. + * Delete navigation property rows for drives * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes the row from the table. + * Delete navigation property rows for drives * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of tablerow object. + * Represents a collection of all the rows in the table. Read-only. * @return a {@link WorkbookTableRow} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableRow get() { return get(null); } /** - * Retrieve the properties and relationships of tablerow object. + * Represents a collection of all the rows in the table. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookTableRow} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableRow get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public WorkbookTableRow get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, WorkbookTableRow::createFromDiscriminatorValue); } /** - * Update the properties of tablerow object. + * Update the navigation property rows in drives * @param body The request body * @return a {@link WorkbookTableRow} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableRow patch(@jakarta.annotation.Nonnull final WorkbookTableRow body) { return patch(body, null); } /** - * Update the properties of tablerow object. + * Update the navigation property rows in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookTableRow} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableRow patch(@jakarta.annotation.Nonnull final WorkbookTableRow body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public WorkbookTableRow patch(@jakarta.annotation.Nonnull final WorkbookTableRow return this.requestAdapter.send(requestInfo, errorMapping, WorkbookTableRow::createFromDiscriminatorValue); } /** - * Deletes the row from the table. + * Delete navigation property rows for drives * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes the row from the table. + * Delete navigation property rows for drives * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of tablerow object. + * Represents a collection of all the rows in the table. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of tablerow object. + * Represents a collection of all the rows in the table. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of tablerow object. + * Update the navigation property rows in drives * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of tablerow object. + * Update the navigation property rows in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public WorkbookTableRowItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fi public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of tablerow object. + * Represents a collection of all the rows in the table. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/item/rows/itematwithindex/ItemAtWithIndexRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/item/rows/itematwithindex/ItemAtWithIndexRequestBuilder.java index 84f5ad1d910..53388e78a99 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/item/rows/itematwithindex/ItemAtWithIndexRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/item/rows/itematwithindex/ItemAtWithIndexRequestBuilder.java @@ -47,19 +47,21 @@ public ItemAtWithIndexRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/worksheets/{workbookWorksheet%2Did}/tables/{workbookTable%2Did}/rows/itemAt(index={index})", rawUrl); } /** - * Invoke function itemAt + * Gets a row based on its position in the collection. * @return a {@link WorkbookTableRow} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableRow get() { return get(null); } /** - * Invoke function itemAt + * Gets a row based on its position in the collection. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookTableRow} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableRow get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -69,7 +71,7 @@ public WorkbookTableRow get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, WorkbookTableRow::createFromDiscriminatorValue); } /** - * Invoke function itemAt + * Gets a row based on its position in the collection. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -77,7 +79,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function itemAt + * Gets a row based on its position in the collection. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/item/sort/SortRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/item/sort/SortRequestBuilder.java index be67844f957..b862ecb0c32 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/item/sort/SortRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/item/sort/SortRequestBuilder.java @@ -82,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of tablesort object. + * Represents the sorting for the table. Read-only. * @return a {@link WorkbookTableSort} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableSort get() { return get(null); } /** - * Retrieve the properties and relationships of tablesort object. + * Represents the sorting for the table. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookTableSort} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableSort get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -151,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of tablesort object. + * Represents the sorting for the table. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -159,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of tablesort object. + * Represents the sorting for the table. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -211,7 +209,7 @@ public SortRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of tablesort object. + * Represents the sorting for the table. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/itematwithindex/columns/ColumnsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/itematwithindex/columns/ColumnsRequestBuilder.java index 459a6fd4001..051d7395815 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/itematwithindex/columns/ColumnsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/itematwithindex/columns/ColumnsRequestBuilder.java @@ -38,21 +38,19 @@ public ColumnsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/worksheets/{workbookWorksheet%2Did}/tables/itemAt(index={index})/columns{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of tablecolumn objects. + * Represents a collection of all the columns in the table. Read-only. * @return a {@link WorkbookTableColumnCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableColumnCollectionResponse get() { return get(null); } /** - * Retrieve a list of tablecolumn objects. + * Represents a collection of all the columns in the table. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookTableColumnCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableColumnCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -62,23 +60,21 @@ public WorkbookTableColumnCollectionResponse get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, WorkbookTableColumnCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to create a new TableColumn. + * Create new navigation property to columns for drives * @param body The request body * @return a {@link WorkbookTableColumn} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableColumn post(@jakarta.annotation.Nonnull final WorkbookTableColumn body) { return post(body, null); } /** - * Use this API to create a new TableColumn. + * Create new navigation property to columns for drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookTableColumn} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableColumn post(@jakarta.annotation.Nonnull final WorkbookTableColumn body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -89,7 +85,7 @@ public WorkbookTableColumn post(@jakarta.annotation.Nonnull final WorkbookTableC return this.requestAdapter.send(requestInfo, errorMapping, WorkbookTableColumn::createFromDiscriminatorValue); } /** - * Retrieve a list of tablecolumn objects. + * Represents a collection of all the columns in the table. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -97,7 +93,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of tablecolumn objects. + * Represents a collection of all the columns in the table. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -109,7 +105,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to create a new TableColumn. + * Create new navigation property to columns for drives * @param body The request body * @return a {@link RequestInformation} */ @@ -118,7 +114,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to create a new TableColumn. + * Create new navigation property to columns for drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -143,7 +139,7 @@ public ColumnsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new ColumnsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of tablecolumn objects. + * Represents a collection of all the columns in the table. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/itematwithindex/rows/RowsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/itematwithindex/rows/RowsRequestBuilder.java index 568e028a353..63cc127027c 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/itematwithindex/rows/RowsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/itematwithindex/rows/RowsRequestBuilder.java @@ -38,21 +38,19 @@ public RowsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/items/{driveItem%2Did}/workbook/worksheets/{workbookWorksheet%2Did}/tables/itemAt(index={index})/rows{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of tablerow objects. + * Represents a collection of all the rows in the table. Read-only. * @return a {@link WorkbookTableRowCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableRowCollectionResponse get() { return get(null); } /** - * Retrieve a list of tablerow objects. + * Represents a collection of all the rows in the table. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookTableRowCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableRowCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -62,23 +60,21 @@ public WorkbookTableRowCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, WorkbookTableRowCollectionResponse::createFromDiscriminatorValue); } /** - * Adds rows to the end of a table. Note that this API can accept multiple rows of data. Adding one row at a time can affect performance. The recommended approach is to batch the rows together in a single call rather than inserting single rows. For best results, collect the rows to be inserted on the application side and perform a single row add operation. Experiment with the number of rows to determine the ideal number of rows to use in a single API call. This request might occasionally result in a 504 HTTP error. The appropriate response to this error is to repeat the request. + * Create new navigation property to rows for drives * @param body The request body * @return a {@link WorkbookTableRow} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableRow post(@jakarta.annotation.Nonnull final WorkbookTableRow body) { return post(body, null); } /** - * Adds rows to the end of a table. Note that this API can accept multiple rows of data. Adding one row at a time can affect performance. The recommended approach is to batch the rows together in a single call rather than inserting single rows. For best results, collect the rows to be inserted on the application side and perform a single row add operation. Experiment with the number of rows to determine the ideal number of rows to use in a single API call. This request might occasionally result in a 504 HTTP error. The appropriate response to this error is to repeat the request. + * Create new navigation property to rows for drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookTableRow} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableRow post(@jakarta.annotation.Nonnull final WorkbookTableRow body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -89,7 +85,7 @@ public WorkbookTableRow post(@jakarta.annotation.Nonnull final WorkbookTableRow return this.requestAdapter.send(requestInfo, errorMapping, WorkbookTableRow::createFromDiscriminatorValue); } /** - * Retrieve a list of tablerow objects. + * Represents a collection of all the rows in the table. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -97,7 +93,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of tablerow objects. + * Represents a collection of all the rows in the table. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -109,7 +105,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Adds rows to the end of a table. Note that this API can accept multiple rows of data. Adding one row at a time can affect performance. The recommended approach is to batch the rows together in a single call rather than inserting single rows. For best results, collect the rows to be inserted on the application side and perform a single row add operation. Experiment with the number of rows to determine the ideal number of rows to use in a single API call. This request might occasionally result in a 504 HTTP error. The appropriate response to this error is to repeat the request. + * Create new navigation property to rows for drives * @param body The request body * @return a {@link RequestInformation} */ @@ -118,7 +114,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Adds rows to the end of a table. Note that this API can accept multiple rows of data. Adding one row at a time can affect performance. The recommended approach is to batch the rows together in a single call rather than inserting single rows. For best results, collect the rows to be inserted on the application side and perform a single row add operation. Experiment with the number of rows to determine the ideal number of rows to use in a single API call. This request might occasionally result in a 504 HTTP error. The appropriate response to this error is to repeat the request. + * Create new navigation property to rows for drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -143,7 +139,7 @@ public RowsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr return new RowsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of tablerow objects. + * Represents a collection of all the rows in the table. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/itematwithindex/sort/SortRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/itematwithindex/sort/SortRequestBuilder.java index be7aa57f839..9538ecc281a 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/itematwithindex/sort/SortRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/items/item/workbook/worksheets/item/tables/itematwithindex/sort/SortRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of tablesort object. + * Represents the sorting for the table. Read-only. * @return a {@link WorkbookTableSort} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableSort get() { return get(null); } /** - * Retrieve the properties and relationships of tablesort object. + * Represents the sorting for the table. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkbookTableSort} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkbookTableSort get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of tablesort object. + * Represents the sorting for the table. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of tablesort object. + * Represents the sorting for the table. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public SortRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of tablesort object. + * Represents the sorting for the table. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/list/columns/ColumnsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/list/columns/ColumnsRequestBuilder.java index 466ecce2173..a6a01bc7613 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/list/columns/ColumnsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/list/columns/ColumnsRequestBuilder.java @@ -60,21 +60,19 @@ public ColumnsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/list/columns{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [list][list]. + * The collection of field definitions for this list. * @return a {@link ColumnDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinitionCollectionResponse get() { return get(null); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [list][list]. + * The collection of field definitions for this list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinitionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public ColumnDefinitionCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinitionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a column for a [list][list] with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for drives * @param body The request body * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition body) { return post(body, null); } /** - * Create a column for a [list][list] with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinition::createFromDiscriminatorValue); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [list][list]. + * The collection of field definitions for this list. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [list][list]. + * The collection of field definitions for this list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a column for a [list][list] with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for drives * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a column for a [list][list] with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ColumnsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new ColumnsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [list][list]. + * The collection of field definitions for this list. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/list/contenttypes/ContentTypesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/list/contenttypes/ContentTypesRequestBuilder.java index 036554a36ef..2f3781ef528 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/list/contenttypes/ContentTypesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/list/contenttypes/ContentTypesRequestBuilder.java @@ -87,21 +87,19 @@ public ContentTypesRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/list/contentTypes{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the collection of [contentType][contentType] resources in a [list][]. + * The collection of content types present in this list. * @return a {@link ContentTypeCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentTypeCollectionResponse get() { return get(null); } /** - * Get the collection of [contentType][contentType] resources in a [list][]. + * The collection of content types present in this list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ContentTypeCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentTypeCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -136,7 +134,7 @@ public ContentType post(@jakarta.annotation.Nonnull final ContentType body, @jak return this.requestAdapter.send(requestInfo, errorMapping, ContentType::createFromDiscriminatorValue); } /** - * Get the collection of [contentType][contentType] resources in a [list][]. + * The collection of content types present in this list. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -144,7 +142,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the collection of [contentType][contentType] resources in a [list][]. + * The collection of content types present in this list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -190,7 +188,7 @@ public ContentTypesRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri return new ContentTypesRequestBuilder(rawUrl, requestAdapter); } /** - * Get the collection of [contentType][contentType] resources in a [list][]. + * The collection of content types present in this list. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/list/contenttypes/addcopy/AddCopyRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/list/contenttypes/addcopy/AddCopyRequestBuilder.java index 723b063cf6e..b556497b24a 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/list/contenttypes/addcopy/AddCopyRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/list/contenttypes/addcopy/AddCopyRequestBuilder.java @@ -36,7 +36,7 @@ public AddCopyRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/list/contentTypes/addCopy", rawUrl); } /** - * Add a copy of a [content type][contentType] from a [site][site] to a [list][list]. + * Add a copy of a content type from a site to a list. * @param body The request body * @return a {@link ContentType} * @throws ODataError When receiving a 4XX or 5XX status code @@ -47,7 +47,7 @@ public ContentType post(@jakarta.annotation.Nonnull final AddCopyPostRequestBody return post(body, null); } /** - * Add a copy of a [content type][contentType] from a [site][site] to a [list][list]. + * Add a copy of a content type from a site to a list. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ContentType} @@ -63,7 +63,7 @@ public ContentType post(@jakarta.annotation.Nonnull final AddCopyPostRequestBody return this.requestAdapter.send(requestInfo, errorMapping, ContentType::createFromDiscriminatorValue); } /** - * Add a copy of a [content type][contentType] from a [site][site] to a [list][list]. + * Add a copy of a content type from a site to a list. * @param body The request body * @return a {@link RequestInformation} */ @@ -72,7 +72,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add a copy of a [content type][contentType] from a [site][site] to a [list][list]. + * Add a copy of a content type from a site to a list. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/list/contenttypes/getcompatiblehubcontenttypes/GetCompatibleHubContentTypesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/list/contenttypes/getcompatiblehubcontenttypes/GetCompatibleHubContentTypesRequestBuilder.java index ca100db9a5a..e3452567529 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/list/contenttypes/getcompatiblehubcontenttypes/GetCompatibleHubContentTypesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/list/contenttypes/getcompatiblehubcontenttypes/GetCompatibleHubContentTypesRequestBuilder.java @@ -36,19 +36,21 @@ public GetCompatibleHubContentTypesRequestBuilder(@jakarta.annotation.Nonnull fi super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/list/contentTypes/getCompatibleHubContentTypes(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function getCompatibleHubContentTypes + * Get a list of compatible content types from the content type hub that can be added to a target site or a list. This method is part of the content type publishing changes to optimize the syncing of published content types to sites and lists, effectively switching from a 'push everywhere' to 'pull as needed' approach. The method allows users to pull content types directly from the content type hub to a site or list. For more information, see contentType: addCopyFromContentTypeHub and the blog post Syntex Product Updates August 2021. * @return a {@link GetCompatibleHubContentTypesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetCompatibleHubContentTypesGetResponse get() { return get(null); } /** - * Invoke function getCompatibleHubContentTypes + * Get a list of compatible content types from the content type hub that can be added to a target site or a list. This method is part of the content type publishing changes to optimize the syncing of published content types to sites and lists, effectively switching from a 'push everywhere' to 'pull as needed' approach. The method allows users to pull content types directly from the content type hub to a site or list. For more information, see contentType: addCopyFromContentTypeHub and the blog post Syntex Product Updates August 2021. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GetCompatibleHubContentTypesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetCompatibleHubContentTypesGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public GetCompatibleHubContentTypesGetResponse get(@jakarta.annotation.Nullable return this.requestAdapter.send(requestInfo, errorMapping, GetCompatibleHubContentTypesGetResponse::createFromDiscriminatorValue); } /** - * Invoke function getCompatibleHubContentTypes + * Get a list of compatible content types from the content type hub that can be added to a target site or a list. This method is part of the content type publishing changes to optimize the syncing of published content types to sites and lists, effectively switching from a 'push everywhere' to 'pull as needed' approach. The method allows users to pull content types directly from the content type hub to a site or list. For more information, see contentType: addCopyFromContentTypeHub and the blog post Syntex Product Updates August 2021. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getCompatibleHubContentTypes + * Get a list of compatible content types from the content type hub that can be added to a target site or a list. This method is part of the content type publishing changes to optimize the syncing of published content types to sites and lists, effectively switching from a 'push everywhere' to 'pull as needed' approach. The method allows users to pull content types directly from the content type hub to a site or list. For more information, see contentType: addCopyFromContentTypeHub and the blog post Syntex Product Updates August 2021. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public GetCompatibleHubContentTypesRequestBuilder withUrl(@jakarta.annotation.No return new GetCompatibleHubContentTypesRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function getCompatibleHubContentTypes + * Get a list of compatible content types from the content type hub that can be added to a target site or a list. This method is part of the content type publishing changes to optimize the syncing of published content types to sites and lists, effectively switching from a 'push everywhere' to 'pull as needed' approach. The method allows users to pull content types directly from the content type hub to a site or list. For more information, see contentType: addCopyFromContentTypeHub and the blog post Syntex Product Updates August 2021. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/list/contenttypes/item/associatewithhubsites/AssociateWithHubSitesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/list/contenttypes/item/associatewithhubsites/AssociateWithHubSitesRequestBuilder.java index 031b56cd88c..bf2de47b15d 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/list/contenttypes/item/associatewithhubsites/AssociateWithHubSitesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/list/contenttypes/item/associatewithhubsites/AssociateWithHubSitesRequestBuilder.java @@ -35,7 +35,7 @@ public AssociateWithHubSitesRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/list/contentTypes/{contentType%2Did}/associateWithHubSites", rawUrl); } /** - * Associate a published [content type][contentType] present in a content type hub with a list of hub sites. + * Associate a published content type present in a content type hub with a list of hub sites. * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code * @see Find more info here @@ -44,7 +44,7 @@ public void post(@jakarta.annotation.Nonnull final AssociateWithHubSitesPostRequ post(body, null); } /** - * Associate a published [content type][contentType] present in a content type hub with a list of hub sites. + * Associate a published content type present in a content type hub with a list of hub sites. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code @@ -58,7 +58,7 @@ public void post(@jakarta.annotation.Nonnull final AssociateWithHubSitesPostRequ this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Associate a published [content type][contentType] present in a content type hub with a list of hub sites. + * Associate a published content type present in a content type hub with a list of hub sites. * @param body The request body * @return a {@link RequestInformation} */ @@ -67,7 +67,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Associate a published [content type][contentType] present in a content type hub with a list of hub sites. + * Associate a published content type present in a content type hub with a list of hub sites. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/list/contenttypes/item/columns/ColumnsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/list/contenttypes/item/columns/ColumnsRequestBuilder.java index 1273381b7be..0b4d935c246 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/list/contenttypes/item/columns/ColumnsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/list/contenttypes/item/columns/ColumnsRequestBuilder.java @@ -60,21 +60,19 @@ public ColumnsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/list/contentTypes/{contentType%2Did}/columns{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [content type][contentType]. + * The collection of column definitions for this content type. * @return a {@link ColumnDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinitionCollectionResponse get() { return get(null); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [content type][contentType]. + * The collection of column definitions for this content type. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinitionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public ColumnDefinitionCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinitionCollectionResponse::createFromDiscriminatorValue); } /** - * Add a column to a [content type][contentType] in a site, or a list with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for drives * @param body The request body * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition body) { return post(body, null); } /** - * Add a column to a [content type][contentType] in a site, or a list with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinition::createFromDiscriminatorValue); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [content type][contentType]. + * The collection of column definitions for this content type. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [content type][contentType]. + * The collection of column definitions for this content type. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add a column to a [content type][contentType] in a site, or a list with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for drives * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add a column to a [content type][contentType] in a site, or a list with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ColumnsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new ColumnsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [content type][contentType]. + * The collection of column definitions for this content type. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/list/contenttypes/item/columns/item/ColumnDefinitionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/list/contenttypes/item/columns/item/ColumnDefinitionItemRequestBuilder.java index 2e5e06ef1fa..83c53641bde 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/list/contenttypes/item/columns/item/ColumnDefinitionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/list/contenttypes/item/columns/item/ColumnDefinitionItemRequestBuilder.java @@ -46,18 +46,16 @@ public ColumnDefinitionItemRequestBuilder(@jakarta.annotation.Nonnull final Stri super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/list/contentTypes/{contentType%2Did}/columns/{columnDefinition%2Did}{?%24expand,%24select}", rawUrl); } /** - * Remove a [column][columndefinition] from a [site][], a [list][], or a [content type][contentType]. + * Delete navigation property columns for drives * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove a [column][columndefinition] from a [site][], a [list][], or a [content type][contentType]. + * Delete navigation property columns for drives * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the metadata for a [site][], a [list][], or a [contentType][] [column][columnDefinition]. + * The collection of column definitions for this content type. * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition get() { return get(null); } /** - * Retrieve the metadata for a [site][], a [list][], or a [contentType][] [column][columnDefinition]. + * The collection of column definitions for this content type. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public ColumnDefinition get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinition::createFromDiscriminatorValue); } /** - * Update a [site][], a [list][], or a [content type][contentType] [column][columnDefinition]. + * Update the navigation property columns in drives * @param body The request body * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition patch(@jakarta.annotation.Nonnull final ColumnDefinition body) { return patch(body, null); } /** - * Update a [site][], a [list][], or a [content type][contentType] [column][columnDefinition]. + * Update the navigation property columns in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition patch(@jakarta.annotation.Nonnull final ColumnDefinition body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public ColumnDefinition patch(@jakarta.annotation.Nonnull final ColumnDefinition return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinition::createFromDiscriminatorValue); } /** - * Remove a [column][columndefinition] from a [site][], a [list][], or a [content type][contentType]. + * Delete navigation property columns for drives * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove a [column][columndefinition] from a [site][], a [list][], or a [content type][contentType]. + * Delete navigation property columns for drives * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the metadata for a [site][], a [list][], or a [contentType][] [column][columnDefinition]. + * The collection of column definitions for this content type. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the metadata for a [site][], a [list][], or a [contentType][] [column][columnDefinition]. + * The collection of column definitions for this content type. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update a [site][], a [list][], or a [content type][contentType] [column][columnDefinition]. + * Update the navigation property columns in drives * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update a [site][], a [list][], or a [content type][contentType] [column][columnDefinition]. + * Update the navigation property columns in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public ColumnDefinitionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fi public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the metadata for a [site][], a [list][], or a [contentType][] [column][columnDefinition]. + * The collection of column definitions for this content type. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/list/contenttypes/item/copytodefaultcontentlocation/CopyToDefaultContentLocationRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/list/contenttypes/item/copytodefaultcontentlocation/CopyToDefaultContentLocationRequestBuilder.java index 8e90a880af2..9c25449cfc9 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/list/contenttypes/item/copytodefaultcontentlocation/CopyToDefaultContentLocationRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/list/contenttypes/item/copytodefaultcontentlocation/CopyToDefaultContentLocationRequestBuilder.java @@ -35,7 +35,7 @@ public CopyToDefaultContentLocationRequestBuilder(@jakarta.annotation.Nonnull fi super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/list/contentTypes/{contentType%2Did}/copyToDefaultContentLocation", rawUrl); } /** - * Copy a file to a default content location in a [content type][contentType]. The file can then be added as a default file or template via a POST operation. + * Copy a file to a default content location in a content type. The file can then be added as a default file or template via a POST operation. * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code * @see Find more info here @@ -44,7 +44,7 @@ public void post(@jakarta.annotation.Nonnull final CopyToDefaultContentLocationP post(body, null); } /** - * Copy a file to a default content location in a [content type][contentType]. The file can then be added as a default file or template via a POST operation. + * Copy a file to a default content location in a content type. The file can then be added as a default file or template via a POST operation. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code @@ -58,7 +58,7 @@ public void post(@jakarta.annotation.Nonnull final CopyToDefaultContentLocationP this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Copy a file to a default content location in a [content type][contentType]. The file can then be added as a default file or template via a POST operation. + * Copy a file to a default content location in a content type. The file can then be added as a default file or template via a POST operation. * @param body The request body * @return a {@link RequestInformation} */ @@ -67,7 +67,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Copy a file to a default content location in a [content type][contentType]. The file can then be added as a default file or template via a POST operation. + * Copy a file to a default content location in a content type. The file can then be added as a default file or template via a POST operation. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/list/contenttypes/item/ispublished/IsPublishedRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/list/contenttypes/item/ispublished/IsPublishedRequestBuilder.java index 82fe79d12e3..e29aff35351 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/list/contenttypes/item/ispublished/IsPublishedRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/list/contenttypes/item/ispublished/IsPublishedRequestBuilder.java @@ -35,19 +35,21 @@ public IsPublishedRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/list/contentTypes/{contentType%2Did}/isPublished()", rawUrl); } /** - * Invoke function isPublished + * Check the publishing status of a contentType in a content type hub site. * @return a {@link IsPublishedGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public IsPublishedGetResponse get() { return get(null); } /** - * Invoke function isPublished + * Check the publishing status of a contentType in a content type hub site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link IsPublishedGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public IsPublishedGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -57,7 +59,7 @@ public IsPublishedGetResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, IsPublishedGetResponse::createFromDiscriminatorValue); } /** - * Invoke function isPublished + * Check the publishing status of a contentType in a content type hub site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -65,7 +67,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function isPublished + * Check the publishing status of a contentType in a content type hub site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/list/contenttypes/item/publish/PublishRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/list/contenttypes/item/publish/PublishRequestBuilder.java index ed009525b40..707c6155805 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/list/contenttypes/item/publish/PublishRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/list/contenttypes/item/publish/PublishRequestBuilder.java @@ -35,7 +35,7 @@ public PublishRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/list/contentTypes/{contentType%2Did}/publish", rawUrl); } /** - * Publishes a [contentType][] present in the content type hub site. + * Publishes a contentType present in the content type hub site. * @throws ODataError When receiving a 4XX or 5XX status code * @see Find more info here */ @@ -43,7 +43,7 @@ public void post() { post(null); } /** - * Publishes a [contentType][] present in the content type hub site. + * Publishes a contentType present in the content type hub site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code * @see Find more info here @@ -55,7 +55,7 @@ public void post(@jakarta.annotation.Nullable final java.util.function.Consumer< this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Publishes a [contentType][] present in the content type hub site. + * Publishes a contentType present in the content type hub site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -63,7 +63,7 @@ public RequestInformation toPostRequestInformation() { return toPostRequestInformation(null); } /** - * Publishes a [contentType][] present in the content type hub site. + * Publishes a contentType present in the content type hub site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/list/contenttypes/item/unpublish/UnpublishRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/list/contenttypes/item/unpublish/UnpublishRequestBuilder.java index 9e7a501d902..28b6c06bb08 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/list/contenttypes/item/unpublish/UnpublishRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/list/contenttypes/item/unpublish/UnpublishRequestBuilder.java @@ -35,7 +35,7 @@ public UnpublishRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/list/contentTypes/{contentType%2Did}/unpublish", rawUrl); } /** - * Unpublish a [contentType][] from a content type hub site. + * Unpublish a contentType from a content type hub site. * @throws ODataError When receiving a 4XX or 5XX status code * @see Find more info here */ @@ -43,7 +43,7 @@ public void post() { post(null); } /** - * Unpublish a [contentType][] from a content type hub site. + * Unpublish a contentType from a content type hub site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code * @see Find more info here @@ -55,7 +55,7 @@ public void post(@jakarta.annotation.Nullable final java.util.function.Consumer< this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Unpublish a [contentType][] from a content type hub site. + * Unpublish a contentType from a content type hub site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -63,7 +63,7 @@ public RequestInformation toPostRequestInformation() { return toPostRequestInformation(null); } /** - * Unpublish a [contentType][] from a content type hub site. + * Unpublish a contentType from a content type hub site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/list/items/ItemsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/list/items/ItemsRequestBuilder.java index e886d9fdf70..f87b10d9bda 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/list/items/ItemsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/list/items/ItemsRequestBuilder.java @@ -80,21 +80,19 @@ public DeltaWithTokenRequestBuilder deltaWithToken(@jakarta.annotation.Nonnull f return new DeltaWithTokenRequestBuilder(pathParameters, requestAdapter, token); } /** - * Get the collection of [items][item] in a [list][]. + * All items contained in the list. * @return a {@link ListItemCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListItemCollectionResponse get() { return get(null); } /** - * Get the collection of [items][item] in a [list][]. + * All items contained in the list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ListItemCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListItemCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -104,23 +102,21 @@ public ListItemCollectionResponse get(@jakarta.annotation.Nullable final java.ut return this.requestAdapter.send(requestInfo, errorMapping, ListItemCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new [listItem][] in a [list][]. + * Create new navigation property to items for drives * @param body The request body * @return a {@link ListItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListItem post(@jakarta.annotation.Nonnull final ListItem body) { return post(body, null); } /** - * Create a new [listItem][] in a [list][]. + * Create new navigation property to items for drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ListItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListItem post(@jakarta.annotation.Nonnull final ListItem body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -131,7 +127,7 @@ public ListItem post(@jakarta.annotation.Nonnull final ListItem body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, ListItem::createFromDiscriminatorValue); } /** - * Get the collection of [items][item] in a [list][]. + * All items contained in the list. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -139,7 +135,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the collection of [items][item] in a [list][]. + * All items contained in the list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -151,7 +147,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new [listItem][] in a [list][]. + * Create new navigation property to items for drives * @param body The request body * @return a {@link RequestInformation} */ @@ -160,7 +156,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new [listItem][] in a [list][]. + * Create new navigation property to items for drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -185,7 +181,7 @@ public ItemsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new ItemsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the collection of [items][item] in a [list][]. + * All items contained in the list. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/list/items/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/list/items/delta/DeltaRequestBuilder.java index 31ffe6889f5..48d5c5281f1 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/list/items/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/list/items/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/list/items/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Get newly created, updated, or deleted list items without having to perform a full read of the entire items collection. Your app begins by calling delta without any parameters.The service starts enumerating the hierarchy of the list, returning pages of items, and either an @odata.nextLink or an @odata.deltaLink.Your app should continue calling with the @odata.nextLink until you see an @odata.deltaLink returned. After you received all thechanges, you can apply them to your local state.To check for changes in thefuture, call delta again with the @odata.deltaLink from the previous response. The delta feed shows the latest state for each item, not each change. If an item was renamed twice, it only shows up once, with its latest name.The same item might appear more than once in a delta feed, for various reasons. You should use the last occurrence you see. Items with this property should be removed from your local state. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Get newly created, updated, or deleted list items without having to perform a full read of the entire items collection. Your app begins by calling delta without any parameters.The service starts enumerating the hierarchy of the list, returning pages of items, and either an @odata.nextLink or an @odata.deltaLink.Your app should continue calling with the @odata.nextLink until you see an @odata.deltaLink returned. After you received all thechanges, you can apply them to your local state.To check for changes in thefuture, call delta again with the @odata.deltaLink from the previous response. The delta feed shows the latest state for each item, not each change. If an item was renamed twice, it only shows up once, with its latest name.The same item might appear more than once in a delta feed, for various reasons. You should use the last occurrence you see. Items with this property should be removed from your local state. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Get newly created, updated, or deleted list items without having to perform a full read of the entire items collection. Your app begins by calling delta without any parameters.The service starts enumerating the hierarchy of the list, returning pages of items, and either an @odata.nextLink or an @odata.deltaLink.Your app should continue calling with the @odata.nextLink until you see an @odata.deltaLink returned. After you received all thechanges, you can apply them to your local state.To check for changes in thefuture, call delta again with the @odata.deltaLink from the previous response. The delta feed shows the latest state for each item, not each change. If an item was renamed twice, it only shows up once, with its latest name.The same item might appear more than once in a delta feed, for various reasons. You should use the last occurrence you see. Items with this property should be removed from your local state. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Get newly created, updated, or deleted list items without having to perform a full read of the entire items collection. Your app begins by calling delta without any parameters.The service starts enumerating the hierarchy of the list, returning pages of items, and either an @odata.nextLink or an @odata.deltaLink.Your app should continue calling with the @odata.nextLink until you see an @odata.deltaLink returned. After you received all thechanges, you can apply them to your local state.To check for changes in thefuture, call delta again with the @odata.deltaLink from the previous response. The delta feed shows the latest state for each item, not each change. If an item was renamed twice, it only shows up once, with its latest name.The same item might appear more than once in a delta feed, for various reasons. You should use the last occurrence you see. Items with this property should be removed from your local state. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Get newly created, updated, or deleted list items without having to perform a full read of the entire items collection. Your app begins by calling delta without any parameters.The service starts enumerating the hierarchy of the list, returning pages of items, and either an @odata.nextLink or an @odata.deltaLink.Your app should continue calling with the @odata.nextLink until you see an @odata.deltaLink returned. After you received all thechanges, you can apply them to your local state.To check for changes in thefuture, call delta again with the @odata.deltaLink from the previous response. The delta feed shows the latest state for each item, not each change. If an item was renamed twice, it only shows up once, with its latest name.The same item might appear more than once in a delta feed, for various reasons. You should use the last occurrence you see. Items with this property should be removed from your local state. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/list/items/item/ListItemItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/list/items/item/ListItemItemRequestBuilder.java index 7b848117189..6cc3ee251da 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/list/items/item/ListItemItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/list/items/item/ListItemItemRequestBuilder.java @@ -119,18 +119,16 @@ public ListItemItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/list/items/{listItem%2Did}{?%24expand,%24select}", rawUrl); } /** - * Removes an item from a [list][]. + * Delete navigation property items for drives * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Removes an item from a [list][]. + * Delete navigation property items for drives * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -139,21 +137,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Returns the metadata for an [item][] in a [list][]. + * All items contained in the list. * @return a {@link ListItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListItem get() { return get(null); } /** - * Returns the metadata for an [item][] in a [list][]. + * All items contained in the list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ListItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListItem get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -202,7 +198,7 @@ public ListItem patch(@jakarta.annotation.Nonnull final ListItem body, @jakarta. return this.requestAdapter.send(requestInfo, errorMapping, ListItem::createFromDiscriminatorValue); } /** - * Removes an item from a [list][]. + * Delete navigation property items for drives * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -210,7 +206,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Removes an item from a [list][]. + * Delete navigation property items for drives * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -222,7 +218,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Returns the metadata for an [item][] in a [list][]. + * All items contained in the list. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -230,7 +226,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Returns the metadata for an [item][] in a [list][]. + * All items contained in the list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -282,7 +278,7 @@ public ListItemItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Returns the metadata for an [item][] in a [list][]. + * All items contained in the list. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/list/items/item/documentsetversions/DocumentSetVersionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/list/items/item/documentsetversions/DocumentSetVersionsRequestBuilder.java index 73c90f807b1..79198e4eaf7 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/list/items/item/documentsetversions/DocumentSetVersionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/list/items/item/documentsetversions/DocumentSetVersionsRequestBuilder.java @@ -60,21 +60,19 @@ public DocumentSetVersionsRequestBuilder(@jakarta.annotation.Nonnull final Strin super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/list/items/{listItem%2Did}/documentSetVersions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the versions of a document set item in a list. + * Version information for a document set version created by a user. * @return a {@link DocumentSetVersionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DocumentSetVersionCollectionResponse get() { return get(null); } /** - * Get a list of the versions of a document set item in a list. + * Version information for a document set version created by a user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DocumentSetVersionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DocumentSetVersionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public DocumentSetVersionCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, DocumentSetVersionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new version of a document set item in a list. + * Create new navigation property to documentSetVersions for drives * @param body The request body * @return a {@link DocumentSetVersion} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DocumentSetVersion post(@jakarta.annotation.Nonnull final DocumentSetVersion body) { return post(body, null); } /** - * Create a new version of a document set item in a list. + * Create new navigation property to documentSetVersions for drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DocumentSetVersion} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DocumentSetVersion post(@jakarta.annotation.Nonnull final DocumentSetVersion body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public DocumentSetVersion post(@jakarta.annotation.Nonnull final DocumentSetVers return this.requestAdapter.send(requestInfo, errorMapping, DocumentSetVersion::createFromDiscriminatorValue); } /** - * Get a list of the versions of a document set item in a list. + * Version information for a document set version created by a user. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the versions of a document set item in a list. + * Version information for a document set version created by a user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new version of a document set item in a list. + * Create new navigation property to documentSetVersions for drives * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new version of a document set item in a list. + * Create new navigation property to documentSetVersions for drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public DocumentSetVersionsRequestBuilder withUrl(@jakarta.annotation.Nonnull fin return new DocumentSetVersionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the versions of a document set item in a list. + * Version information for a document set version created by a user. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/list/items/item/documentsetversions/item/DocumentSetVersionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/list/items/item/documentsetversions/item/DocumentSetVersionItemRequestBuilder.java index ec6b0012bf8..9c82432dc83 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/list/items/item/documentsetversions/item/DocumentSetVersionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/list/items/item/documentsetversions/item/DocumentSetVersionItemRequestBuilder.java @@ -55,18 +55,16 @@ public DocumentSetVersionItemRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/list/items/{listItem%2Did}/documentSetVersions/{documentSetVersion%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a version of a document set in a list. + * Delete navigation property documentSetVersions for drives * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a version of a document set in a list. + * Delete navigation property documentSetVersions for drives * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -75,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a documentSetVersion object. + * Version information for a document set version created by a user. * @return a {@link DocumentSetVersion} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DocumentSetVersion get() { return get(null); } /** - * Read the properties and relationships of a documentSetVersion object. + * Version information for a document set version created by a user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DocumentSetVersion} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DocumentSetVersion get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +120,7 @@ public DocumentSetVersion patch(@jakarta.annotation.Nonnull final DocumentSetVer return this.requestAdapter.send(requestInfo, errorMapping, DocumentSetVersion::createFromDiscriminatorValue); } /** - * Delete a version of a document set in a list. + * Delete navigation property documentSetVersions for drives * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +128,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a version of a document set in a list. + * Delete navigation property documentSetVersions for drives * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -144,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a documentSetVersion object. + * Version information for a document set version created by a user. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -152,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a documentSetVersion object. + * Version information for a document set version created by a user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -204,7 +200,7 @@ public DocumentSetVersionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a documentSetVersion object. + * Version information for a document set version created by a user. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/list/items/item/driveitem/DriveItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/list/items/item/driveitem/DriveItemRequestBuilder.java index 5b8f0f6166f..a7a2f168b6f 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/list/items/item/driveitem/DriveItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/list/items/item/driveitem/DriveItemRequestBuilder.java @@ -46,7 +46,7 @@ public DriveItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/list/items/{listItem%2Did}/driveItem{?%24expand,%24select}", rawUrl); } /** - * For document libraries, the driveItem relationship exposes the listItem as a [driveItem][] + * For document libraries, the driveItem relationship exposes the listItem as a driveItem * @return a {@link DriveItem} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -55,7 +55,7 @@ public DriveItem get() { return get(null); } /** - * For document libraries, the driveItem relationship exposes the listItem as a [driveItem][] + * For document libraries, the driveItem relationship exposes the listItem as a driveItem * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DriveItem} * @throws ODataError When receiving a 4XX or 5XX status code @@ -68,7 +68,7 @@ public DriveItem get(@jakarta.annotation.Nullable final java.util.function.Consu return this.requestAdapter.send(requestInfo, errorMapping, DriveItem::createFromDiscriminatorValue); } /** - * For document libraries, the driveItem relationship exposes the listItem as a [driveItem][] + * For document libraries, the driveItem relationship exposes the listItem as a driveItem * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -76,7 +76,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * For document libraries, the driveItem relationship exposes the listItem as a [driveItem][] + * For document libraries, the driveItem relationship exposes the listItem as a driveItem * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -98,7 +98,7 @@ public DriveItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new DriveItemRequestBuilder(rawUrl, requestAdapter); } /** - * For document libraries, the driveItem relationship exposes the listItem as a [driveItem][] + * For document libraries, the driveItem relationship exposes the listItem as a driveItem */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/list/items/item/fields/FieldsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/list/items/item/fields/FieldsRequestBuilder.java index 766e0baeebe..2fb1d6638ac 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/list/items/item/fields/FieldsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/list/items/item/fields/FieldsRequestBuilder.java @@ -77,23 +77,21 @@ public FieldValueSet get(@jakarta.annotation.Nullable final java.util.function.C return this.requestAdapter.send(requestInfo, errorMapping, FieldValueSet::createFromDiscriminatorValue); } /** - * Update the properties on a [listItem][]. + * Update the navigation property fields in drives * @param body The request body * @return a {@link FieldValueSet} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public FieldValueSet patch(@jakarta.annotation.Nonnull final FieldValueSet body) { return patch(body, null); } /** - * Update the properties on a [listItem][]. + * Update the navigation property fields in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FieldValueSet} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public FieldValueSet patch(@jakarta.annotation.Nonnull final FieldValueSet body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -144,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties on a [listItem][]. + * Update the navigation property fields in drives * @param body The request body * @return a {@link RequestInformation} */ @@ -153,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties on a [listItem][]. + * Update the navigation property fields in drives * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/list/items/item/versions/VersionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/list/items/item/versions/VersionsRequestBuilder.java index 1c9aadf5ab8..39be9bc6d21 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/list/items/item/versions/VersionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/list/items/item/versions/VersionsRequestBuilder.java @@ -60,21 +60,19 @@ public VersionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/list/items/{listItem%2Did}/versions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * SharePoint can be configured to retain the history for list items. Previous versions may be retained for a finite period of time depending on admin settings which may be unique per user or location. + * The list of previous versions of the list item. * @return a {@link ListItemVersionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListItemVersionCollectionResponse get() { return get(null); } /** - * SharePoint can be configured to retain the history for list items. Previous versions may be retained for a finite period of time depending on admin settings which may be unique per user or location. + * The list of previous versions of the list item. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ListItemVersionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListItemVersionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ListItemVersion post(@jakarta.annotation.Nonnull final ListItemVersion bo return this.requestAdapter.send(requestInfo, errorMapping, ListItemVersion::createFromDiscriminatorValue); } /** - * SharePoint can be configured to retain the history for list items. Previous versions may be retained for a finite period of time depending on admin settings which may be unique per user or location. + * The list of previous versions of the list item. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * SharePoint can be configured to retain the history for list items. Previous versions may be retained for a finite period of time depending on admin settings which may be unique per user or location. + * The list of previous versions of the list item. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public VersionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new VersionsRequestBuilder(rawUrl, requestAdapter); } /** - * SharePoint can be configured to retain the history for list items. Previous versions may be retained for a finite period of time depending on admin settings which may be unique per user or location. + * The list of previous versions of the list item. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/list/items/item/versions/item/ListItemVersionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/list/items/item/versions/item/ListItemVersionItemRequestBuilder.java index e45cb2d4b0f..30a63819957 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/list/items/item/versions/item/ListItemVersionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/list/items/item/versions/item/ListItemVersionItemRequestBuilder.java @@ -73,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the metadata for a specific version of a ListItem. + * The list of previous versions of the list item. * @return a {@link ListItemVersion} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListItemVersion get() { return get(null); } /** - * Retrieve the metadata for a specific version of a ListItem. + * The list of previous versions of the list item. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ListItemVersion} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListItemVersion get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -142,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the metadata for a specific version of a ListItem. + * The list of previous versions of the list item. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -150,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the metadata for a specific version of a ListItem. + * The list of previous versions of the list item. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -202,7 +200,7 @@ public ListItemVersionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fin public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the metadata for a specific version of a ListItem. + * The list of previous versions of the list item. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/recent/RecentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/recent/RecentRequestBuilder.java index 5d581b04a90..7db856d9fd6 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/recent/RecentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/recent/RecentRequestBuilder.java @@ -36,19 +36,21 @@ public RecentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/recent(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function recent + * List a set of items that have been recently used by the signed in user.This collection includes items that are in the user's drive and items they have access to from other drives. * @return a {@link RecentGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public RecentGetResponse get() { return get(null); } /** - * Invoke function recent + * List a set of items that have been recently used by the signed in user.This collection includes items that are in the user's drive and items they have access to from other drives. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RecentGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public RecentGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public RecentGetResponse get(@jakarta.annotation.Nullable final java.util.functi return this.requestAdapter.send(requestInfo, errorMapping, RecentGetResponse::createFromDiscriminatorValue); } /** - * Invoke function recent + * List a set of items that have been recently used by the signed in user.This collection includes items that are in the user's drive and items they have access to from other drives. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function recent + * List a set of items that have been recently used by the signed in user.This collection includes items that are in the user's drive and items they have access to from other drives. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public RecentRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw return new RecentRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function recent + * List a set of items that have been recently used by the signed in user.This collection includes items that are in the user's drive and items they have access to from other drives. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/root/RootRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/root/RootRequestBuilder.java index 463b21cd3f2..d394b33d64c 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/root/RootRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/root/RootRequestBuilder.java @@ -46,21 +46,19 @@ public RootRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/root{?%24expand,%24select}", rawUrl); } /** - * Retrieve the metadata for a driveItem in a drive by file system path or ID.item-id is the ID of a driveItem. It may also be the unique ID of a SharePoint list item. + * The root folder of the drive. Read-only. * @return a {@link DriveItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DriveItem get() { return get(null); } /** - * Retrieve the metadata for a driveItem in a drive by file system path or ID.item-id is the ID of a driveItem. It may also be the unique ID of a SharePoint list item. + * The root folder of the drive. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DriveItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DriveItem get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -70,7 +68,7 @@ public DriveItem get(@jakarta.annotation.Nullable final java.util.function.Consu return this.requestAdapter.send(requestInfo, errorMapping, DriveItem::createFromDiscriminatorValue); } /** - * Retrieve the metadata for a driveItem in a drive by file system path or ID.item-id is the ID of a driveItem. It may also be the unique ID of a SharePoint list item. + * The root folder of the drive. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -78,7 +76,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the metadata for a driveItem in a drive by file system path or ID.item-id is the ID of a driveItem. It may also be the unique ID of a SharePoint list item. + * The root folder of the drive. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -100,7 +98,7 @@ public RootRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr return new RootRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the metadata for a driveItem in a drive by file system path or ID.item-id is the ID of a driveItem. It may also be the unique ID of a SharePoint list item. + * The root folder of the drive. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/root/content/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/root/content/ContentRequestBuilder.java index 09f0372c53d..9228e337d5e 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/root/content/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/root/content/ContentRequestBuilder.java @@ -41,7 +41,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * The content stream, if the item represents a file. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -52,7 +51,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/searchwithq/SearchWithQRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/searchwithq/SearchWithQRequestBuilder.java index 05bbe04c72f..1633ea7554e 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/searchwithq/SearchWithQRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/searchwithq/SearchWithQRequestBuilder.java @@ -38,19 +38,21 @@ public SearchWithQRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/search(q='{q}'){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function search + * Search the hierarchy of items for items matching a query.You can search within a folder hierarchy, a whole drive, or files shared with the current user. * @return a {@link SearchWithQGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public SearchWithQGetResponse get() { return get(null); } /** - * Invoke function search + * Search the hierarchy of items for items matching a query.You can search within a folder hierarchy, a whole drive, or files shared with the current user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SearchWithQGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public SearchWithQGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public SearchWithQGetResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, SearchWithQGetResponse::createFromDiscriminatorValue); } /** - * Invoke function search + * Search the hierarchy of items for items matching a query.You can search within a folder hierarchy, a whole drive, or files shared with the current user. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function search + * Search the hierarchy of items for items matching a query.You can search within a folder hierarchy, a whole drive, or files shared with the current user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -90,7 +92,7 @@ public SearchWithQRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new SearchWithQRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function search + * Search the hierarchy of items for items matching a query.You can search within a folder hierarchy, a whole drive, or files shared with the current user. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/sharedwithme/SharedWithMeRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/sharedwithme/SharedWithMeRequestBuilder.java index d5da703c227..d902d2e4c1d 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/sharedwithme/SharedWithMeRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/sharedwithme/SharedWithMeRequestBuilder.java @@ -36,19 +36,21 @@ public SharedWithMeRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/sharedWithMe(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function sharedWithMe + * Get a list of driveItem objects shared with the owner of a drive. The driveItems returned from the sharedWithMe method always include the remoteItem facet that indicates they are items from a different drive. * @return a {@link SharedWithMeGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public SharedWithMeGetResponse get() { return get(null); } /** - * Invoke function sharedWithMe + * Get a list of driveItem objects shared with the owner of a drive. The driveItems returned from the sharedWithMe method always include the remoteItem facet that indicates they are items from a different drive. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SharedWithMeGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public SharedWithMeGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public SharedWithMeGetResponse get(@jakarta.annotation.Nullable final java.util. return this.requestAdapter.send(requestInfo, errorMapping, SharedWithMeGetResponse::createFromDiscriminatorValue); } /** - * Invoke function sharedWithMe + * Get a list of driveItem objects shared with the owner of a drive. The driveItems returned from the sharedWithMe method always include the remoteItem facet that indicates they are items from a different drive. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function sharedWithMe + * Get a list of driveItem objects shared with the owner of a drive. The driveItems returned from the sharedWithMe method always include the remoteItem facet that indicates they are items from a different drive. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public SharedWithMeRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri return new SharedWithMeRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function sharedWithMe + * Get a list of driveItem objects shared with the owner of a drive. The driveItems returned from the sharedWithMe method always include the remoteItem facet that indicates they are items from a different drive. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/special/SpecialRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/special/SpecialRequestBuilder.java index b5f67ee4df3..e65976c4c15 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/special/SpecialRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/special/SpecialRequestBuilder.java @@ -59,7 +59,7 @@ public SpecialRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/special{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Use the special collection to access a special folder by name. Special folders provide simple aliases to access well-known folders in OneDrive without the need to look up the folder by path (which would require localization), or reference the folder with an ID. If a special folder is renamed or moved to another location within the drive, this syntax will continue to find that folder. Special folders are automatically created the first time an application attempts to write to one, if it doesn't already exist. If a user deletes one, it is recreated when written to again. + * Collection of common folders available in OneDrive. Read-only. Nullable. * @return a {@link DriveItemCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -68,7 +68,7 @@ public DriveItemCollectionResponse get() { return get(null); } /** - * Use the special collection to access a special folder by name. Special folders provide simple aliases to access well-known folders in OneDrive without the need to look up the folder by path (which would require localization), or reference the folder with an ID. If a special folder is renamed or moved to another location within the drive, this syntax will continue to find that folder. Special folders are automatically created the first time an application attempts to write to one, if it doesn't already exist. If a user deletes one, it is recreated when written to again. + * Collection of common folders available in OneDrive. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DriveItemCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -81,7 +81,7 @@ public DriveItemCollectionResponse get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, DriveItemCollectionResponse::createFromDiscriminatorValue); } /** - * Use the special collection to access a special folder by name. Special folders provide simple aliases to access well-known folders in OneDrive without the need to look up the folder by path (which would require localization), or reference the folder with an ID. If a special folder is renamed or moved to another location within the drive, this syntax will continue to find that folder. Special folders are automatically created the first time an application attempts to write to one, if it doesn't already exist. If a user deletes one, it is recreated when written to again. + * Collection of common folders available in OneDrive. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -89,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Use the special collection to access a special folder by name. Special folders provide simple aliases to access well-known folders in OneDrive without the need to look up the folder by path (which would require localization), or reference the folder with an ID. If a special folder is renamed or moved to another location within the drive, this syntax will continue to find that folder. Special folders are automatically created the first time an application attempts to write to one, if it doesn't already exist. If a user deletes one, it is recreated when written to again. + * Collection of common folders available in OneDrive. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -111,7 +111,7 @@ public SpecialRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new SpecialRequestBuilder(rawUrl, requestAdapter); } /** - * Use the special collection to access a special folder by name. Special folders provide simple aliases to access well-known folders in OneDrive without the need to look up the folder by path (which would require localization), or reference the folder with an ID. If a special folder is renamed or moved to another location within the drive, this syntax will continue to find that folder. Special folders are automatically created the first time an application attempts to write to one, if it doesn't already exist. If a user deletes one, it is recreated when written to again. + * Collection of common folders available in OneDrive. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/drives/item/special/item/DriveItemItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/drives/item/special/item/DriveItemItemRequestBuilder.java index c487190afe2..70cfa37ad51 100644 --- a/src/main/java/com/microsoft/graph/generated/drives/item/special/item/DriveItemItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/drives/item/special/item/DriveItemItemRequestBuilder.java @@ -46,21 +46,19 @@ public DriveItemItemRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/drives/{drive%2Did}/special/{driveItem%2Did}{?%24expand,%24select}", rawUrl); } /** - * Use the special collection to access a special folder by name. Special folders provide simple aliases to access well-known folders in OneDrive without the need to look up the folder by path (which would require localization), or reference the folder with an ID. If a special folder is renamed or moved to another location within the drive, this syntax will continue to find that folder. Special folders are automatically created the first time an application attempts to write to one, if it doesn't already exist. If a user deletes one, it is recreated when written to again. + * Collection of common folders available in OneDrive. Read-only. Nullable. * @return a {@link DriveItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DriveItem get() { return get(null); } /** - * Use the special collection to access a special folder by name. Special folders provide simple aliases to access well-known folders in OneDrive without the need to look up the folder by path (which would require localization), or reference the folder with an ID. If a special folder is renamed or moved to another location within the drive, this syntax will continue to find that folder. Special folders are automatically created the first time an application attempts to write to one, if it doesn't already exist. If a user deletes one, it is recreated when written to again. + * Collection of common folders available in OneDrive. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DriveItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DriveItem get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -70,7 +68,7 @@ public DriveItem get(@jakarta.annotation.Nullable final java.util.function.Consu return this.requestAdapter.send(requestInfo, errorMapping, DriveItem::createFromDiscriminatorValue); } /** - * Use the special collection to access a special folder by name. Special folders provide simple aliases to access well-known folders in OneDrive without the need to look up the folder by path (which would require localization), or reference the folder with an ID. If a special folder is renamed or moved to another location within the drive, this syntax will continue to find that folder. Special folders are automatically created the first time an application attempts to write to one, if it doesn't already exist. If a user deletes one, it is recreated when written to again. + * Collection of common folders available in OneDrive. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -78,7 +76,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Use the special collection to access a special folder by name. Special folders provide simple aliases to access well-known folders in OneDrive without the need to look up the folder by path (which would require localization), or reference the folder with an ID. If a special folder is renamed or moved to another location within the drive, this syntax will continue to find that folder. Special folders are automatically created the first time an application attempts to write to one, if it doesn't already exist. If a user deletes one, it is recreated when written to again. + * Collection of common folders available in OneDrive. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -100,7 +98,7 @@ public DriveItemItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new DriveItemItemRequestBuilder(rawUrl, requestAdapter); } /** - * Use the special collection to access a special folder by name. Special folders provide simple aliases to access well-known folders in OneDrive without the need to look up the folder by path (which would require localization), or reference the folder with an ID. If a special folder is renamed or moved to another location within the drive, this syntax will continue to find that folder. Special folders are automatically created the first time an application attempts to write to one, if it doesn't already exist. If a user deletes one, it is recreated when written to again. + * Collection of common folders available in OneDrive. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/classes/ClassesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/classes/ClassesRequestBuilder.java index 88a3e9af18e..857d303c9e0 100644 --- a/src/main/java/com/microsoft/graph/generated/education/classes/ClassesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/classes/ClassesRequestBuilder.java @@ -69,21 +69,19 @@ public ClassesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/education/classes{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the educationClass objects and their properties. + * Get classes from education * @return a {@link EducationClassCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationClassCollectionResponse get() { return get(null); } /** - * Get a list of the educationClass objects and their properties. + * Get classes from education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationClassCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationClassCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public EducationClassCollectionResponse get(@jakarta.annotation.Nullable final j return this.requestAdapter.send(requestInfo, errorMapping, EducationClassCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new educationClass object. + * Create new navigation property to classes for education * @param body The request body * @return a {@link EducationClass} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationClass post(@jakarta.annotation.Nonnull final EducationClass body) { return post(body, null); } /** - * Create a new educationClass object. + * Create new navigation property to classes for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationClass} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationClass post(@jakarta.annotation.Nonnull final EducationClass body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public EducationClass post(@jakarta.annotation.Nonnull final EducationClass body return this.requestAdapter.send(requestInfo, errorMapping, EducationClass::createFromDiscriminatorValue); } /** - * Get a list of the educationClass objects and their properties. + * Get classes from education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the educationClass objects and their properties. + * Get classes from education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new educationClass object. + * Create new navigation property to classes for education * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new educationClass object. + * Create new navigation property to classes for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public ClassesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new ClassesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the educationClass objects and their properties. + * Get classes from education */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/classes/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/classes/delta/DeltaRequestBuilder.java index 0b35127bcc2..cdbd92c388c 100644 --- a/src/main/java/com/microsoft/graph/generated/education/classes/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/classes/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/education/classes/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Get newly created or updated classes, including membership changes, without having to perform a full read of the entire class collection. See Use delta query for details. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Get newly created or updated classes, including membership changes, without having to perform a full read of the entire class collection. See Use delta query for details. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Get newly created or updated classes, including membership changes, without having to perform a full read of the entire class collection. See Use delta query for details. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Get newly created or updated classes, including membership changes, without having to perform a full read of the entire class collection. See Use delta query for details. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Get newly created or updated classes, including membership changes, without having to perform a full read of the entire class collection. See Use delta query for details. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/classes/item/EducationClassItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/classes/item/EducationClassItemRequestBuilder.java index b02dc939fc5..1c307d9af79 100644 --- a/src/main/java/com/microsoft/graph/generated/education/classes/item/EducationClassItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/classes/item/EducationClassItemRequestBuilder.java @@ -118,18 +118,16 @@ public EducationClassItemRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/education/classes/{educationClass%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an educationClass. Because a class is also a universal group, deleting a class deletes the group. + * Delete navigation property classes for education * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an educationClass. Because a class is also a universal group, deleting a class deletes the group. + * Delete navigation property classes for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -138,21 +136,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a class from the system. A class is a universal group with a special property that indicates to the system that the group is a class. Group members represent the students; group admins represent the teachers in the class. If you're using the delegated token, the user will only see classes in which they are members. + * Get classes from education * @return a {@link EducationClass} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationClass get() { return get(null); } /** - * Retrieve a class from the system. A class is a universal group with a special property that indicates to the system that the group is a class. Group members represent the students; group admins represent the teachers in the class. If you're using the delegated token, the user will only see classes in which they are members. + * Get classes from education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationClass} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationClass get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -162,23 +158,21 @@ public EducationClass get(@jakarta.annotation.Nullable final java.util.function. return this.requestAdapter.send(requestInfo, errorMapping, EducationClass::createFromDiscriminatorValue); } /** - * Update the properties of an educationClass object. + * Update the navigation property classes in education * @param body The request body * @return a {@link EducationClass} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationClass patch(@jakarta.annotation.Nonnull final EducationClass body) { return patch(body, null); } /** - * Update the properties of an educationClass object. + * Update the navigation property classes in education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationClass} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationClass patch(@jakarta.annotation.Nonnull final EducationClass body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -189,7 +183,7 @@ public EducationClass patch(@jakarta.annotation.Nonnull final EducationClass bod return this.requestAdapter.send(requestInfo, errorMapping, EducationClass::createFromDiscriminatorValue); } /** - * Delete an educationClass. Because a class is also a universal group, deleting a class deletes the group. + * Delete navigation property classes for education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -197,7 +191,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an educationClass. Because a class is also a universal group, deleting a class deletes the group. + * Delete navigation property classes for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -209,7 +203,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a class from the system. A class is a universal group with a special property that indicates to the system that the group is a class. Group members represent the students; group admins represent the teachers in the class. If you're using the delegated token, the user will only see classes in which they are members. + * Get classes from education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -217,7 +211,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a class from the system. A class is a universal group with a special property that indicates to the system that the group is a class. Group members represent the students; group admins represent the teachers in the class. If you're using the delegated token, the user will only see classes in which they are members. + * Get classes from education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -229,7 +223,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an educationClass object. + * Update the navigation property classes in education * @param body The request body * @return a {@link RequestInformation} */ @@ -238,7 +232,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an educationClass object. + * Update the navigation property classes in education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -269,7 +263,7 @@ public EducationClassItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fina public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve a class from the system. A class is a universal group with a special property that indicates to the system that the group is a class. Group members represent the students; group admins represent the teachers in the class. If you're using the delegated token, the user will only see classes in which they are members. + * Get classes from education */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignmentcategories/AssignmentCategoriesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignmentcategories/AssignmentCategoriesRequestBuilder.java index 2743683c825..c199ea8a50d 100644 --- a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignmentcategories/AssignmentCategoriesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignmentcategories/AssignmentCategoriesRequestBuilder.java @@ -69,21 +69,19 @@ public AssignmentCategoriesRequestBuilder(@jakarta.annotation.Nonnull final Stri super(requestAdapter, "{+baseurl}/education/classes/{educationClass%2Did}/assignmentCategories{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of educationCategory objects. Only teachers can perform this operation. + * All categories associated with this class. Nullable. * @return a {@link EducationCategoryCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationCategoryCollectionResponse get() { return get(null); } /** - * Retrieve a list of educationCategory objects. Only teachers can perform this operation. + * All categories associated with this class. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationCategoryCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationCategoryCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public EducationCategoryCollectionResponse get(@jakarta.annotation.Nullable fina return this.requestAdapter.send(requestInfo, errorMapping, EducationCategoryCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new educationCategory on an educationClass. Only teachers can perform this operation. + * Create new navigation property to assignmentCategories for education * @param body The request body * @return a {@link EducationCategory} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationCategory post(@jakarta.annotation.Nonnull final EducationCategory body) { return post(body, null); } /** - * Create a new educationCategory on an educationClass. Only teachers can perform this operation. + * Create new navigation property to assignmentCategories for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationCategory} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationCategory post(@jakarta.annotation.Nonnull final EducationCategory body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public EducationCategory post(@jakarta.annotation.Nonnull final EducationCategor return this.requestAdapter.send(requestInfo, errorMapping, EducationCategory::createFromDiscriminatorValue); } /** - * Retrieve a list of educationCategory objects. Only teachers can perform this operation. + * All categories associated with this class. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of educationCategory objects. Only teachers can perform this operation. + * All categories associated with this class. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new educationCategory on an educationClass. Only teachers can perform this operation. + * Create new navigation property to assignmentCategories for education * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new educationCategory on an educationClass. Only teachers can perform this operation. + * Create new navigation property to assignmentCategories for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public AssignmentCategoriesRequestBuilder withUrl(@jakarta.annotation.Nonnull fi return new AssignmentCategoriesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of educationCategory objects. Only teachers can perform this operation. + * All categories associated with this class. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignmentcategories/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignmentcategories/delta/DeltaRequestBuilder.java index c374db67b7e..100fd9852c2 100644 --- a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignmentcategories/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignmentcategories/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/education/classes/{educationClass%2Did}/assignmentCategories/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Get a list of newly created or updated educationCategory objects without having to perform a full read of the collection. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Get a list of newly created or updated educationCategory objects without having to perform a full read of the collection. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Get a list of newly created or updated educationCategory objects without having to perform a full read of the collection. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Get a list of newly created or updated educationCategory objects without having to perform a full read of the collection. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Get a list of newly created or updated educationCategory objects without having to perform a full read of the collection. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignmentcategories/item/EducationCategoryItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignmentcategories/item/EducationCategoryItemRequestBuilder.java index f126525b5f9..b7cd9d2e550 100644 --- a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignmentcategories/item/EducationCategoryItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignmentcategories/item/EducationCategoryItemRequestBuilder.java @@ -37,18 +37,16 @@ public EducationCategoryItemRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/education/classes/{educationClass%2Did}/assignmentCategories/{educationCategory%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an existing category. Only teachers can perform this operation. + * Delete navigation property assignmentCategories for education * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an existing category. Only teachers can perform this operation. + * Delete navigation property assignmentCategories for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve an educationCategory object. Only teachers, students, and applications with application permissions can perform this operation. + * All categories associated with this class. Nullable. * @return a {@link EducationCategory} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationCategory get() { return get(null); } /** - * Retrieve an educationCategory object. Only teachers, students, and applications with application permissions can perform this operation. + * All categories associated with this class. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationCategory} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationCategory get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -106,7 +102,7 @@ public EducationCategory patch(@jakarta.annotation.Nonnull final EducationCatego return this.requestAdapter.send(requestInfo, errorMapping, EducationCategory::createFromDiscriminatorValue); } /** - * Delete an existing category. Only teachers can perform this operation. + * Delete navigation property assignmentCategories for education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -114,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an existing category. Only teachers can perform this operation. + * Delete navigation property assignmentCategories for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve an educationCategory object. Only teachers, students, and applications with application permissions can perform this operation. + * All categories associated with this class. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve an educationCategory object. Only teachers, students, and applications with application permissions can perform this operation. + * All categories associated with this class. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public EducationCategoryItemRequestBuilder withUrl(@jakarta.annotation.Nonnull f public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve an educationCategory object. Only teachers, students, and applications with application permissions can perform this operation. + * All categories associated with this class. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignmentdefaults/AssignmentDefaultsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignmentdefaults/AssignmentDefaultsRequestBuilder.java index fcff1b4fa80..ca931634767 100644 --- a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignmentdefaults/AssignmentDefaultsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignmentdefaults/AssignmentDefaultsRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of an educationAssignmentDefaults object. These are the class-level assignment defaults respected by new assignments created in the class. Callers can continue to specify custom values on each assignment creation if they don't want the default behaviors. Only teachers can perform this operation. + * Specifies class-level defaults respected by new assignments created in the class. * @return a {@link EducationAssignmentDefaults} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationAssignmentDefaults get() { return get(null); } /** - * Read the properties and relationships of an educationAssignmentDefaults object. These are the class-level assignment defaults respected by new assignments created in the class. Callers can continue to specify custom values on each assignment creation if they don't want the default behaviors. Only teachers can perform this operation. + * Specifies class-level defaults respected by new assignments created in the class. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationAssignmentDefaults} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationAssignmentDefaults get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public EducationAssignmentDefaults get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, EducationAssignmentDefaults::createFromDiscriminatorValue); } /** - * Update the properties of an educationAssignmentDefaults object. Only teachers can update these settings. + * Update the navigation property assignmentDefaults in education * @param body The request body * @return a {@link EducationAssignmentDefaults} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationAssignmentDefaults patch(@jakarta.annotation.Nonnull final EducationAssignmentDefaults body) { return patch(body, null); } /** - * Update the properties of an educationAssignmentDefaults object. Only teachers can update these settings. + * Update the navigation property assignmentDefaults in education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationAssignmentDefaults} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationAssignmentDefaults patch(@jakarta.annotation.Nonnull final EducationAssignmentDefaults body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of an educationAssignmentDefaults object. These are the class-level assignment defaults respected by new assignments created in the class. Callers can continue to specify custom values on each assignment creation if they don't want the default behaviors. Only teachers can perform this operation. + * Specifies class-level defaults respected by new assignments created in the class. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of an educationAssignmentDefaults object. These are the class-level assignment defaults respected by new assignments created in the class. Callers can continue to specify custom values on each assignment creation if they don't want the default behaviors. Only teachers can perform this operation. + * Specifies class-level defaults respected by new assignments created in the class. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an educationAssignmentDefaults object. Only teachers can update these settings. + * Update the navigation property assignmentDefaults in education * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an educationAssignmentDefaults object. Only teachers can update these settings. + * Update the navigation property assignmentDefaults in education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public AssignmentDefaultsRequestBuilder withUrl(@jakarta.annotation.Nonnull fina public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of an educationAssignmentDefaults object. These are the class-level assignment defaults respected by new assignments created in the class. Callers can continue to specify custom values on each assignment creation if they don't want the default behaviors. Only teachers can perform this operation. + * Specifies class-level defaults respected by new assignments created in the class. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/AssignmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/AssignmentsRequestBuilder.java index c5dcca7d43c..640386cf623 100644 --- a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/AssignmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/AssignmentsRequestBuilder.java @@ -69,21 +69,19 @@ public AssignmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/education/classes/{educationClass%2Did}/assignments{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of assignment objects. Only teachers, students, and applications with application permissions can perform this operation. A teacher, or an application running with application permissions, can see all assignment objects for the class. Students can only see assignments that are assigned to them. + * All assignments associated with this class. Nullable. * @return a {@link EducationAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationAssignmentCollectionResponse get() { return get(null); } /** - * Retrieve a list of assignment objects. Only teachers, students, and applications with application permissions can perform this operation. A teacher, or an application running with application permissions, can see all assignment objects for the class. Students can only see assignments that are assigned to them. + * All assignments associated with this class. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationAssignmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public EducationAssignmentCollectionResponse get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, EducationAssignmentCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new assignment. Only teachers in a class can create an assignment. Assignments start in the Draft state, which means that students will not see the assignment until publication. + * Create new navigation property to assignments for education * @param body The request body * @return a {@link EducationAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationAssignment post(@jakarta.annotation.Nonnull final EducationAssignment body) { return post(body, null); } /** - * Create a new assignment. Only teachers in a class can create an assignment. Assignments start in the Draft state, which means that students will not see the assignment until publication. + * Create new navigation property to assignments for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationAssignment post(@jakarta.annotation.Nonnull final EducationAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public EducationAssignment post(@jakarta.annotation.Nonnull final EducationAssig return this.requestAdapter.send(requestInfo, errorMapping, EducationAssignment::createFromDiscriminatorValue); } /** - * Retrieve a list of assignment objects. Only teachers, students, and applications with application permissions can perform this operation. A teacher, or an application running with application permissions, can see all assignment objects for the class. Students can only see assignments that are assigned to them. + * All assignments associated with this class. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of assignment objects. Only teachers, students, and applications with application permissions can perform this operation. A teacher, or an application running with application permissions, can see all assignment objects for the class. Students can only see assignments that are assigned to them. + * All assignments associated with this class. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new assignment. Only teachers in a class can create an assignment. Assignments start in the Draft state, which means that students will not see the assignment until publication. + * Create new navigation property to assignments for education * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new assignment. Only teachers in a class can create an assignment. Assignments start in the Draft state, which means that students will not see the assignment until publication. + * Create new navigation property to assignments for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public AssignmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AssignmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of assignment objects. Only teachers, students, and applications with application permissions can perform this operation. A teacher, or an application running with application permissions, can see all assignment objects for the class. Students can only see assignments that are assigned to them. + * All assignments associated with this class. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/delta/DeltaRequestBuilder.java index 79c546d5d2d..daf483e6ae0 100644 --- a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/education/classes/{educationClass%2Did}/assignments/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Get a list of newly-created or updated assignments without reading the whole collection. A teacher or an application running with application permissions can see all assignment objects for the class. Students can only see assignments that are assigned to them. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Get a list of newly-created or updated assignments without reading the whole collection. A teacher or an application running with application permissions can see all assignment objects for the class. Students can only see assignments that are assigned to them. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Get a list of newly-created or updated assignments without reading the whole collection. A teacher or an application running with application permissions can see all assignment objects for the class. Students can only see assignments that are assigned to them. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Get a list of newly-created or updated assignments without reading the whole collection. A teacher or an application running with application permissions can see all assignment objects for the class. Students can only see assignments that are assigned to them. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Get a list of newly-created or updated assignments without reading the whole collection. A teacher or an application running with application permissions can see all assignment objects for the class. Students can only see assignments that are assigned to them. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/EducationAssignmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/EducationAssignmentItemRequestBuilder.java index ad391540f4b..ec5e224d392 100644 --- a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/EducationAssignmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/EducationAssignmentItemRequestBuilder.java @@ -127,18 +127,16 @@ public EducationAssignmentItemRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/education/classes/{educationClass%2Did}/assignments/{educationAssignment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an existing assignment. Only teachers within a class can delete assignments. + * Delete navigation property assignments for education * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an existing assignment. Only teachers within a class can delete assignments. + * Delete navigation property assignments for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -147,21 +145,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the properties and relationships of an assignment. Only teachers, students, and applications with application permissions can perform this operation. Students can only see assignments assigned to them; teachers and applications with application permissions can see all assignments in a class. You can use the Prefer header in your request to get the inactive status in case the assignment is deactivated; otherwise, the response value for the status property is unknownFutureValue. + * All assignments associated with this class. Nullable. * @return a {@link EducationAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationAssignment get() { return get(null); } /** - * Get the properties and relationships of an assignment. Only teachers, students, and applications with application permissions can perform this operation. Students can only see assignments assigned to them; teachers and applications with application permissions can see all assignments in a class. You can use the Prefer header in your request to get the inactive status in case the assignment is deactivated; otherwise, the response value for the status property is unknownFutureValue. + * All assignments associated with this class. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationAssignment get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -171,23 +167,21 @@ public EducationAssignment get(@jakarta.annotation.Nullable final java.util.func return this.requestAdapter.send(requestInfo, errorMapping, EducationAssignment::createFromDiscriminatorValue); } /** - * Update an educationAssignment object. Only teachers can perform this action. Alternatively, request to change the status of an assignment with publish action. Don't use a PATCH operation for this purpose. + * Update the navigation property assignments in education * @param body The request body * @return a {@link EducationAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationAssignment patch(@jakarta.annotation.Nonnull final EducationAssignment body) { return patch(body, null); } /** - * Update an educationAssignment object. Only teachers can perform this action. Alternatively, request to change the status of an assignment with publish action. Don't use a PATCH operation for this purpose. + * Update the navigation property assignments in education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationAssignment patch(@jakarta.annotation.Nonnull final EducationAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -198,7 +192,7 @@ public EducationAssignment patch(@jakarta.annotation.Nonnull final EducationAssi return this.requestAdapter.send(requestInfo, errorMapping, EducationAssignment::createFromDiscriminatorValue); } /** - * Delete an existing assignment. Only teachers within a class can delete assignments. + * Delete navigation property assignments for education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -206,7 +200,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an existing assignment. Only teachers within a class can delete assignments. + * Delete navigation property assignments for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -218,7 +212,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the properties and relationships of an assignment. Only teachers, students, and applications with application permissions can perform this operation. Students can only see assignments assigned to them; teachers and applications with application permissions can see all assignments in a class. You can use the Prefer header in your request to get the inactive status in case the assignment is deactivated; otherwise, the response value for the status property is unknownFutureValue. + * All assignments associated with this class. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -226,7 +220,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the properties and relationships of an assignment. Only teachers, students, and applications with application permissions can perform this operation. Students can only see assignments assigned to them; teachers and applications with application permissions can see all assignments in a class. You can use the Prefer header in your request to get the inactive status in case the assignment is deactivated; otherwise, the response value for the status property is unknownFutureValue. + * All assignments associated with this class. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -238,7 +232,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update an educationAssignment object. Only teachers can perform this action. Alternatively, request to change the status of an assignment with publish action. Don't use a PATCH operation for this purpose. + * Update the navigation property assignments in education * @param body The request body * @return a {@link RequestInformation} */ @@ -247,7 +241,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update an educationAssignment object. Only teachers can perform this action. Alternatively, request to change the status of an assignment with publish action. Don't use a PATCH operation for this purpose. + * Update the navigation property assignments in education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -278,7 +272,7 @@ public EducationAssignmentItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the properties and relationships of an assignment. Only teachers, students, and applications with application permissions can perform this operation. Students can only see assignments assigned to them; teachers and applications with application permissions can see all assignments in a class. You can use the Prefer header in your request to get the inactive status in case the assignment is deactivated; otherwise, the response value for the status property is unknownFutureValue. + * All assignments associated with this class. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/categories/CategoriesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/categories/CategoriesRequestBuilder.java index f4e7b6a5f59..2eca39398f3 100644 --- a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/categories/CategoriesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/categories/CategoriesRequestBuilder.java @@ -78,21 +78,19 @@ public CategoriesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/education/classes/{educationClass%2Did}/assignments/{educationAssignment%2Did}/categories{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List all the categories associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * When set, enables users to easily find assignments of a given type. Read-only. Nullable. * @return a {@link EducationCategoryCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationCategoryCollectionResponse get() { return get(null); } /** - * List all the categories associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * When set, enables users to easily find assignments of a given type. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationCategoryCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationCategoryCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -102,23 +100,21 @@ public EducationCategoryCollectionResponse get(@jakarta.annotation.Nullable fina return this.requestAdapter.send(requestInfo, errorMapping, EducationCategoryCollectionResponse::createFromDiscriminatorValue); } /** - * Add one or more existing educationCategory objects to the specified educationAssignment. Only teachers can perform this operation. + * Create new navigation property to categories for education * @param body The request body * @return a {@link EducationCategory} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationCategory post(@jakarta.annotation.Nonnull final EducationCategory body) { return post(body, null); } /** - * Add one or more existing educationCategory objects to the specified educationAssignment. Only teachers can perform this operation. + * Create new navigation property to categories for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationCategory} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationCategory post(@jakarta.annotation.Nonnull final EducationCategory body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -129,7 +125,7 @@ public EducationCategory post(@jakarta.annotation.Nonnull final EducationCategor return this.requestAdapter.send(requestInfo, errorMapping, EducationCategory::createFromDiscriminatorValue); } /** - * List all the categories associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * When set, enables users to easily find assignments of a given type. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -137,7 +133,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List all the categories associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * When set, enables users to easily find assignments of a given type. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add one or more existing educationCategory objects to the specified educationAssignment. Only teachers can perform this operation. + * Create new navigation property to categories for education * @param body The request body * @return a {@link RequestInformation} */ @@ -158,7 +154,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add one or more existing educationCategory objects to the specified educationAssignment. Only teachers can perform this operation. + * Create new navigation property to categories for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -183,7 +179,7 @@ public CategoriesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new CategoriesRequestBuilder(rawUrl, requestAdapter); } /** - * List all the categories associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * When set, enables users to easily find assignments of a given type. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/categories/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/categories/delta/DeltaRequestBuilder.java index 4dddb3789d0..6014c7c110c 100644 --- a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/categories/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/categories/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/education/classes/{educationClass%2Did}/assignments/{educationAssignment%2Did}/categories/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Get a list of newly created or updated educationCategory objects without having to perform a full read of the collection. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Get a list of newly created or updated educationCategory objects without having to perform a full read of the collection. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Get a list of newly created or updated educationCategory objects without having to perform a full read of the collection. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Get a list of newly created or updated educationCategory objects without having to perform a full read of the collection. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Get a list of newly created or updated educationCategory objects without having to perform a full read of the collection. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/categories/item/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/categories/item/ref/RefRequestBuilder.java index 8c758a0bd5b..d1f6b87123a 100644 --- a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/categories/item/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/categories/item/ref/RefRequestBuilder.java @@ -35,18 +35,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/education/classes/{educationClass%2Did}/assignments/{educationAssignment%2Did}/categories/{educationCategory%2Did}/$ref", rawUrl); } /** - * Remove an educationCategory from an educationAssignment. Only teachers can perform this operation. + * Delete ref of navigation property categories for education * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove an educationCategory from an educationAssignment. Only teachers can perform this operation. + * Delete ref of navigation property categories for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -55,7 +53,7 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove an educationCategory from an educationAssignment. Only teachers can perform this operation. + * Delete ref of navigation property categories for education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -63,7 +61,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove an educationCategory from an educationAssignment. Only teachers can perform this operation. + * Delete ref of navigation property categories for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/categories/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/categories/ref/RefRequestBuilder.java index 5ecea054cf7..d25a61c67d2 100644 --- a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/categories/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/categories/ref/RefRequestBuilder.java @@ -38,18 +38,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/education/classes/{educationClass%2Did}/assignments/{educationAssignment%2Did}/categories/$ref?@id={%40id}{&%24count,%24filter,%24orderby,%24search,%24skip,%24top}", rawUrl); } /** - * Remove an educationCategory from an educationAssignment. Only teachers can perform this operation. + * Delete ref of navigation property categories for education * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove an educationCategory from an educationAssignment. Only teachers can perform this operation. + * Delete ref of navigation property categories for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -58,21 +56,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * List all the categories associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * When set, enables users to easily find assignments of a given type. Read-only. Nullable. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get() { return get(null); } /** - * List all the categories associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * When set, enables users to easily find assignments of a given type. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -82,20 +78,18 @@ public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util return this.requestAdapter.send(requestInfo, errorMapping, StringCollectionResponse::createFromDiscriminatorValue); } /** - * Add one or more existing educationCategory objects to the specified educationAssignment. Only teachers can perform this operation. + * Create new navigation property ref to categories for education * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body) { post(body, null); } /** - * Add one or more existing educationCategory objects to the specified educationAssignment. Only teachers can perform this operation. + * Create new navigation property ref to categories for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { Objects.requireNonNull(body); @@ -105,7 +99,7 @@ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakart this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove an educationCategory from an educationAssignment. Only teachers can perform this operation. + * Delete ref of navigation property categories for education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -113,7 +107,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove an educationCategory from an educationAssignment. Only teachers can perform this operation. + * Delete ref of navigation property categories for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * List all the categories associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * When set, enables users to easily find assignments of a given type. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -133,7 +127,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List all the categories associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * When set, enables users to easily find assignments of a given type. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add one or more existing educationCategory objects to the specified educationAssignment. Only teachers can perform this operation. + * Create new navigation property ref to categories for education * @param body The request body * @return a {@link RequestInformation} */ @@ -154,7 +148,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add one or more existing educationCategory objects to the specified educationAssignment. Only teachers can perform this operation. + * Create new navigation property ref to categories for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -179,7 +173,7 @@ public RefRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl return new RefRequestBuilder(rawUrl, requestAdapter); } /** - * Remove an educationCategory from an educationAssignment. Only teachers can perform this operation. + * Delete ref of navigation property categories for education */ @jakarta.annotation.Generated("com.microsoft.kiota") public class DeleteQueryParameters implements QueryParameters { @@ -211,7 +205,7 @@ public class DeleteRequestConfiguration extends BaseRequestConfiguration { public DeleteQueryParameters queryParameters = new DeleteQueryParameters(); } /** - * List all the categories associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * When set, enables users to easily find assignments of a given type. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/resources/ResourcesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/resources/ResourcesRequestBuilder.java index 6458aec60dc..6a1b564710f 100644 --- a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/resources/ResourcesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/resources/ResourcesRequestBuilder.java @@ -60,21 +60,19 @@ public ResourcesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/education/classes/{educationClass%2Did}/assignments/{educationAssignment%2Did}/resources{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get all the educationAssignmentResource objects associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. * @return a {@link EducationAssignmentResourceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationAssignmentResourceCollectionResponse get() { return get(null); } /** - * Get all the educationAssignmentResource objects associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationAssignmentResourceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationAssignmentResourceCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public EducationAssignmentResourceCollectionResponse get(@jakarta.annotation.Nul return this.requestAdapter.send(requestInfo, errorMapping, EducationAssignmentResourceCollectionResponse::createFromDiscriminatorValue); } /** - * Create an assignment resource. Only teachers can perform this operation. You can create the following types of assignment resources: Every resource has an @odata.type property to indicate which type of resource is being created. + * Create new navigation property to resources for education * @param body The request body * @return a {@link EducationAssignmentResource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationAssignmentResource post(@jakarta.annotation.Nonnull final EducationAssignmentResource body) { return post(body, null); } /** - * Create an assignment resource. Only teachers can perform this operation. You can create the following types of assignment resources: Every resource has an @odata.type property to indicate which type of resource is being created. + * Create new navigation property to resources for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationAssignmentResource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationAssignmentResource post(@jakarta.annotation.Nonnull final EducationAssignmentResource body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public EducationAssignmentResource post(@jakarta.annotation.Nonnull final Educat return this.requestAdapter.send(requestInfo, errorMapping, EducationAssignmentResource::createFromDiscriminatorValue); } /** - * Get all the educationAssignmentResource objects associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get all the educationAssignmentResource objects associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an assignment resource. Only teachers can perform this operation. You can create the following types of assignment resources: Every resource has an @odata.type property to indicate which type of resource is being created. + * Create new navigation property to resources for education * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an assignment resource. Only teachers can perform this operation. You can create the following types of assignment resources: Every resource has an @odata.type property to indicate which type of resource is being created. + * Create new navigation property to resources for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ResourcesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ResourcesRequestBuilder(rawUrl, requestAdapter); } /** - * Get all the educationAssignmentResource objects associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/resources/item/EducationAssignmentResourceItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/resources/item/EducationAssignmentResourceItemRequestBuilder.java index d831fb10a88..4eb3b7d5778 100644 --- a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/resources/item/EducationAssignmentResourceItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/resources/item/EducationAssignmentResourceItemRequestBuilder.java @@ -37,18 +37,16 @@ public EducationAssignmentResourceItemRequestBuilder(@jakarta.annotation.Nonnull super(requestAdapter, "{+baseurl}/education/classes/{educationClass%2Did}/assignments/{educationAssignment%2Did}/resources/{educationAssignmentResource%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a specific educationAssignmentResource attached to an assignment. In general, only teachers in the class can remove a resource. However, teachers can't remove resources marked as 'distributeToStudents', after the assignment has been published to students. + * Delete navigation property resources for education * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a specific educationAssignmentResource attached to an assignment. In general, only teachers in the class can remove a resource. However, teachers can't remove resources marked as 'distributeToStudents', after the assignment has been published to students. + * Delete navigation property resources for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the properties of an education assignment resource associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. * @return a {@link EducationAssignmentResource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationAssignmentResource get() { return get(null); } /** - * Get the properties of an education assignment resource associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationAssignmentResource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationAssignmentResource get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -106,7 +102,7 @@ public EducationAssignmentResource patch(@jakarta.annotation.Nonnull final Educa return this.requestAdapter.send(requestInfo, errorMapping, EducationAssignmentResource::createFromDiscriminatorValue); } /** - * Delete a specific educationAssignmentResource attached to an assignment. In general, only teachers in the class can remove a resource. However, teachers can't remove resources marked as 'distributeToStudents', after the assignment has been published to students. + * Delete navigation property resources for education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -114,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a specific educationAssignmentResource attached to an assignment. In general, only teachers in the class can remove a resource. However, teachers can't remove resources marked as 'distributeToStudents', after the assignment has been published to students. + * Delete navigation property resources for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the properties of an education assignment resource associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the properties of an education assignment resource associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public EducationAssignmentResourceItemRequestBuilder withUrl(@jakarta.annotation public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the properties of an education assignment resource associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/rubric/RubricRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/rubric/RubricRequestBuilder.java index 6e7bb6eea94..9936ecbd1b0 100644 --- a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/rubric/RubricRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/rubric/RubricRequestBuilder.java @@ -46,18 +46,16 @@ public RubricRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/education/classes/{educationClass%2Did}/assignments/{educationAssignment%2Did}/rubric{?%24expand,%24select}", rawUrl); } /** - * Remove an educationRubric from an educationAssignment. This method doesn't delete the rubric itself and can only be performed by teachers. + * Delete navigation property rubric for education * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove an educationRubric from an educationAssignment. This method doesn't delete the rubric itself and can only be performed by teachers. + * Delete navigation property rubric for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the educationRubric object attached to an educationAssignment, if one exists. Only teachers, students, and applications with application permissions can perform this operation. + * When set, the grading rubric attached to this assignment. * @return a {@link EducationRubric} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationRubric get() { return get(null); } /** - * Get the educationRubric object attached to an educationAssignment, if one exists. Only teachers, students, and applications with application permissions can perform this operation. + * When set, the grading rubric attached to this assignment. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationRubric} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationRubric get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public EducationRubric get(@jakarta.annotation.Nullable final java.util.function return this.requestAdapter.send(requestInfo, errorMapping, EducationRubric::createFromDiscriminatorValue); } /** - * Attach an existing educationRubric object to an educationAssignment. Only teachers can perform this operation. + * Update the navigation property rubric in education * @param body The request body * @return a {@link EducationRubric} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationRubric patch(@jakarta.annotation.Nonnull final EducationRubric body) { return patch(body, null); } /** - * Attach an existing educationRubric object to an educationAssignment. Only teachers can perform this operation. + * Update the navigation property rubric in education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationRubric} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationRubric patch(@jakarta.annotation.Nonnull final EducationRubric body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public EducationRubric patch(@jakarta.annotation.Nonnull final EducationRubric b return this.requestAdapter.send(requestInfo, errorMapping, EducationRubric::createFromDiscriminatorValue); } /** - * Remove an educationRubric from an educationAssignment. This method doesn't delete the rubric itself and can only be performed by teachers. + * Delete navigation property rubric for education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove an educationRubric from an educationAssignment. This method doesn't delete the rubric itself and can only be performed by teachers. + * Delete navigation property rubric for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the educationRubric object attached to an educationAssignment, if one exists. Only teachers, students, and applications with application permissions can perform this operation. + * When set, the grading rubric attached to this assignment. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the educationRubric object attached to an educationAssignment, if one exists. Only teachers, students, and applications with application permissions can perform this operation. + * When set, the grading rubric attached to this assignment. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Attach an existing educationRubric object to an educationAssignment. Only teachers can perform this operation. + * Update the navigation property rubric in education * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Attach an existing educationRubric object to an educationAssignment. Only teachers can perform this operation. + * Update the navigation property rubric in education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public RubricRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the educationRubric object attached to an educationAssignment, if one exists. Only teachers, students, and applications with application permissions can perform this operation. + * When set, the grading rubric attached to this assignment. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/rubric/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/rubric/ref/RefRequestBuilder.java index e8427447d1f..cd0f64c26dc 100644 --- a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/rubric/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/rubric/ref/RefRequestBuilder.java @@ -36,18 +36,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/education/classes/{educationClass%2Did}/assignments/{educationAssignment%2Did}/rubric/$ref", rawUrl); } /** - * Remove an educationRubric from an educationAssignment. This method doesn't delete the rubric itself and can only be performed by teachers. + * Delete ref of navigation property rubric for education * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove an educationRubric from an educationAssignment. This method doesn't delete the rubric itself and can only be performed by teachers. + * Delete ref of navigation property rubric for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -56,21 +54,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the educationRubric object attached to an educationAssignment, if one exists. Only teachers, students, and applications with application permissions can perform this operation. + * When set, the grading rubric attached to this assignment. * @return a {@link String} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public String get() { return get(null); } /** - * Get the educationRubric object attached to an educationAssignment, if one exists. Only teachers, students, and applications with application permissions can perform this operation. + * When set, the grading rubric attached to this assignment. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link String} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public String get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -80,20 +76,18 @@ public String get(@jakarta.annotation.Nullable final java.util.function.Consumer return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, String.class); } /** - * Attach an existing educationRubric object to an educationAssignment. Only teachers can perform this operation. + * Update the ref of navigation property rubric in education * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void put(@jakarta.annotation.Nonnull final ReferenceUpdate body) { put(body, null); } /** - * Attach an existing educationRubric object to an educationAssignment. Only teachers can perform this operation. + * Update the ref of navigation property rubric in education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void put(@jakarta.annotation.Nonnull final ReferenceUpdate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { Objects.requireNonNull(body); @@ -103,7 +97,7 @@ public void put(@jakarta.annotation.Nonnull final ReferenceUpdate body, @jakarta this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove an educationRubric from an educationAssignment. This method doesn't delete the rubric itself and can only be performed by teachers. + * Delete ref of navigation property rubric for education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -111,7 +105,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove an educationRubric from an educationAssignment. This method doesn't delete the rubric itself and can only be performed by teachers. + * Delete ref of navigation property rubric for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -123,7 +117,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the educationRubric object attached to an educationAssignment, if one exists. Only teachers, students, and applications with application permissions can perform this operation. + * When set, the grading rubric attached to this assignment. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -131,7 +125,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the educationRubric object attached to an educationAssignment, if one exists. Only teachers, students, and applications with application permissions can perform this operation. + * When set, the grading rubric attached to this assignment. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -143,7 +137,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Attach an existing educationRubric object to an educationAssignment. Only teachers can perform this operation. + * Update the ref of navigation property rubric in education * @param body The request body * @return a {@link RequestInformation} */ @@ -152,7 +146,7 @@ public RequestInformation toPutRequestInformation(@jakarta.annotation.Nonnull fi return toPutRequestInformation(body, null); } /** - * Attach an existing educationRubric object to an educationAssignment. Only teachers can perform this operation. + * Update the ref of navigation property rubric in education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/submissions/SubmissionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/submissions/SubmissionsRequestBuilder.java index 1fd5c1466d0..9afb4210c28 100644 --- a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/submissions/SubmissionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/submissions/SubmissionsRequestBuilder.java @@ -60,21 +60,19 @@ public SubmissionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/education/classes/{educationClass%2Did}/assignments/{educationAssignment%2Did}/submissions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List all the submissions associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. A teacher or an application with application permissions can get all the submissions while a student can only get submissions that they're associated with. + * Once published, there's a submission object for each student representing their work and grade. Read-only. Nullable. * @return a {@link EducationSubmissionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSubmissionCollectionResponse get() { return get(null); } /** - * List all the submissions associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. A teacher or an application with application permissions can get all the submissions while a student can only get submissions that they're associated with. + * Once published, there's a submission object for each student representing their work and grade. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationSubmissionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSubmissionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public EducationSubmission post(@jakarta.annotation.Nonnull final EducationSubmi return this.requestAdapter.send(requestInfo, errorMapping, EducationSubmission::createFromDiscriminatorValue); } /** - * List all the submissions associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. A teacher or an application with application permissions can get all the submissions while a student can only get submissions that they're associated with. + * Once published, there's a submission object for each student representing their work and grade. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List all the submissions associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. A teacher or an application with application permissions can get all the submissions while a student can only get submissions that they're associated with. + * Once published, there's a submission object for each student representing their work and grade. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public SubmissionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new SubmissionsRequestBuilder(rawUrl, requestAdapter); } /** - * List all the submissions associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. A teacher or an application with application permissions can get all the submissions while a student can only get submissions that they're associated with. + * Once published, there's a submission object for each student representing their work and grade. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/submissions/item/EducationSubmissionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/submissions/item/EducationSubmissionItemRequestBuilder.java index 3a83fa78992..098478ff7e1 100644 --- a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/submissions/item/EducationSubmissionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/submissions/item/EducationSubmissionItemRequestBuilder.java @@ -127,21 +127,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a particular submission. Only teachers, students, and applications with application permissions can perform this operation. A submission object represents a student's work for an assignment. Resources associated with the submission represent this work. Only the assignedTo student can see and modify the submission. A teacher or application with application permissions has full access to all submissions. The grade and feedback from a teacher are part of the educationOutcome associated with this object. Only teachers or applications with application permissions can add or change grades and feedback. Students will not see the grade or feedback until the assignment has been released. + * Once published, there's a submission object for each student representing their work and grade. Read-only. Nullable. * @return a {@link EducationSubmission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSubmission get() { return get(null); } /** - * Retrieve a particular submission. Only teachers, students, and applications with application permissions can perform this operation. A submission object represents a student's work for an assignment. Resources associated with the submission represent this work. Only the assignedTo student can see and modify the submission. A teacher or application with application permissions has full access to all submissions. The grade and feedback from a teacher are part of the educationOutcome associated with this object. Only teachers or applications with application permissions can add or change grades and feedback. Students will not see the grade or feedback until the assignment has been released. + * Once published, there's a submission object for each student representing their work and grade. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationSubmission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSubmission get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -196,7 +194,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a particular submission. Only teachers, students, and applications with application permissions can perform this operation. A submission object represents a student's work for an assignment. Resources associated with the submission represent this work. Only the assignedTo student can see and modify the submission. A teacher or application with application permissions has full access to all submissions. The grade and feedback from a teacher are part of the educationOutcome associated with this object. Only teachers or applications with application permissions can add or change grades and feedback. Students will not see the grade or feedback until the assignment has been released. + * Once published, there's a submission object for each student representing their work and grade. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -204,7 +202,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a particular submission. Only teachers, students, and applications with application permissions can perform this operation. A submission object represents a student's work for an assignment. Resources associated with the submission represent this work. Only the assignedTo student can see and modify the submission. A teacher or application with application permissions has full access to all submissions. The grade and feedback from a teacher are part of the educationOutcome associated with this object. Only teachers or applications with application permissions can add or change grades and feedback. Students will not see the grade or feedback until the assignment has been released. + * Once published, there's a submission object for each student representing their work and grade. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -256,7 +254,7 @@ public EducationSubmissionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve a particular submission. Only teachers, students, and applications with application permissions can perform this operation. A submission object represents a student's work for an assignment. Resources associated with the submission represent this work. Only the assignedTo student can see and modify the submission. A teacher or application with application permissions has full access to all submissions. The grade and feedback from a teacher are part of the educationOutcome associated with this object. Only teachers or applications with application permissions can add or change grades and feedback. Students will not see the grade or feedback until the assignment has been released. + * Once published, there's a submission object for each student representing their work and grade. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/submissions/item/outcomes/OutcomesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/submissions/item/outcomes/OutcomesRequestBuilder.java index 3c4999965af..b473b5db7b6 100644 --- a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/submissions/item/outcomes/OutcomesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/submissions/item/outcomes/OutcomesRequestBuilder.java @@ -60,21 +60,19 @@ public OutcomesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/education/classes/{educationClass%2Did}/assignments/{educationAssignment%2Did}/submissions/{educationSubmission%2Did}/outcomes{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of educationOutcome objects. There are four types of outcomes: educationPointsOutcome, educationFeedbackOutcome, educationRubricOutcome, and educationFeedbackResourceOutcome. Only teachers, students, and applications with application permissions can perform this operation. A submission for a credit assignment (one that has no point value and no rubric) has an educationFeedbackOutcome. (It might also return an educationPointsOutcome, but that outcome is ignored.) A submission for a points assignment (one that has a point value assigned) has both an educationFeedbackOutcome and an educationPointsOutcome. A submission for an assignment with an attached rubric, if the rubric is a credit rubric (no points), has an educationFeedbackOutcome and an educationRubricOutcome. (It might also return an educationPointsOutcome, but that outcome is ignored.) A submission for an assignment with an attached rubric, if the rubric is a points rubric, has an educationFeedbackOutcome, an educationPointsOutcome, and an educationRubricOutcome. A submission for a feedback resource has an educationFeedbackResourceOutcome. All outcome types have a regular and a published property appropriate to that type of outcome; for example, points and publishedPoints, feedback and publishedFeedback. The regular property is the most recent value updated by the teacher; the published property is the most recent value returned to the student. + * Get outcomes from education * @return a {@link EducationOutcomeCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationOutcomeCollectionResponse get() { return get(null); } /** - * Retrieve a list of educationOutcome objects. There are four types of outcomes: educationPointsOutcome, educationFeedbackOutcome, educationRubricOutcome, and educationFeedbackResourceOutcome. Only teachers, students, and applications with application permissions can perform this operation. A submission for a credit assignment (one that has no point value and no rubric) has an educationFeedbackOutcome. (It might also return an educationPointsOutcome, but that outcome is ignored.) A submission for a points assignment (one that has a point value assigned) has both an educationFeedbackOutcome and an educationPointsOutcome. A submission for an assignment with an attached rubric, if the rubric is a credit rubric (no points), has an educationFeedbackOutcome and an educationRubricOutcome. (It might also return an educationPointsOutcome, but that outcome is ignored.) A submission for an assignment with an attached rubric, if the rubric is a points rubric, has an educationFeedbackOutcome, an educationPointsOutcome, and an educationRubricOutcome. A submission for a feedback resource has an educationFeedbackResourceOutcome. All outcome types have a regular and a published property appropriate to that type of outcome; for example, points and publishedPoints, feedback and publishedFeedback. The regular property is the most recent value updated by the teacher; the published property is the most recent value returned to the student. + * Get outcomes from education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationOutcomeCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationOutcomeCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public EducationOutcomeCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, EducationOutcomeCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new feedback resource for a submission. Only a teacher can perform this operation. To create a new file-based resource, upload the file to the feedback resources folder associated with the assignment. If the file doesn't exist or isn't in that folder, the POST request will fail. + * Create new navigation property to outcomes for education * @param body The request body * @return a {@link EducationOutcome} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationOutcome post(@jakarta.annotation.Nonnull final EducationOutcome body) { return post(body, null); } /** - * Create a new feedback resource for a submission. Only a teacher can perform this operation. To create a new file-based resource, upload the file to the feedback resources folder associated with the assignment. If the file doesn't exist or isn't in that folder, the POST request will fail. + * Create new navigation property to outcomes for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationOutcome} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationOutcome post(@jakarta.annotation.Nonnull final EducationOutcome body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public EducationOutcome post(@jakarta.annotation.Nonnull final EducationOutcome return this.requestAdapter.send(requestInfo, errorMapping, EducationOutcome::createFromDiscriminatorValue); } /** - * Retrieve a list of educationOutcome objects. There are four types of outcomes: educationPointsOutcome, educationFeedbackOutcome, educationRubricOutcome, and educationFeedbackResourceOutcome. Only teachers, students, and applications with application permissions can perform this operation. A submission for a credit assignment (one that has no point value and no rubric) has an educationFeedbackOutcome. (It might also return an educationPointsOutcome, but that outcome is ignored.) A submission for a points assignment (one that has a point value assigned) has both an educationFeedbackOutcome and an educationPointsOutcome. A submission for an assignment with an attached rubric, if the rubric is a credit rubric (no points), has an educationFeedbackOutcome and an educationRubricOutcome. (It might also return an educationPointsOutcome, but that outcome is ignored.) A submission for an assignment with an attached rubric, if the rubric is a points rubric, has an educationFeedbackOutcome, an educationPointsOutcome, and an educationRubricOutcome. A submission for a feedback resource has an educationFeedbackResourceOutcome. All outcome types have a regular and a published property appropriate to that type of outcome; for example, points and publishedPoints, feedback and publishedFeedback. The regular property is the most recent value updated by the teacher; the published property is the most recent value returned to the student. + * Get outcomes from education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of educationOutcome objects. There are four types of outcomes: educationPointsOutcome, educationFeedbackOutcome, educationRubricOutcome, and educationFeedbackResourceOutcome. Only teachers, students, and applications with application permissions can perform this operation. A submission for a credit assignment (one that has no point value and no rubric) has an educationFeedbackOutcome. (It might also return an educationPointsOutcome, but that outcome is ignored.) A submission for a points assignment (one that has a point value assigned) has both an educationFeedbackOutcome and an educationPointsOutcome. A submission for an assignment with an attached rubric, if the rubric is a credit rubric (no points), has an educationFeedbackOutcome and an educationRubricOutcome. (It might also return an educationPointsOutcome, but that outcome is ignored.) A submission for an assignment with an attached rubric, if the rubric is a points rubric, has an educationFeedbackOutcome, an educationPointsOutcome, and an educationRubricOutcome. A submission for a feedback resource has an educationFeedbackResourceOutcome. All outcome types have a regular and a published property appropriate to that type of outcome; for example, points and publishedPoints, feedback and publishedFeedback. The regular property is the most recent value updated by the teacher; the published property is the most recent value returned to the student. + * Get outcomes from education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new feedback resource for a submission. Only a teacher can perform this operation. To create a new file-based resource, upload the file to the feedback resources folder associated with the assignment. If the file doesn't exist or isn't in that folder, the POST request will fail. + * Create new navigation property to outcomes for education * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new feedback resource for a submission. Only a teacher can perform this operation. To create a new file-based resource, upload the file to the feedback resources folder associated with the assignment. If the file doesn't exist or isn't in that folder, the POST request will fail. + * Create new navigation property to outcomes for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public OutcomesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new OutcomesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of educationOutcome objects. There are four types of outcomes: educationPointsOutcome, educationFeedbackOutcome, educationRubricOutcome, and educationFeedbackResourceOutcome. Only teachers, students, and applications with application permissions can perform this operation. A submission for a credit assignment (one that has no point value and no rubric) has an educationFeedbackOutcome. (It might also return an educationPointsOutcome, but that outcome is ignored.) A submission for a points assignment (one that has a point value assigned) has both an educationFeedbackOutcome and an educationPointsOutcome. A submission for an assignment with an attached rubric, if the rubric is a credit rubric (no points), has an educationFeedbackOutcome and an educationRubricOutcome. (It might also return an educationPointsOutcome, but that outcome is ignored.) A submission for an assignment with an attached rubric, if the rubric is a points rubric, has an educationFeedbackOutcome, an educationPointsOutcome, and an educationRubricOutcome. A submission for a feedback resource has an educationFeedbackResourceOutcome. All outcome types have a regular and a published property appropriate to that type of outcome; for example, points and publishedPoints, feedback and publishedFeedback. The regular property is the most recent value updated by the teacher; the published property is the most recent value returned to the student. + * Get outcomes from education */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/submissions/item/outcomes/item/EducationOutcomeItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/submissions/item/outcomes/item/EducationOutcomeItemRequestBuilder.java index 9ff5b8680ba..87fdff5383f 100644 --- a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/submissions/item/outcomes/item/EducationOutcomeItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/submissions/item/outcomes/item/EducationOutcomeItemRequestBuilder.java @@ -37,18 +37,16 @@ public EducationOutcomeItemRequestBuilder(@jakarta.annotation.Nonnull final Stri super(requestAdapter, "{+baseurl}/education/classes/{educationClass%2Did}/assignments/{educationAssignment%2Did}/submissions/{educationSubmission%2Did}/outcomes/{educationOutcome%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a feedback resource from a submission. This can only be done by a teacher. + * Delete navigation property outcomes for education * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a feedback resource from a submission. This can only be done by a teacher. + * Delete navigation property outcomes for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -79,23 +77,21 @@ public EducationOutcome get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, EducationOutcome::createFromDiscriminatorValue); } /** - * Update the properties of an educationOutcome object. Only teachers can perform this operation. + * Update the navigation property outcomes in education * @param body The request body * @return a {@link EducationOutcome} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationOutcome patch(@jakarta.annotation.Nonnull final EducationOutcome body) { return patch(body, null); } /** - * Update the properties of an educationOutcome object. Only teachers can perform this operation. + * Update the navigation property outcomes in education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationOutcome} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationOutcome patch(@jakarta.annotation.Nonnull final EducationOutcome body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -106,7 +102,7 @@ public EducationOutcome patch(@jakarta.annotation.Nonnull final EducationOutcome return this.requestAdapter.send(requestInfo, errorMapping, EducationOutcome::createFromDiscriminatorValue); } /** - * Delete a feedback resource from a submission. This can only be done by a teacher. + * Delete navigation property outcomes for education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -114,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a feedback resource from a submission. This can only be done by a teacher. + * Delete navigation property outcomes for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an educationOutcome object. Only teachers can perform this operation. + * Update the navigation property outcomes in education * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an educationOutcome object. Only teachers can perform this operation. + * Update the navigation property outcomes in education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/submissions/item/resources/ResourcesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/submissions/item/resources/ResourcesRequestBuilder.java index 1ffc2f68bf7..74f76bacd7e 100644 --- a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/submissions/item/resources/ResourcesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/submissions/item/resources/ResourcesRequestBuilder.java @@ -60,21 +60,19 @@ public ResourcesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/education/classes/{educationClass%2Did}/assignments/{educationAssignment%2Did}/submissions/{educationSubmission%2Did}/resources{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List the resources associated with a submission. Only teachers, students, and applications with application permissions can perform this operation. The educationSubmissionResource object is a wrapper around the actual resource object the student is working on. The wrapper also includes a pointer to the resources on the assignment if this resource was copied from the assignment during the assign process. These resources are the working copy of the assignment. The submittedResources are the resources that were officially submitted for grading. + * Get resources from education * @return a {@link EducationSubmissionResourceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSubmissionResourceCollectionResponse get() { return get(null); } /** - * List the resources associated with a submission. Only teachers, students, and applications with application permissions can perform this operation. The educationSubmissionResource object is a wrapper around the actual resource object the student is working on. The wrapper also includes a pointer to the resources on the assignment if this resource was copied from the assignment during the assign process. These resources are the working copy of the assignment. The submittedResources are the resources that were officially submitted for grading. + * Get resources from education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationSubmissionResourceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSubmissionResourceCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public EducationSubmissionResourceCollectionResponse get(@jakarta.annotation.Nul return this.requestAdapter.send(requestInfo, errorMapping, EducationSubmissionResourceCollectionResponse::createFromDiscriminatorValue); } /** - * Add an educationSubmissionResource to a submission resource list. Only teachers and students can perform this operation. The operation will not succeed if the allowStudentsToAddResources flag is not set to true. To create a new file-based resource, upload the file to the resources folder associated with the submission. If the file doesn't exist or is not in that folder, the POST request will fail. + * Create new navigation property to resources for education * @param body The request body * @return a {@link EducationSubmissionResource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSubmissionResource post(@jakarta.annotation.Nonnull final EducationSubmissionResource body) { return post(body, null); } /** - * Add an educationSubmissionResource to a submission resource list. Only teachers and students can perform this operation. The operation will not succeed if the allowStudentsToAddResources flag is not set to true. To create a new file-based resource, upload the file to the resources folder associated with the submission. If the file doesn't exist or is not in that folder, the POST request will fail. + * Create new navigation property to resources for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationSubmissionResource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSubmissionResource post(@jakarta.annotation.Nonnull final EducationSubmissionResource body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public EducationSubmissionResource post(@jakarta.annotation.Nonnull final Educat return this.requestAdapter.send(requestInfo, errorMapping, EducationSubmissionResource::createFromDiscriminatorValue); } /** - * List the resources associated with a submission. Only teachers, students, and applications with application permissions can perform this operation. The educationSubmissionResource object is a wrapper around the actual resource object the student is working on. The wrapper also includes a pointer to the resources on the assignment if this resource was copied from the assignment during the assign process. These resources are the working copy of the assignment. The submittedResources are the resources that were officially submitted for grading. + * Get resources from education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List the resources associated with a submission. Only teachers, students, and applications with application permissions can perform this operation. The educationSubmissionResource object is a wrapper around the actual resource object the student is working on. The wrapper also includes a pointer to the resources on the assignment if this resource was copied from the assignment during the assign process. These resources are the working copy of the assignment. The submittedResources are the resources that were officially submitted for grading. + * Get resources from education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add an educationSubmissionResource to a submission resource list. Only teachers and students can perform this operation. The operation will not succeed if the allowStudentsToAddResources flag is not set to true. To create a new file-based resource, upload the file to the resources folder associated with the submission. If the file doesn't exist or is not in that folder, the POST request will fail. + * Create new navigation property to resources for education * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add an educationSubmissionResource to a submission resource list. Only teachers and students can perform this operation. The operation will not succeed if the allowStudentsToAddResources flag is not set to true. To create a new file-based resource, upload the file to the resources folder associated with the submission. If the file doesn't exist or is not in that folder, the POST request will fail. + * Create new navigation property to resources for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ResourcesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ResourcesRequestBuilder(rawUrl, requestAdapter); } /** - * List the resources associated with a submission. Only teachers, students, and applications with application permissions can perform this operation. The educationSubmissionResource object is a wrapper around the actual resource object the student is working on. The wrapper also includes a pointer to the resources on the assignment if this resource was copied from the assignment during the assign process. These resources are the working copy of the assignment. The submittedResources are the resources that were officially submitted for grading. + * Get resources from education */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/submissions/item/resources/item/EducationSubmissionResourceItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/submissions/item/resources/item/EducationSubmissionResourceItemRequestBuilder.java index 8faa63695ed..66b53b38af0 100644 --- a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/submissions/item/resources/item/EducationSubmissionResourceItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/submissions/item/resources/item/EducationSubmissionResourceItemRequestBuilder.java @@ -37,18 +37,16 @@ public EducationSubmissionResourceItemRequestBuilder(@jakarta.annotation.Nonnull super(requestAdapter, "{+baseurl}/education/classes/{educationClass%2Did}/assignments/{educationAssignment%2Did}/submissions/{educationSubmission%2Did}/resources/{educationSubmissionResource%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an educationSubmissionResource from the submission. Only teachers and students can perform this operation. If the resource was copied from the assignment, a new copy of the resource will be created after the current copy is deleted. This allows you to 'reset' the resource to its original state. If the resource wasn't copied from the assignment but was added from the student, the resource is deleted. + * Delete navigation property resources for education * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an educationSubmissionResource from the submission. Only teachers and students can perform this operation. If the resource was copied from the assignment, a new copy of the resource will be created after the current copy is deleted. This allows you to 'reset' the resource to its original state. If the resource wasn't copied from the assignment but was added from the student, the resource is deleted. + * Delete navigation property resources for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties of a specific resource associated with a submission. Only teachers, students, and applications with application permissions can perform this operation. This resource is in the 'working' resource list and should be considered work in process by a student. This resource is wrapped with a possible pointer back to the assignment resource if it was copied from the assignment. + * Get resources from education * @return a {@link EducationSubmissionResource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSubmissionResource get() { return get(null); } /** - * Retrieve the properties of a specific resource associated with a submission. Only teachers, students, and applications with application permissions can perform this operation. This resource is in the 'working' resource list and should be considered work in process by a student. This resource is wrapped with a possible pointer back to the assignment resource if it was copied from the assignment. + * Get resources from education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationSubmissionResource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSubmissionResource get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -106,7 +102,7 @@ public EducationSubmissionResource patch(@jakarta.annotation.Nonnull final Educa return this.requestAdapter.send(requestInfo, errorMapping, EducationSubmissionResource::createFromDiscriminatorValue); } /** - * Delete an educationSubmissionResource from the submission. Only teachers and students can perform this operation. If the resource was copied from the assignment, a new copy of the resource will be created after the current copy is deleted. This allows you to 'reset' the resource to its original state. If the resource wasn't copied from the assignment but was added from the student, the resource is deleted. + * Delete navigation property resources for education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -114,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an educationSubmissionResource from the submission. Only teachers and students can perform this operation. If the resource was copied from the assignment, a new copy of the resource will be created after the current copy is deleted. This allows you to 'reset' the resource to its original state. If the resource wasn't copied from the assignment but was added from the student, the resource is deleted. + * Delete navigation property resources for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties of a specific resource associated with a submission. Only teachers, students, and applications with application permissions can perform this operation. This resource is in the 'working' resource list and should be considered work in process by a student. This resource is wrapped with a possible pointer back to the assignment resource if it was copied from the assignment. + * Get resources from education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties of a specific resource associated with a submission. Only teachers, students, and applications with application permissions can perform this operation. This resource is in the 'working' resource list and should be considered work in process by a student. This resource is wrapped with a possible pointer back to the assignment resource if it was copied from the assignment. + * Get resources from education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public EducationSubmissionResourceItemRequestBuilder withUrl(@jakarta.annotation public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties of a specific resource associated with a submission. Only teachers, students, and applications with application permissions can perform this operation. This resource is in the 'working' resource list and should be considered work in process by a student. This resource is wrapped with a possible pointer back to the assignment resource if it was copied from the assignment. + * Get resources from education */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/submissions/item/submittedresources/SubmittedResourcesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/submissions/item/submittedresources/SubmittedResourcesRequestBuilder.java index 3e4b0ad8665..b057aa1de22 100644 --- a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/submissions/item/submittedresources/SubmittedResourcesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/submissions/item/submittedresources/SubmittedResourcesRequestBuilder.java @@ -60,21 +60,19 @@ public SubmittedResourcesRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/education/classes/{educationClass%2Did}/assignments/{educationAssignment%2Did}/submissions/{educationSubmission%2Did}/submittedResources{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List the educationSubmissionResource objects that were officially submitted for grading. Only teachers, students, and applications with application permissions can perform this operation. The student who owns the submission can't change the submitted list without resubmitting the assignment. This resource is a wrapper around the real resource and can contain a pointer back to the actual assignment resource if this resource was copied from the assignment. + * Get submittedResources from education * @return a {@link EducationSubmissionResourceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSubmissionResourceCollectionResponse get() { return get(null); } /** - * List the educationSubmissionResource objects that were officially submitted for grading. Only teachers, students, and applications with application permissions can perform this operation. The student who owns the submission can't change the submitted list without resubmitting the assignment. This resource is a wrapper around the real resource and can contain a pointer back to the actual assignment resource if this resource was copied from the assignment. + * Get submittedResources from education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationSubmissionResourceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSubmissionResourceCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public EducationSubmissionResource post(@jakarta.annotation.Nonnull final Educat return this.requestAdapter.send(requestInfo, errorMapping, EducationSubmissionResource::createFromDiscriminatorValue); } /** - * List the educationSubmissionResource objects that were officially submitted for grading. Only teachers, students, and applications with application permissions can perform this operation. The student who owns the submission can't change the submitted list without resubmitting the assignment. This resource is a wrapper around the real resource and can contain a pointer back to the actual assignment resource if this resource was copied from the assignment. + * Get submittedResources from education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List the educationSubmissionResource objects that were officially submitted for grading. Only teachers, students, and applications with application permissions can perform this operation. The student who owns the submission can't change the submitted list without resubmitting the assignment. This resource is a wrapper around the real resource and can contain a pointer back to the actual assignment resource if this resource was copied from the assignment. + * Get submittedResources from education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public SubmittedResourcesRequestBuilder withUrl(@jakarta.annotation.Nonnull fina return new SubmittedResourcesRequestBuilder(rawUrl, requestAdapter); } /** - * List the educationSubmissionResource objects that were officially submitted for grading. Only teachers, students, and applications with application permissions can perform this operation. The student who owns the submission can't change the submitted list without resubmitting the assignment. This resource is a wrapper around the real resource and can contain a pointer back to the actual assignment resource if this resource was copied from the assignment. + * Get submittedResources from education */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/submissions/item/submittedresources/item/EducationSubmissionResourceItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/submissions/item/submittedresources/item/EducationSubmissionResourceItemRequestBuilder.java index 5046228185b..130afbc929a 100644 --- a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/submissions/item/submittedresources/item/EducationSubmissionResourceItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignments/item/submissions/item/submittedresources/item/EducationSubmissionResourceItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a submitted resource. Only teachers, students, and applications with application permissions can perform this operation. Resources are available to a teacher or an application with application permissions after a student submits it, and are available to the student after the teacher returns the submission. Teachers can leave notes in some resources. + * Get submittedResources from education * @return a {@link EducationSubmissionResource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSubmissionResource get() { return get(null); } /** - * Retrieve a submitted resource. Only teachers, students, and applications with application permissions can perform this operation. Resources are available to a teacher or an application with application permissions after a student submits it, and are available to the student after the teacher returns the submission. Teachers can leave notes in some resources. + * Get submittedResources from education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationSubmissionResource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSubmissionResource get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a submitted resource. Only teachers, students, and applications with application permissions can perform this operation. Resources are available to a teacher or an application with application permissions after a student submits it, and are available to the student after the teacher returns the submission. Teachers can leave notes in some resources. + * Get submittedResources from education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a submitted resource. Only teachers, students, and applications with application permissions can perform this operation. Resources are available to a teacher or an application with application permissions after a student submits it, and are available to the student after the teacher returns the submission. Teachers can leave notes in some resources. + * Get submittedResources from education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public EducationSubmissionResourceItemRequestBuilder withUrl(@jakarta.annotation public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve a submitted resource. Only teachers, students, and applications with application permissions can perform this operation. Resources are available to a teacher or an application with application permissions after a student submits it, and are available to the student after the teacher returns the submission. Teachers can leave notes in some resources. + * Get submittedResources from education */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignmentsettings/AssignmentSettingsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignmentsettings/AssignmentSettingsRequestBuilder.java index fa44b90b5aa..2247e73cfa4 100644 --- a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignmentsettings/AssignmentSettingsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignmentsettings/AssignmentSettingsRequestBuilder.java @@ -86,23 +86,21 @@ public EducationAssignmentSettings get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, EducationAssignmentSettings::createFromDiscriminatorValue); } /** - * Update the properties of an educationAssignmentSettings object. Only teachers can update these settings. + * Update the navigation property assignmentSettings in education * @param body The request body * @return a {@link EducationAssignmentSettings} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationAssignmentSettings patch(@jakarta.annotation.Nonnull final EducationAssignmentSettings body) { return patch(body, null); } /** - * Update the properties of an educationAssignmentSettings object. Only teachers can update these settings. + * Update the navigation property assignmentSettings in education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationAssignmentSettings} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationAssignmentSettings patch(@jakarta.annotation.Nonnull final EducationAssignmentSettings body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -153,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an educationAssignmentSettings object. Only teachers can update these settings. + * Update the navigation property assignmentSettings in education * @param body The request body * @return a {@link RequestInformation} */ @@ -162,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an educationAssignmentSettings object. Only teachers can update these settings. + * Update the navigation property assignmentSettings in education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignmentsettings/gradingcategories/item/EducationGradingCategoryItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignmentsettings/gradingcategories/item/EducationGradingCategoryItemRequestBuilder.java index 45a1c52a24a..556ba20e132 100644 --- a/src/main/java/com/microsoft/graph/generated/education/classes/item/assignmentsettings/gradingcategories/item/EducationGradingCategoryItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/classes/item/assignmentsettings/gradingcategories/item/EducationGradingCategoryItemRequestBuilder.java @@ -77,23 +77,21 @@ public EducationGradingCategory get(@jakarta.annotation.Nullable final java.util return this.requestAdapter.send(requestInfo, errorMapping, EducationGradingCategory::createFromDiscriminatorValue); } /** - * Update a single gradingCategory on the educationAssignmentSettings. Only teachers can perform this operation. + * Update the navigation property gradingCategories in education * @param body The request body * @return a {@link EducationGradingCategory} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationGradingCategory patch(@jakarta.annotation.Nonnull final EducationGradingCategory body) { return patch(body, null); } /** - * Update a single gradingCategory on the educationAssignmentSettings. Only teachers can perform this operation. + * Update the navigation property gradingCategories in education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationGradingCategory} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationGradingCategory patch(@jakarta.annotation.Nonnull final EducationGradingCategory body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -144,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update a single gradingCategory on the educationAssignmentSettings. Only teachers can perform this operation. + * Update the navigation property gradingCategories in education * @param body The request body * @return a {@link RequestInformation} */ @@ -153,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update a single gradingCategory on the educationAssignmentSettings. Only teachers can perform this operation. + * Update the navigation property gradingCategories in education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/education/classes/item/members/MembersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/classes/item/members/MembersRequestBuilder.java index ad7065f70f8..5f01f39b1ef 100644 --- a/src/main/java/com/microsoft/graph/generated/education/classes/item/members/MembersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/classes/item/members/MembersRequestBuilder.java @@ -68,21 +68,19 @@ public MembersRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/education/classes/{educationClass%2Did}/members{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieves the educationUser members of an educationClass. + * All users in the class. Nullable. * @return a {@link EducationUserCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationUserCollectionResponse get() { return get(null); } /** - * Retrieves the educationUser members of an educationClass. + * All users in the class. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationUserCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationUserCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -92,7 +90,7 @@ public EducationUserCollectionResponse get(@jakarta.annotation.Nullable final ja return this.requestAdapter.send(requestInfo, errorMapping, EducationUserCollectionResponse::createFromDiscriminatorValue); } /** - * Retrieves the educationUser members of an educationClass. + * All users in the class. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -100,7 +98,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieves the educationUser members of an educationClass. + * All users in the class. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -122,7 +120,7 @@ public MembersRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new MembersRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieves the educationUser members of an educationClass. + * All users in the class. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/classes/item/members/item/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/classes/item/members/item/ref/RefRequestBuilder.java index b47296d1b99..7633f4ac5b0 100644 --- a/src/main/java/com/microsoft/graph/generated/education/classes/item/members/item/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/classes/item/members/item/ref/RefRequestBuilder.java @@ -35,18 +35,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/education/classes/{educationClass%2Did}/members/{educationUser%2Did}/$ref", rawUrl); } /** - * Remove an educationUser from an educationClass. + * Delete ref of navigation property members for education * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove an educationUser from an educationClass. + * Delete ref of navigation property members for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -55,7 +53,7 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove an educationUser from an educationClass. + * Delete ref of navigation property members for education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -63,7 +61,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove an educationUser from an educationClass. + * Delete ref of navigation property members for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/education/classes/item/members/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/classes/item/members/ref/RefRequestBuilder.java index 7a053fcd3c9..efc5068632e 100644 --- a/src/main/java/com/microsoft/graph/generated/education/classes/item/members/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/classes/item/members/ref/RefRequestBuilder.java @@ -38,18 +38,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/education/classes/{educationClass%2Did}/members/$ref?@id={%40id}{&%24count,%24filter,%24orderby,%24search,%24skip,%24top}", rawUrl); } /** - * Remove an educationUser from an educationClass. + * Delete ref of navigation property members for education * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove an educationUser from an educationClass. + * Delete ref of navigation property members for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -58,21 +56,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieves the educationUser members of an educationClass. + * All users in the class. Nullable. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get() { return get(null); } /** - * Retrieves the educationUser members of an educationClass. + * All users in the class. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -82,20 +78,18 @@ public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util return this.requestAdapter.send(requestInfo, errorMapping, StringCollectionResponse::createFromDiscriminatorValue); } /** - * Add an educationUser member to an educationClass. + * Create new navigation property ref to members for education * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body) { post(body, null); } /** - * Add an educationUser member to an educationClass. + * Create new navigation property ref to members for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { Objects.requireNonNull(body); @@ -105,7 +99,7 @@ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakart this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove an educationUser from an educationClass. + * Delete ref of navigation property members for education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -113,7 +107,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove an educationUser from an educationClass. + * Delete ref of navigation property members for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieves the educationUser members of an educationClass. + * All users in the class. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -133,7 +127,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieves the educationUser members of an educationClass. + * All users in the class. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add an educationUser member to an educationClass. + * Create new navigation property ref to members for education * @param body The request body * @return a {@link RequestInformation} */ @@ -154,7 +148,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add an educationUser member to an educationClass. + * Create new navigation property ref to members for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -179,7 +173,7 @@ public RefRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl return new RefRequestBuilder(rawUrl, requestAdapter); } /** - * Remove an educationUser from an educationClass. + * Delete ref of navigation property members for education */ @jakarta.annotation.Generated("com.microsoft.kiota") public class DeleteQueryParameters implements QueryParameters { @@ -211,7 +205,7 @@ public class DeleteRequestConfiguration extends BaseRequestConfiguration { public DeleteQueryParameters queryParameters = new DeleteQueryParameters(); } /** - * Retrieves the educationUser members of an educationClass. + * All users in the class. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/classes/item/modules/ModulesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/classes/item/modules/ModulesRequestBuilder.java index f4657bd297a..474b83114bc 100644 --- a/src/main/java/com/microsoft/graph/generated/education/classes/item/modules/ModulesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/classes/item/modules/ModulesRequestBuilder.java @@ -60,21 +60,19 @@ public ModulesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/education/classes/{educationClass%2Did}/modules{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of module objects. Only teachers, students, and applications with application permissions can perform this operation. A teacher or an application with application permissions can see all module objects for the class. Students can only see published modules. + * All modules in the class. Nullable. * @return a {@link EducationModuleCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationModuleCollectionResponse get() { return get(null); } /** - * Retrieve a list of module objects. Only teachers, students, and applications with application permissions can perform this operation. A teacher or an application with application permissions can see all module objects for the class. Students can only see published modules. + * All modules in the class. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationModuleCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationModuleCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public EducationModuleCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, EducationModuleCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new module in a class. Only teachers in a class can create a module. Modules start in the draft state, which means that students can't see the modules until publication. + * Create new navigation property to modules for education * @param body The request body * @return a {@link EducationModule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationModule post(@jakarta.annotation.Nonnull final EducationModule body) { return post(body, null); } /** - * Create a new module in a class. Only teachers in a class can create a module. Modules start in the draft state, which means that students can't see the modules until publication. + * Create new navigation property to modules for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationModule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationModule post(@jakarta.annotation.Nonnull final EducationModule body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public EducationModule post(@jakarta.annotation.Nonnull final EducationModule bo return this.requestAdapter.send(requestInfo, errorMapping, EducationModule::createFromDiscriminatorValue); } /** - * Retrieve a list of module objects. Only teachers, students, and applications with application permissions can perform this operation. A teacher or an application with application permissions can see all module objects for the class. Students can only see published modules. + * All modules in the class. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of module objects. Only teachers, students, and applications with application permissions can perform this operation. A teacher or an application with application permissions can see all module objects for the class. Students can only see published modules. + * All modules in the class. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new module in a class. Only teachers in a class can create a module. Modules start in the draft state, which means that students can't see the modules until publication. + * Create new navigation property to modules for education * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new module in a class. Only teachers in a class can create a module. Modules start in the draft state, which means that students can't see the modules until publication. + * Create new navigation property to modules for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ModulesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new ModulesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of module objects. Only teachers, students, and applications with application permissions can perform this operation. A teacher or an application with application permissions can see all module objects for the class. Students can only see published modules. + * All modules in the class. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/classes/item/modules/item/EducationModuleItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/classes/item/modules/item/EducationModuleItemRequestBuilder.java index 609c0ed7aa4..8ebcb77315f 100644 --- a/src/main/java/com/microsoft/graph/generated/education/classes/item/modules/item/EducationModuleItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/classes/item/modules/item/EducationModuleItemRequestBuilder.java @@ -82,18 +82,16 @@ public EducationModuleItemRequestBuilder(@jakarta.annotation.Nonnull final Strin super(requestAdapter, "{+baseurl}/education/classes/{educationClass%2Did}/modules/{educationModule%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an existing module in a class. Only teachers within a class can delete modules. + * Delete navigation property modules for education * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an existing module in a class. Only teachers within a class can delete modules. + * Delete navigation property modules for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -102,21 +100,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the properties and relationships of a module. Only teachers, students, and applications with application permissions can perform this operation. Students can only see published modules; teachers and applications with application permissions can see all modules in a class. + * All modules in the class. Nullable. * @return a {@link EducationModule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationModule get() { return get(null); } /** - * Get the properties and relationships of a module. Only teachers, students, and applications with application permissions can perform this operation. Students can only see published modules; teachers and applications with application permissions can see all modules in a class. + * All modules in the class. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationModule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationModule get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,23 +122,21 @@ public EducationModule get(@jakarta.annotation.Nullable final java.util.function return this.requestAdapter.send(requestInfo, errorMapping, EducationModule::createFromDiscriminatorValue); } /** - * Update an educationModule object in a class. Only teachers in the class can perform this operation. You can't use a PATCH request to change the status of a module. Use the publish action to change the module status. + * Update the navigation property modules in education * @param body The request body * @return a {@link EducationModule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationModule patch(@jakarta.annotation.Nonnull final EducationModule body) { return patch(body, null); } /** - * Update an educationModule object in a class. Only teachers in the class can perform this operation. You can't use a PATCH request to change the status of a module. Use the publish action to change the module status. + * Update the navigation property modules in education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationModule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationModule patch(@jakarta.annotation.Nonnull final EducationModule body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -153,7 +147,7 @@ public EducationModule patch(@jakarta.annotation.Nonnull final EducationModule b return this.requestAdapter.send(requestInfo, errorMapping, EducationModule::createFromDiscriminatorValue); } /** - * Delete an existing module in a class. Only teachers within a class can delete modules. + * Delete navigation property modules for education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -161,7 +155,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an existing module in a class. Only teachers within a class can delete modules. + * Delete navigation property modules for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -173,7 +167,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the properties and relationships of a module. Only teachers, students, and applications with application permissions can perform this operation. Students can only see published modules; teachers and applications with application permissions can see all modules in a class. + * All modules in the class. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -181,7 +175,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the properties and relationships of a module. Only teachers, students, and applications with application permissions can perform this operation. Students can only see published modules; teachers and applications with application permissions can see all modules in a class. + * All modules in the class. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +187,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update an educationModule object in a class. Only teachers in the class can perform this operation. You can't use a PATCH request to change the status of a module. Use the publish action to change the module status. + * Update the navigation property modules in education * @param body The request body * @return a {@link RequestInformation} */ @@ -202,7 +196,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update an educationModule object in a class. Only teachers in the class can perform this operation. You can't use a PATCH request to change the status of a module. Use the publish action to change the module status. + * Update the navigation property modules in education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -233,7 +227,7 @@ public EducationModuleItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fin public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the properties and relationships of a module. Only teachers, students, and applications with application permissions can perform this operation. Students can only see published modules; teachers and applications with application permissions can see all modules in a class. + * All modules in the class. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/classes/item/modules/item/resources/ResourcesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/classes/item/modules/item/resources/ResourcesRequestBuilder.java index b7a4c576f06..a1ba0a15714 100644 --- a/src/main/java/com/microsoft/graph/generated/education/classes/item/modules/item/resources/ResourcesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/classes/item/modules/item/resources/ResourcesRequestBuilder.java @@ -60,21 +60,19 @@ public ResourcesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/education/classes/{educationClass%2Did}/modules/{educationModule%2Did}/resources{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get all the educationModuleResource objects associated with a module. Only teachers, students, and applications with application permissions can perform this operation. + * Learning objects that are associated with this module. Only teachers can modify this list. Nullable. * @return a {@link EducationModuleResourceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationModuleResourceCollectionResponse get() { return get(null); } /** - * Get all the educationModuleResource objects associated with a module. Only teachers, students, and applications with application permissions can perform this operation. + * Learning objects that are associated with this module. Only teachers can modify this list. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationModuleResourceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationModuleResourceCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public EducationModuleResourceCollectionResponse get(@jakarta.annotation.Nullabl return this.requestAdapter.send(requestInfo, errorMapping, EducationModuleResourceCollectionResponse::createFromDiscriminatorValue); } /** - * Create a resource in a module. Only teachers can perform this operation. You can create the following types of module resources: Every resource has an @odata.type property to indicate which type of resource is being created. + * Create new navigation property to resources for education * @param body The request body * @return a {@link EducationModuleResource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationModuleResource post(@jakarta.annotation.Nonnull final EducationModuleResource body) { return post(body, null); } /** - * Create a resource in a module. Only teachers can perform this operation. You can create the following types of module resources: Every resource has an @odata.type property to indicate which type of resource is being created. + * Create new navigation property to resources for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationModuleResource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationModuleResource post(@jakarta.annotation.Nonnull final EducationModuleResource body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public EducationModuleResource post(@jakarta.annotation.Nonnull final EducationM return this.requestAdapter.send(requestInfo, errorMapping, EducationModuleResource::createFromDiscriminatorValue); } /** - * Get all the educationModuleResource objects associated with a module. Only teachers, students, and applications with application permissions can perform this operation. + * Learning objects that are associated with this module. Only teachers can modify this list. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get all the educationModuleResource objects associated with a module. Only teachers, students, and applications with application permissions can perform this operation. + * Learning objects that are associated with this module. Only teachers can modify this list. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a resource in a module. Only teachers can perform this operation. You can create the following types of module resources: Every resource has an @odata.type property to indicate which type of resource is being created. + * Create new navigation property to resources for education * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a resource in a module. Only teachers can perform this operation. You can create the following types of module resources: Every resource has an @odata.type property to indicate which type of resource is being created. + * Create new navigation property to resources for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ResourcesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ResourcesRequestBuilder(rawUrl, requestAdapter); } /** - * Get all the educationModuleResource objects associated with a module. Only teachers, students, and applications with application permissions can perform this operation. + * Learning objects that are associated with this module. Only teachers can modify this list. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/classes/item/modules/item/resources/item/EducationModuleResourceItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/classes/item/modules/item/resources/item/EducationModuleResourceItemRequestBuilder.java index b3446edc508..7047a6f8b0c 100644 --- a/src/main/java/com/microsoft/graph/generated/education/classes/item/modules/item/resources/item/EducationModuleResourceItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/classes/item/modules/item/resources/item/EducationModuleResourceItemRequestBuilder.java @@ -37,18 +37,16 @@ public EducationModuleResourceItemRequestBuilder(@jakarta.annotation.Nonnull fin super(requestAdapter, "{+baseurl}/education/classes/{educationClass%2Did}/modules/{educationModule%2Did}/resources/{educationModuleResource%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a specific educationModuleResource attached to a module. Only teachers in the class can remove a resource. + * Delete navigation property resources for education * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a specific educationModuleResource attached to a module. Only teachers in the class can remove a resource. + * Delete navigation property resources for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the properties of a resource associated with a module. Only teachers, students, and applications with application permissions can perform this operation. + * Learning objects that are associated with this module. Only teachers can modify this list. Nullable. * @return a {@link EducationModuleResource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationModuleResource get() { return get(null); } /** - * Get the properties of a resource associated with a module. Only teachers, students, and applications with application permissions can perform this operation. + * Learning objects that are associated with this module. Only teachers can modify this list. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationModuleResource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationModuleResource get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public EducationModuleResource get(@jakarta.annotation.Nullable final java.util. return this.requestAdapter.send(requestInfo, errorMapping, EducationModuleResource::createFromDiscriminatorValue); } /** - * Update a resource in a module. Only teachers can perform this operation. The only one property that can be updated is displayName, for all resource types. + * Update the navigation property resources in education * @param body The request body * @return a {@link EducationModuleResource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationModuleResource patch(@jakarta.annotation.Nonnull final EducationModuleResource body) { return patch(body, null); } /** - * Update a resource in a module. Only teachers can perform this operation. The only one property that can be updated is displayName, for all resource types. + * Update the navigation property resources in education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationModuleResource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationModuleResource patch(@jakarta.annotation.Nonnull final EducationModuleResource body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public EducationModuleResource patch(@jakarta.annotation.Nonnull final Education return this.requestAdapter.send(requestInfo, errorMapping, EducationModuleResource::createFromDiscriminatorValue); } /** - * Delete a specific educationModuleResource attached to a module. Only teachers in the class can remove a resource. + * Delete navigation property resources for education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a specific educationModuleResource attached to a module. Only teachers in the class can remove a resource. + * Delete navigation property resources for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the properties of a resource associated with a module. Only teachers, students, and applications with application permissions can perform this operation. + * Learning objects that are associated with this module. Only teachers can modify this list. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the properties of a resource associated with a module. Only teachers, students, and applications with application permissions can perform this operation. + * Learning objects that are associated with this module. Only teachers can modify this list. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update a resource in a module. Only teachers can perform this operation. The only one property that can be updated is displayName, for all resource types. + * Update the navigation property resources in education * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update a resource in a module. Only teachers can perform this operation. The only one property that can be updated is displayName, for all resource types. + * Update the navigation property resources in education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public EducationModuleResourceItemRequestBuilder withUrl(@jakarta.annotation.Non public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the properties of a resource associated with a module. Only teachers, students, and applications with application permissions can perform this operation. + * Learning objects that are associated with this module. Only teachers can modify this list. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/classes/item/schools/SchoolsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/classes/item/schools/SchoolsRequestBuilder.java index 3fe1f345c80..9edc2966129 100644 --- a/src/main/java/com/microsoft/graph/generated/education/classes/item/schools/SchoolsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/classes/item/schools/SchoolsRequestBuilder.java @@ -59,21 +59,19 @@ public SchoolsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/education/classes/{educationClass%2Did}/schools{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of schools in which the class is taught. + * All schools that this class is associated with. Nullable. * @return a {@link EducationSchoolCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSchoolCollectionResponse get() { return get(null); } /** - * Retrieve a list of schools in which the class is taught. + * All schools that this class is associated with. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationSchoolCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSchoolCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public EducationSchoolCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, EducationSchoolCollectionResponse::createFromDiscriminatorValue); } /** - * Retrieve a list of schools in which the class is taught. + * All schools that this class is associated with. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of schools in which the class is taught. + * All schools that this class is associated with. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public SchoolsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new SchoolsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of schools in which the class is taught. + * All schools that this class is associated with. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/classes/item/teachers/TeachersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/classes/item/teachers/TeachersRequestBuilder.java index 3fc93cf4077..b74547675bb 100644 --- a/src/main/java/com/microsoft/graph/generated/education/classes/item/teachers/TeachersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/classes/item/teachers/TeachersRequestBuilder.java @@ -68,21 +68,19 @@ public TeachersRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/education/classes/{educationClass%2Did}/teachers{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of teachers for a class. Delegated tokens must be members of the class to get the teacher list. + * All teachers in the class. Nullable. * @return a {@link EducationUserCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationUserCollectionResponse get() { return get(null); } /** - * Retrieve a list of teachers for a class. Delegated tokens must be members of the class to get the teacher list. + * All teachers in the class. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationUserCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationUserCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -92,7 +90,7 @@ public EducationUserCollectionResponse get(@jakarta.annotation.Nullable final ja return this.requestAdapter.send(requestInfo, errorMapping, EducationUserCollectionResponse::createFromDiscriminatorValue); } /** - * Retrieve a list of teachers for a class. Delegated tokens must be members of the class to get the teacher list. + * All teachers in the class. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -100,7 +98,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of teachers for a class. Delegated tokens must be members of the class to get the teacher list. + * All teachers in the class. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -122,7 +120,7 @@ public TeachersRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new TeachersRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of teachers for a class. Delegated tokens must be members of the class to get the teacher list. + * All teachers in the class. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/classes/item/teachers/item/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/classes/item/teachers/item/ref/RefRequestBuilder.java index d70bdeed5f3..3a28e5157f9 100644 --- a/src/main/java/com/microsoft/graph/generated/education/classes/item/teachers/item/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/classes/item/teachers/item/ref/RefRequestBuilder.java @@ -35,18 +35,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/education/classes/{educationClass%2Did}/teachers/{educationUser%2Did}/$ref", rawUrl); } /** - * Remove a teacher from an educationClass. + * Delete ref of navigation property teachers for education * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove a teacher from an educationClass. + * Delete ref of navigation property teachers for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -55,7 +53,7 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove a teacher from an educationClass. + * Delete ref of navigation property teachers for education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -63,7 +61,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove a teacher from an educationClass. + * Delete ref of navigation property teachers for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/education/classes/item/teachers/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/classes/item/teachers/ref/RefRequestBuilder.java index 1fb526ff8de..8cfcefe2c08 100644 --- a/src/main/java/com/microsoft/graph/generated/education/classes/item/teachers/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/classes/item/teachers/ref/RefRequestBuilder.java @@ -38,18 +38,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/education/classes/{educationClass%2Did}/teachers/$ref?@id={%40id}{&%24count,%24filter,%24orderby,%24search,%24skip,%24top}", rawUrl); } /** - * Remove a teacher from an educationClass. + * Delete ref of navigation property teachers for education * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove a teacher from an educationClass. + * Delete ref of navigation property teachers for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -58,21 +56,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a list of teachers for a class. Delegated tokens must be members of the class to get the teacher list. + * All teachers in the class. Nullable. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get() { return get(null); } /** - * Retrieve a list of teachers for a class. Delegated tokens must be members of the class to get the teacher list. + * All teachers in the class. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -82,20 +78,18 @@ public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util return this.requestAdapter.send(requestInfo, errorMapping, StringCollectionResponse::createFromDiscriminatorValue); } /** - * Add a teacher to a class. + * Create new navigation property ref to teachers for education * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body) { post(body, null); } /** - * Add a teacher to a class. + * Create new navigation property ref to teachers for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { Objects.requireNonNull(body); @@ -105,7 +99,7 @@ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakart this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove a teacher from an educationClass. + * Delete ref of navigation property teachers for education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -113,7 +107,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove a teacher from an educationClass. + * Delete ref of navigation property teachers for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a list of teachers for a class. Delegated tokens must be members of the class to get the teacher list. + * All teachers in the class. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -133,7 +127,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of teachers for a class. Delegated tokens must be members of the class to get the teacher list. + * All teachers in the class. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add a teacher to a class. + * Create new navigation property ref to teachers for education * @param body The request body * @return a {@link RequestInformation} */ @@ -154,7 +148,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add a teacher to a class. + * Create new navigation property ref to teachers for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -179,7 +173,7 @@ public RefRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl return new RefRequestBuilder(rawUrl, requestAdapter); } /** - * Remove a teacher from an educationClass. + * Delete ref of navigation property teachers for education */ @jakarta.annotation.Generated("com.microsoft.kiota") public class DeleteQueryParameters implements QueryParameters { @@ -211,7 +205,7 @@ public class DeleteRequestConfiguration extends BaseRequestConfiguration { public DeleteQueryParameters queryParameters = new DeleteQueryParameters(); } /** - * Retrieve a list of teachers for a class. Delegated tokens must be members of the class to get the teacher list. + * All teachers in the class. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/me/assignments/AssignmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/me/assignments/AssignmentsRequestBuilder.java index 6a86f3ae184..8e45606e3c0 100644 --- a/src/main/java/com/microsoft/graph/generated/education/me/assignments/AssignmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/me/assignments/AssignmentsRequestBuilder.java @@ -69,21 +69,19 @@ public AssignmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/education/me/assignments{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Returns a list of educationAssignment assigned to a educationUser for all classes. Only teachers, students, and applications with application permissions can perform this operation. This method allows a caller to find all the assignments belonging to a student or a teacher in a single call rather than having to request assignments from each class. The assignment list contains what is needed to get the detailed information for the assignment from within the class namespace. Use the methods defined for the assignment for all other operations. + * Assignments belonging to the user. * @return a {@link EducationAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationAssignmentCollectionResponse get() { return get(null); } /** - * Returns a list of educationAssignment assigned to a educationUser for all classes. Only teachers, students, and applications with application permissions can perform this operation. This method allows a caller to find all the assignments belonging to a student or a teacher in a single call rather than having to request assignments from each class. The assignment list contains what is needed to get the detailed information for the assignment from within the class namespace. Use the methods defined for the assignment for all other operations. + * Assignments belonging to the user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationAssignmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -118,7 +116,7 @@ public EducationAssignment post(@jakarta.annotation.Nonnull final EducationAssig return this.requestAdapter.send(requestInfo, errorMapping, EducationAssignment::createFromDiscriminatorValue); } /** - * Returns a list of educationAssignment assigned to a educationUser for all classes. Only teachers, students, and applications with application permissions can perform this operation. This method allows a caller to find all the assignments belonging to a student or a teacher in a single call rather than having to request assignments from each class. The assignment list contains what is needed to get the detailed information for the assignment from within the class namespace. Use the methods defined for the assignment for all other operations. + * Assignments belonging to the user. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -126,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Returns a list of educationAssignment assigned to a educationUser for all classes. Only teachers, students, and applications with application permissions can perform this operation. This method allows a caller to find all the assignments belonging to a student or a teacher in a single call rather than having to request assignments from each class. The assignment list contains what is needed to get the detailed information for the assignment from within the class namespace. Use the methods defined for the assignment for all other operations. + * Assignments belonging to the user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -172,7 +170,7 @@ public AssignmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AssignmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Returns a list of educationAssignment assigned to a educationUser for all classes. Only teachers, students, and applications with application permissions can perform this operation. This method allows a caller to find all the assignments belonging to a student or a teacher in a single call rather than having to request assignments from each class. The assignment list contains what is needed to get the detailed information for the assignment from within the class namespace. Use the methods defined for the assignment for all other operations. + * Assignments belonging to the user. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/me/assignments/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/me/assignments/delta/DeltaRequestBuilder.java index f5d02a9fb5f..9c8572069ba 100644 --- a/src/main/java/com/microsoft/graph/generated/education/me/assignments/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/me/assignments/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/education/me/assignments/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Get a list of newly-created or updated assignments without reading the whole collection. A teacher or an application running with application permissions can see all assignment objects for the class. Students can only see assignments that are assigned to them. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Get a list of newly-created or updated assignments without reading the whole collection. A teacher or an application running with application permissions can see all assignment objects for the class. Students can only see assignments that are assigned to them. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Get a list of newly-created or updated assignments without reading the whole collection. A teacher or an application running with application permissions can see all assignment objects for the class. Students can only see assignments that are assigned to them. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Get a list of newly-created or updated assignments without reading the whole collection. A teacher or an application running with application permissions can see all assignment objects for the class. Students can only see assignments that are assigned to them. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Get a list of newly-created or updated assignments without reading the whole collection. A teacher or an application running with application permissions can see all assignment objects for the class. Students can only see assignments that are assigned to them. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/categories/CategoriesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/categories/CategoriesRequestBuilder.java index ecfe433a2dc..128b9c0a626 100644 --- a/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/categories/CategoriesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/categories/CategoriesRequestBuilder.java @@ -78,21 +78,19 @@ public CategoriesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/education/me/assignments/{educationAssignment%2Did}/categories{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List all the categories associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * When set, enables users to easily find assignments of a given type. Read-only. Nullable. * @return a {@link EducationCategoryCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationCategoryCollectionResponse get() { return get(null); } /** - * List all the categories associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * When set, enables users to easily find assignments of a given type. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationCategoryCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationCategoryCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -102,23 +100,21 @@ public EducationCategoryCollectionResponse get(@jakarta.annotation.Nullable fina return this.requestAdapter.send(requestInfo, errorMapping, EducationCategoryCollectionResponse::createFromDiscriminatorValue); } /** - * Add one or more existing educationCategory objects to the specified educationAssignment. Only teachers can perform this operation. + * Create new navigation property to categories for education * @param body The request body * @return a {@link EducationCategory} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationCategory post(@jakarta.annotation.Nonnull final EducationCategory body) { return post(body, null); } /** - * Add one or more existing educationCategory objects to the specified educationAssignment. Only teachers can perform this operation. + * Create new navigation property to categories for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationCategory} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationCategory post(@jakarta.annotation.Nonnull final EducationCategory body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -129,7 +125,7 @@ public EducationCategory post(@jakarta.annotation.Nonnull final EducationCategor return this.requestAdapter.send(requestInfo, errorMapping, EducationCategory::createFromDiscriminatorValue); } /** - * List all the categories associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * When set, enables users to easily find assignments of a given type. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -137,7 +133,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List all the categories associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * When set, enables users to easily find assignments of a given type. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add one or more existing educationCategory objects to the specified educationAssignment. Only teachers can perform this operation. + * Create new navigation property to categories for education * @param body The request body * @return a {@link RequestInformation} */ @@ -158,7 +154,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add one or more existing educationCategory objects to the specified educationAssignment. Only teachers can perform this operation. + * Create new navigation property to categories for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -183,7 +179,7 @@ public CategoriesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new CategoriesRequestBuilder(rawUrl, requestAdapter); } /** - * List all the categories associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * When set, enables users to easily find assignments of a given type. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/categories/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/categories/delta/DeltaRequestBuilder.java index 2d60e159c89..7cd1d18798b 100644 --- a/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/categories/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/categories/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/education/me/assignments/{educationAssignment%2Did}/categories/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Get a list of newly created or updated educationCategory objects without having to perform a full read of the collection. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Get a list of newly created or updated educationCategory objects without having to perform a full read of the collection. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Get a list of newly created or updated educationCategory objects without having to perform a full read of the collection. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Get a list of newly created or updated educationCategory objects without having to perform a full read of the collection. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Get a list of newly created or updated educationCategory objects without having to perform a full read of the collection. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/categories/item/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/categories/item/ref/RefRequestBuilder.java index 55cbea9ab5e..bbbc4252b80 100644 --- a/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/categories/item/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/categories/item/ref/RefRequestBuilder.java @@ -35,18 +35,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/education/me/assignments/{educationAssignment%2Did}/categories/{educationCategory%2Did}/$ref", rawUrl); } /** - * Remove an educationCategory from an educationAssignment. Only teachers can perform this operation. + * Delete ref of navigation property categories for education * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove an educationCategory from an educationAssignment. Only teachers can perform this operation. + * Delete ref of navigation property categories for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -55,7 +53,7 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove an educationCategory from an educationAssignment. Only teachers can perform this operation. + * Delete ref of navigation property categories for education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -63,7 +61,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove an educationCategory from an educationAssignment. Only teachers can perform this operation. + * Delete ref of navigation property categories for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/categories/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/categories/ref/RefRequestBuilder.java index d1533a37c65..0d873b8fbe0 100644 --- a/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/categories/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/categories/ref/RefRequestBuilder.java @@ -38,18 +38,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/education/me/assignments/{educationAssignment%2Did}/categories/$ref?@id={%40id}{&%24count,%24filter,%24orderby,%24search,%24skip,%24top}", rawUrl); } /** - * Remove an educationCategory from an educationAssignment. Only teachers can perform this operation. + * Delete ref of navigation property categories for education * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove an educationCategory from an educationAssignment. Only teachers can perform this operation. + * Delete ref of navigation property categories for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -58,21 +56,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * List all the categories associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * When set, enables users to easily find assignments of a given type. Read-only. Nullable. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get() { return get(null); } /** - * List all the categories associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * When set, enables users to easily find assignments of a given type. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -82,20 +78,18 @@ public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util return this.requestAdapter.send(requestInfo, errorMapping, StringCollectionResponse::createFromDiscriminatorValue); } /** - * Add one or more existing educationCategory objects to the specified educationAssignment. Only teachers can perform this operation. + * Create new navigation property ref to categories for education * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body) { post(body, null); } /** - * Add one or more existing educationCategory objects to the specified educationAssignment. Only teachers can perform this operation. + * Create new navigation property ref to categories for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { Objects.requireNonNull(body); @@ -105,7 +99,7 @@ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakart this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove an educationCategory from an educationAssignment. Only teachers can perform this operation. + * Delete ref of navigation property categories for education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -113,7 +107,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove an educationCategory from an educationAssignment. Only teachers can perform this operation. + * Delete ref of navigation property categories for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * List all the categories associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * When set, enables users to easily find assignments of a given type. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -133,7 +127,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List all the categories associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * When set, enables users to easily find assignments of a given type. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add one or more existing educationCategory objects to the specified educationAssignment. Only teachers can perform this operation. + * Create new navigation property ref to categories for education * @param body The request body * @return a {@link RequestInformation} */ @@ -154,7 +148,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add one or more existing educationCategory objects to the specified educationAssignment. Only teachers can perform this operation. + * Create new navigation property ref to categories for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -179,7 +173,7 @@ public RefRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl return new RefRequestBuilder(rawUrl, requestAdapter); } /** - * Remove an educationCategory from an educationAssignment. Only teachers can perform this operation. + * Delete ref of navigation property categories for education */ @jakarta.annotation.Generated("com.microsoft.kiota") public class DeleteQueryParameters implements QueryParameters { @@ -211,7 +205,7 @@ public class DeleteRequestConfiguration extends BaseRequestConfiguration { public DeleteQueryParameters queryParameters = new DeleteQueryParameters(); } /** - * List all the categories associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * When set, enables users to easily find assignments of a given type. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/resources/ResourcesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/resources/ResourcesRequestBuilder.java index f9c4fbc74d5..e241b613d89 100644 --- a/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/resources/ResourcesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/resources/ResourcesRequestBuilder.java @@ -60,21 +60,19 @@ public ResourcesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/education/me/assignments/{educationAssignment%2Did}/resources{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get all the educationAssignmentResource objects associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. * @return a {@link EducationAssignmentResourceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationAssignmentResourceCollectionResponse get() { return get(null); } /** - * Get all the educationAssignmentResource objects associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationAssignmentResourceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationAssignmentResourceCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public EducationAssignmentResourceCollectionResponse get(@jakarta.annotation.Nul return this.requestAdapter.send(requestInfo, errorMapping, EducationAssignmentResourceCollectionResponse::createFromDiscriminatorValue); } /** - * Create an assignment resource. Only teachers can perform this operation. You can create the following types of assignment resources: Every resource has an @odata.type property to indicate which type of resource is being created. + * Create new navigation property to resources for education * @param body The request body * @return a {@link EducationAssignmentResource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationAssignmentResource post(@jakarta.annotation.Nonnull final EducationAssignmentResource body) { return post(body, null); } /** - * Create an assignment resource. Only teachers can perform this operation. You can create the following types of assignment resources: Every resource has an @odata.type property to indicate which type of resource is being created. + * Create new navigation property to resources for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationAssignmentResource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationAssignmentResource post(@jakarta.annotation.Nonnull final EducationAssignmentResource body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public EducationAssignmentResource post(@jakarta.annotation.Nonnull final Educat return this.requestAdapter.send(requestInfo, errorMapping, EducationAssignmentResource::createFromDiscriminatorValue); } /** - * Get all the educationAssignmentResource objects associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get all the educationAssignmentResource objects associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an assignment resource. Only teachers can perform this operation. You can create the following types of assignment resources: Every resource has an @odata.type property to indicate which type of resource is being created. + * Create new navigation property to resources for education * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an assignment resource. Only teachers can perform this operation. You can create the following types of assignment resources: Every resource has an @odata.type property to indicate which type of resource is being created. + * Create new navigation property to resources for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ResourcesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ResourcesRequestBuilder(rawUrl, requestAdapter); } /** - * Get all the educationAssignmentResource objects associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/resources/item/EducationAssignmentResourceItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/resources/item/EducationAssignmentResourceItemRequestBuilder.java index 21ffe95a705..6894c321da4 100644 --- a/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/resources/item/EducationAssignmentResourceItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/resources/item/EducationAssignmentResourceItemRequestBuilder.java @@ -37,18 +37,16 @@ public EducationAssignmentResourceItemRequestBuilder(@jakarta.annotation.Nonnull super(requestAdapter, "{+baseurl}/education/me/assignments/{educationAssignment%2Did}/resources/{educationAssignmentResource%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a specific educationAssignmentResource attached to an assignment. In general, only teachers in the class can remove a resource. However, teachers can't remove resources marked as 'distributeToStudents', after the assignment has been published to students. + * Delete navigation property resources for education * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a specific educationAssignmentResource attached to an assignment. In general, only teachers in the class can remove a resource. However, teachers can't remove resources marked as 'distributeToStudents', after the assignment has been published to students. + * Delete navigation property resources for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the properties of an education assignment resource associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. * @return a {@link EducationAssignmentResource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationAssignmentResource get() { return get(null); } /** - * Get the properties of an education assignment resource associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationAssignmentResource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationAssignmentResource get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -106,7 +102,7 @@ public EducationAssignmentResource patch(@jakarta.annotation.Nonnull final Educa return this.requestAdapter.send(requestInfo, errorMapping, EducationAssignmentResource::createFromDiscriminatorValue); } /** - * Delete a specific educationAssignmentResource attached to an assignment. In general, only teachers in the class can remove a resource. However, teachers can't remove resources marked as 'distributeToStudents', after the assignment has been published to students. + * Delete navigation property resources for education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -114,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a specific educationAssignmentResource attached to an assignment. In general, only teachers in the class can remove a resource. However, teachers can't remove resources marked as 'distributeToStudents', after the assignment has been published to students. + * Delete navigation property resources for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the properties of an education assignment resource associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the properties of an education assignment resource associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public EducationAssignmentResourceItemRequestBuilder withUrl(@jakarta.annotation public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the properties of an education assignment resource associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/rubric/RubricRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/rubric/RubricRequestBuilder.java index b65f9db0c86..8d7777f3a4d 100644 --- a/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/rubric/RubricRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/rubric/RubricRequestBuilder.java @@ -46,18 +46,16 @@ public RubricRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/education/me/assignments/{educationAssignment%2Did}/rubric{?%24expand,%24select}", rawUrl); } /** - * Remove an educationRubric from an educationAssignment. This method doesn't delete the rubric itself and can only be performed by teachers. + * Delete navigation property rubric for education * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove an educationRubric from an educationAssignment. This method doesn't delete the rubric itself and can only be performed by teachers. + * Delete navigation property rubric for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the educationRubric object attached to an educationAssignment, if one exists. Only teachers, students, and applications with application permissions can perform this operation. + * When set, the grading rubric attached to this assignment. * @return a {@link EducationRubric} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationRubric get() { return get(null); } /** - * Get the educationRubric object attached to an educationAssignment, if one exists. Only teachers, students, and applications with application permissions can perform this operation. + * When set, the grading rubric attached to this assignment. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationRubric} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationRubric get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public EducationRubric get(@jakarta.annotation.Nullable final java.util.function return this.requestAdapter.send(requestInfo, errorMapping, EducationRubric::createFromDiscriminatorValue); } /** - * Attach an existing educationRubric object to an educationAssignment. Only teachers can perform this operation. + * Update the navigation property rubric in education * @param body The request body * @return a {@link EducationRubric} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationRubric patch(@jakarta.annotation.Nonnull final EducationRubric body) { return patch(body, null); } /** - * Attach an existing educationRubric object to an educationAssignment. Only teachers can perform this operation. + * Update the navigation property rubric in education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationRubric} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationRubric patch(@jakarta.annotation.Nonnull final EducationRubric body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public EducationRubric patch(@jakarta.annotation.Nonnull final EducationRubric b return this.requestAdapter.send(requestInfo, errorMapping, EducationRubric::createFromDiscriminatorValue); } /** - * Remove an educationRubric from an educationAssignment. This method doesn't delete the rubric itself and can only be performed by teachers. + * Delete navigation property rubric for education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove an educationRubric from an educationAssignment. This method doesn't delete the rubric itself and can only be performed by teachers. + * Delete navigation property rubric for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the educationRubric object attached to an educationAssignment, if one exists. Only teachers, students, and applications with application permissions can perform this operation. + * When set, the grading rubric attached to this assignment. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the educationRubric object attached to an educationAssignment, if one exists. Only teachers, students, and applications with application permissions can perform this operation. + * When set, the grading rubric attached to this assignment. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Attach an existing educationRubric object to an educationAssignment. Only teachers can perform this operation. + * Update the navigation property rubric in education * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Attach an existing educationRubric object to an educationAssignment. Only teachers can perform this operation. + * Update the navigation property rubric in education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public RubricRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the educationRubric object attached to an educationAssignment, if one exists. Only teachers, students, and applications with application permissions can perform this operation. + * When set, the grading rubric attached to this assignment. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/rubric/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/rubric/ref/RefRequestBuilder.java index 1486cff6e24..ab02c1897b0 100644 --- a/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/rubric/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/rubric/ref/RefRequestBuilder.java @@ -36,18 +36,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/education/me/assignments/{educationAssignment%2Did}/rubric/$ref", rawUrl); } /** - * Remove an educationRubric from an educationAssignment. This method doesn't delete the rubric itself and can only be performed by teachers. + * Delete ref of navigation property rubric for education * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove an educationRubric from an educationAssignment. This method doesn't delete the rubric itself and can only be performed by teachers. + * Delete ref of navigation property rubric for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -56,21 +54,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the educationRubric object attached to an educationAssignment, if one exists. Only teachers, students, and applications with application permissions can perform this operation. + * When set, the grading rubric attached to this assignment. * @return a {@link String} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public String get() { return get(null); } /** - * Get the educationRubric object attached to an educationAssignment, if one exists. Only teachers, students, and applications with application permissions can perform this operation. + * When set, the grading rubric attached to this assignment. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link String} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public String get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -80,20 +76,18 @@ public String get(@jakarta.annotation.Nullable final java.util.function.Consumer return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, String.class); } /** - * Attach an existing educationRubric object to an educationAssignment. Only teachers can perform this operation. + * Update the ref of navigation property rubric in education * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void put(@jakarta.annotation.Nonnull final ReferenceUpdate body) { put(body, null); } /** - * Attach an existing educationRubric object to an educationAssignment. Only teachers can perform this operation. + * Update the ref of navigation property rubric in education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void put(@jakarta.annotation.Nonnull final ReferenceUpdate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { Objects.requireNonNull(body); @@ -103,7 +97,7 @@ public void put(@jakarta.annotation.Nonnull final ReferenceUpdate body, @jakarta this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove an educationRubric from an educationAssignment. This method doesn't delete the rubric itself and can only be performed by teachers. + * Delete ref of navigation property rubric for education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -111,7 +105,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove an educationRubric from an educationAssignment. This method doesn't delete the rubric itself and can only be performed by teachers. + * Delete ref of navigation property rubric for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -123,7 +117,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the educationRubric object attached to an educationAssignment, if one exists. Only teachers, students, and applications with application permissions can perform this operation. + * When set, the grading rubric attached to this assignment. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -131,7 +125,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the educationRubric object attached to an educationAssignment, if one exists. Only teachers, students, and applications with application permissions can perform this operation. + * When set, the grading rubric attached to this assignment. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -143,7 +137,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Attach an existing educationRubric object to an educationAssignment. Only teachers can perform this operation. + * Update the ref of navigation property rubric in education * @param body The request body * @return a {@link RequestInformation} */ @@ -152,7 +146,7 @@ public RequestInformation toPutRequestInformation(@jakarta.annotation.Nonnull fi return toPutRequestInformation(body, null); } /** - * Attach an existing educationRubric object to an educationAssignment. Only teachers can perform this operation. + * Update the ref of navigation property rubric in education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/submissions/SubmissionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/submissions/SubmissionsRequestBuilder.java index 6824eb73d95..fc00f3b0220 100644 --- a/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/submissions/SubmissionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/submissions/SubmissionsRequestBuilder.java @@ -60,21 +60,19 @@ public SubmissionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/education/me/assignments/{educationAssignment%2Did}/submissions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List all the submissions associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. A teacher or an application with application permissions can get all the submissions while a student can only get submissions that they're associated with. + * Once published, there's a submission object for each student representing their work and grade. Read-only. Nullable. * @return a {@link EducationSubmissionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSubmissionCollectionResponse get() { return get(null); } /** - * List all the submissions associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. A teacher or an application with application permissions can get all the submissions while a student can only get submissions that they're associated with. + * Once published, there's a submission object for each student representing their work and grade. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationSubmissionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSubmissionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public EducationSubmission post(@jakarta.annotation.Nonnull final EducationSubmi return this.requestAdapter.send(requestInfo, errorMapping, EducationSubmission::createFromDiscriminatorValue); } /** - * List all the submissions associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. A teacher or an application with application permissions can get all the submissions while a student can only get submissions that they're associated with. + * Once published, there's a submission object for each student representing their work and grade. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List all the submissions associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. A teacher or an application with application permissions can get all the submissions while a student can only get submissions that they're associated with. + * Once published, there's a submission object for each student representing their work and grade. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public SubmissionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new SubmissionsRequestBuilder(rawUrl, requestAdapter); } /** - * List all the submissions associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. A teacher or an application with application permissions can get all the submissions while a student can only get submissions that they're associated with. + * Once published, there's a submission object for each student representing their work and grade. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/submissions/item/EducationSubmissionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/submissions/item/EducationSubmissionItemRequestBuilder.java index ae4bc51effc..8b1a8c3d748 100644 --- a/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/submissions/item/EducationSubmissionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/submissions/item/EducationSubmissionItemRequestBuilder.java @@ -127,21 +127,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a particular submission. Only teachers, students, and applications with application permissions can perform this operation. A submission object represents a student's work for an assignment. Resources associated with the submission represent this work. Only the assignedTo student can see and modify the submission. A teacher or application with application permissions has full access to all submissions. The grade and feedback from a teacher are part of the educationOutcome associated with this object. Only teachers or applications with application permissions can add or change grades and feedback. Students will not see the grade or feedback until the assignment has been released. + * Once published, there's a submission object for each student representing their work and grade. Read-only. Nullable. * @return a {@link EducationSubmission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSubmission get() { return get(null); } /** - * Retrieve a particular submission. Only teachers, students, and applications with application permissions can perform this operation. A submission object represents a student's work for an assignment. Resources associated with the submission represent this work. Only the assignedTo student can see and modify the submission. A teacher or application with application permissions has full access to all submissions. The grade and feedback from a teacher are part of the educationOutcome associated with this object. Only teachers or applications with application permissions can add or change grades and feedback. Students will not see the grade or feedback until the assignment has been released. + * Once published, there's a submission object for each student representing their work and grade. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationSubmission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSubmission get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -196,7 +194,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a particular submission. Only teachers, students, and applications with application permissions can perform this operation. A submission object represents a student's work for an assignment. Resources associated with the submission represent this work. Only the assignedTo student can see and modify the submission. A teacher or application with application permissions has full access to all submissions. The grade and feedback from a teacher are part of the educationOutcome associated with this object. Only teachers or applications with application permissions can add or change grades and feedback. Students will not see the grade or feedback until the assignment has been released. + * Once published, there's a submission object for each student representing their work and grade. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -204,7 +202,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a particular submission. Only teachers, students, and applications with application permissions can perform this operation. A submission object represents a student's work for an assignment. Resources associated with the submission represent this work. Only the assignedTo student can see and modify the submission. A teacher or application with application permissions has full access to all submissions. The grade and feedback from a teacher are part of the educationOutcome associated with this object. Only teachers or applications with application permissions can add or change grades and feedback. Students will not see the grade or feedback until the assignment has been released. + * Once published, there's a submission object for each student representing their work and grade. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -256,7 +254,7 @@ public EducationSubmissionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve a particular submission. Only teachers, students, and applications with application permissions can perform this operation. A submission object represents a student's work for an assignment. Resources associated with the submission represent this work. Only the assignedTo student can see and modify the submission. A teacher or application with application permissions has full access to all submissions. The grade and feedback from a teacher are part of the educationOutcome associated with this object. Only teachers or applications with application permissions can add or change grades and feedback. Students will not see the grade or feedback until the assignment has been released. + * Once published, there's a submission object for each student representing their work and grade. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/submissions/item/outcomes/OutcomesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/submissions/item/outcomes/OutcomesRequestBuilder.java index 54f7dc9de99..8a363aaebc9 100644 --- a/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/submissions/item/outcomes/OutcomesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/submissions/item/outcomes/OutcomesRequestBuilder.java @@ -60,21 +60,19 @@ public OutcomesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/education/me/assignments/{educationAssignment%2Did}/submissions/{educationSubmission%2Did}/outcomes{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of educationOutcome objects. There are four types of outcomes: educationPointsOutcome, educationFeedbackOutcome, educationRubricOutcome, and educationFeedbackResourceOutcome. Only teachers, students, and applications with application permissions can perform this operation. A submission for a credit assignment (one that has no point value and no rubric) has an educationFeedbackOutcome. (It might also return an educationPointsOutcome, but that outcome is ignored.) A submission for a points assignment (one that has a point value assigned) has both an educationFeedbackOutcome and an educationPointsOutcome. A submission for an assignment with an attached rubric, if the rubric is a credit rubric (no points), has an educationFeedbackOutcome and an educationRubricOutcome. (It might also return an educationPointsOutcome, but that outcome is ignored.) A submission for an assignment with an attached rubric, if the rubric is a points rubric, has an educationFeedbackOutcome, an educationPointsOutcome, and an educationRubricOutcome. A submission for a feedback resource has an educationFeedbackResourceOutcome. All outcome types have a regular and a published property appropriate to that type of outcome; for example, points and publishedPoints, feedback and publishedFeedback. The regular property is the most recent value updated by the teacher; the published property is the most recent value returned to the student. + * Get outcomes from education * @return a {@link EducationOutcomeCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationOutcomeCollectionResponse get() { return get(null); } /** - * Retrieve a list of educationOutcome objects. There are four types of outcomes: educationPointsOutcome, educationFeedbackOutcome, educationRubricOutcome, and educationFeedbackResourceOutcome. Only teachers, students, and applications with application permissions can perform this operation. A submission for a credit assignment (one that has no point value and no rubric) has an educationFeedbackOutcome. (It might also return an educationPointsOutcome, but that outcome is ignored.) A submission for a points assignment (one that has a point value assigned) has both an educationFeedbackOutcome and an educationPointsOutcome. A submission for an assignment with an attached rubric, if the rubric is a credit rubric (no points), has an educationFeedbackOutcome and an educationRubricOutcome. (It might also return an educationPointsOutcome, but that outcome is ignored.) A submission for an assignment with an attached rubric, if the rubric is a points rubric, has an educationFeedbackOutcome, an educationPointsOutcome, and an educationRubricOutcome. A submission for a feedback resource has an educationFeedbackResourceOutcome. All outcome types have a regular and a published property appropriate to that type of outcome; for example, points and publishedPoints, feedback and publishedFeedback. The regular property is the most recent value updated by the teacher; the published property is the most recent value returned to the student. + * Get outcomes from education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationOutcomeCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationOutcomeCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public EducationOutcomeCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, EducationOutcomeCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new feedback resource for a submission. Only a teacher can perform this operation. To create a new file-based resource, upload the file to the feedback resources folder associated with the assignment. If the file doesn't exist or isn't in that folder, the POST request will fail. + * Create new navigation property to outcomes for education * @param body The request body * @return a {@link EducationOutcome} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationOutcome post(@jakarta.annotation.Nonnull final EducationOutcome body) { return post(body, null); } /** - * Create a new feedback resource for a submission. Only a teacher can perform this operation. To create a new file-based resource, upload the file to the feedback resources folder associated with the assignment. If the file doesn't exist or isn't in that folder, the POST request will fail. + * Create new navigation property to outcomes for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationOutcome} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationOutcome post(@jakarta.annotation.Nonnull final EducationOutcome body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public EducationOutcome post(@jakarta.annotation.Nonnull final EducationOutcome return this.requestAdapter.send(requestInfo, errorMapping, EducationOutcome::createFromDiscriminatorValue); } /** - * Retrieve a list of educationOutcome objects. There are four types of outcomes: educationPointsOutcome, educationFeedbackOutcome, educationRubricOutcome, and educationFeedbackResourceOutcome. Only teachers, students, and applications with application permissions can perform this operation. A submission for a credit assignment (one that has no point value and no rubric) has an educationFeedbackOutcome. (It might also return an educationPointsOutcome, but that outcome is ignored.) A submission for a points assignment (one that has a point value assigned) has both an educationFeedbackOutcome and an educationPointsOutcome. A submission for an assignment with an attached rubric, if the rubric is a credit rubric (no points), has an educationFeedbackOutcome and an educationRubricOutcome. (It might also return an educationPointsOutcome, but that outcome is ignored.) A submission for an assignment with an attached rubric, if the rubric is a points rubric, has an educationFeedbackOutcome, an educationPointsOutcome, and an educationRubricOutcome. A submission for a feedback resource has an educationFeedbackResourceOutcome. All outcome types have a regular and a published property appropriate to that type of outcome; for example, points and publishedPoints, feedback and publishedFeedback. The regular property is the most recent value updated by the teacher; the published property is the most recent value returned to the student. + * Get outcomes from education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of educationOutcome objects. There are four types of outcomes: educationPointsOutcome, educationFeedbackOutcome, educationRubricOutcome, and educationFeedbackResourceOutcome. Only teachers, students, and applications with application permissions can perform this operation. A submission for a credit assignment (one that has no point value and no rubric) has an educationFeedbackOutcome. (It might also return an educationPointsOutcome, but that outcome is ignored.) A submission for a points assignment (one that has a point value assigned) has both an educationFeedbackOutcome and an educationPointsOutcome. A submission for an assignment with an attached rubric, if the rubric is a credit rubric (no points), has an educationFeedbackOutcome and an educationRubricOutcome. (It might also return an educationPointsOutcome, but that outcome is ignored.) A submission for an assignment with an attached rubric, if the rubric is a points rubric, has an educationFeedbackOutcome, an educationPointsOutcome, and an educationRubricOutcome. A submission for a feedback resource has an educationFeedbackResourceOutcome. All outcome types have a regular and a published property appropriate to that type of outcome; for example, points and publishedPoints, feedback and publishedFeedback. The regular property is the most recent value updated by the teacher; the published property is the most recent value returned to the student. + * Get outcomes from education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new feedback resource for a submission. Only a teacher can perform this operation. To create a new file-based resource, upload the file to the feedback resources folder associated with the assignment. If the file doesn't exist or isn't in that folder, the POST request will fail. + * Create new navigation property to outcomes for education * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new feedback resource for a submission. Only a teacher can perform this operation. To create a new file-based resource, upload the file to the feedback resources folder associated with the assignment. If the file doesn't exist or isn't in that folder, the POST request will fail. + * Create new navigation property to outcomes for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public OutcomesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new OutcomesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of educationOutcome objects. There are four types of outcomes: educationPointsOutcome, educationFeedbackOutcome, educationRubricOutcome, and educationFeedbackResourceOutcome. Only teachers, students, and applications with application permissions can perform this operation. A submission for a credit assignment (one that has no point value and no rubric) has an educationFeedbackOutcome. (It might also return an educationPointsOutcome, but that outcome is ignored.) A submission for a points assignment (one that has a point value assigned) has both an educationFeedbackOutcome and an educationPointsOutcome. A submission for an assignment with an attached rubric, if the rubric is a credit rubric (no points), has an educationFeedbackOutcome and an educationRubricOutcome. (It might also return an educationPointsOutcome, but that outcome is ignored.) A submission for an assignment with an attached rubric, if the rubric is a points rubric, has an educationFeedbackOutcome, an educationPointsOutcome, and an educationRubricOutcome. A submission for a feedback resource has an educationFeedbackResourceOutcome. All outcome types have a regular and a published property appropriate to that type of outcome; for example, points and publishedPoints, feedback and publishedFeedback. The regular property is the most recent value updated by the teacher; the published property is the most recent value returned to the student. + * Get outcomes from education */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/submissions/item/outcomes/item/EducationOutcomeItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/submissions/item/outcomes/item/EducationOutcomeItemRequestBuilder.java index fadbb29a31e..44d24ad0a51 100644 --- a/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/submissions/item/outcomes/item/EducationOutcomeItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/submissions/item/outcomes/item/EducationOutcomeItemRequestBuilder.java @@ -37,18 +37,16 @@ public EducationOutcomeItemRequestBuilder(@jakarta.annotation.Nonnull final Stri super(requestAdapter, "{+baseurl}/education/me/assignments/{educationAssignment%2Did}/submissions/{educationSubmission%2Did}/outcomes/{educationOutcome%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a feedback resource from a submission. This can only be done by a teacher. + * Delete navigation property outcomes for education * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a feedback resource from a submission. This can only be done by a teacher. + * Delete navigation property outcomes for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -79,23 +77,21 @@ public EducationOutcome get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, EducationOutcome::createFromDiscriminatorValue); } /** - * Update the properties of an educationOutcome object. Only teachers can perform this operation. + * Update the navigation property outcomes in education * @param body The request body * @return a {@link EducationOutcome} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationOutcome patch(@jakarta.annotation.Nonnull final EducationOutcome body) { return patch(body, null); } /** - * Update the properties of an educationOutcome object. Only teachers can perform this operation. + * Update the navigation property outcomes in education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationOutcome} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationOutcome patch(@jakarta.annotation.Nonnull final EducationOutcome body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -106,7 +102,7 @@ public EducationOutcome patch(@jakarta.annotation.Nonnull final EducationOutcome return this.requestAdapter.send(requestInfo, errorMapping, EducationOutcome::createFromDiscriminatorValue); } /** - * Delete a feedback resource from a submission. This can only be done by a teacher. + * Delete navigation property outcomes for education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -114,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a feedback resource from a submission. This can only be done by a teacher. + * Delete navigation property outcomes for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an educationOutcome object. Only teachers can perform this operation. + * Update the navigation property outcomes in education * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an educationOutcome object. Only teachers can perform this operation. + * Update the navigation property outcomes in education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/submissions/item/resources/ResourcesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/submissions/item/resources/ResourcesRequestBuilder.java index ed6ead64418..561b2a0cbc3 100644 --- a/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/submissions/item/resources/ResourcesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/submissions/item/resources/ResourcesRequestBuilder.java @@ -60,21 +60,19 @@ public ResourcesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/education/me/assignments/{educationAssignment%2Did}/submissions/{educationSubmission%2Did}/resources{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List the resources associated with a submission. Only teachers, students, and applications with application permissions can perform this operation. The educationSubmissionResource object is a wrapper around the actual resource object the student is working on. The wrapper also includes a pointer to the resources on the assignment if this resource was copied from the assignment during the assign process. These resources are the working copy of the assignment. The submittedResources are the resources that were officially submitted for grading. + * Get resources from education * @return a {@link EducationSubmissionResourceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSubmissionResourceCollectionResponse get() { return get(null); } /** - * List the resources associated with a submission. Only teachers, students, and applications with application permissions can perform this operation. The educationSubmissionResource object is a wrapper around the actual resource object the student is working on. The wrapper also includes a pointer to the resources on the assignment if this resource was copied from the assignment during the assign process. These resources are the working copy of the assignment. The submittedResources are the resources that were officially submitted for grading. + * Get resources from education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationSubmissionResourceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSubmissionResourceCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public EducationSubmissionResourceCollectionResponse get(@jakarta.annotation.Nul return this.requestAdapter.send(requestInfo, errorMapping, EducationSubmissionResourceCollectionResponse::createFromDiscriminatorValue); } /** - * Add an educationSubmissionResource to a submission resource list. Only teachers and students can perform this operation. The operation will not succeed if the allowStudentsToAddResources flag is not set to true. To create a new file-based resource, upload the file to the resources folder associated with the submission. If the file doesn't exist or is not in that folder, the POST request will fail. + * Create new navigation property to resources for education * @param body The request body * @return a {@link EducationSubmissionResource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSubmissionResource post(@jakarta.annotation.Nonnull final EducationSubmissionResource body) { return post(body, null); } /** - * Add an educationSubmissionResource to a submission resource list. Only teachers and students can perform this operation. The operation will not succeed if the allowStudentsToAddResources flag is not set to true. To create a new file-based resource, upload the file to the resources folder associated with the submission. If the file doesn't exist or is not in that folder, the POST request will fail. + * Create new navigation property to resources for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationSubmissionResource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSubmissionResource post(@jakarta.annotation.Nonnull final EducationSubmissionResource body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public EducationSubmissionResource post(@jakarta.annotation.Nonnull final Educat return this.requestAdapter.send(requestInfo, errorMapping, EducationSubmissionResource::createFromDiscriminatorValue); } /** - * List the resources associated with a submission. Only teachers, students, and applications with application permissions can perform this operation. The educationSubmissionResource object is a wrapper around the actual resource object the student is working on. The wrapper also includes a pointer to the resources on the assignment if this resource was copied from the assignment during the assign process. These resources are the working copy of the assignment. The submittedResources are the resources that were officially submitted for grading. + * Get resources from education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List the resources associated with a submission. Only teachers, students, and applications with application permissions can perform this operation. The educationSubmissionResource object is a wrapper around the actual resource object the student is working on. The wrapper also includes a pointer to the resources on the assignment if this resource was copied from the assignment during the assign process. These resources are the working copy of the assignment. The submittedResources are the resources that were officially submitted for grading. + * Get resources from education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add an educationSubmissionResource to a submission resource list. Only teachers and students can perform this operation. The operation will not succeed if the allowStudentsToAddResources flag is not set to true. To create a new file-based resource, upload the file to the resources folder associated with the submission. If the file doesn't exist or is not in that folder, the POST request will fail. + * Create new navigation property to resources for education * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add an educationSubmissionResource to a submission resource list. Only teachers and students can perform this operation. The operation will not succeed if the allowStudentsToAddResources flag is not set to true. To create a new file-based resource, upload the file to the resources folder associated with the submission. If the file doesn't exist or is not in that folder, the POST request will fail. + * Create new navigation property to resources for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ResourcesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ResourcesRequestBuilder(rawUrl, requestAdapter); } /** - * List the resources associated with a submission. Only teachers, students, and applications with application permissions can perform this operation. The educationSubmissionResource object is a wrapper around the actual resource object the student is working on. The wrapper also includes a pointer to the resources on the assignment if this resource was copied from the assignment during the assign process. These resources are the working copy of the assignment. The submittedResources are the resources that were officially submitted for grading. + * Get resources from education */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/submissions/item/resources/item/EducationSubmissionResourceItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/submissions/item/resources/item/EducationSubmissionResourceItemRequestBuilder.java index 614f220fed9..c63da48110a 100644 --- a/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/submissions/item/resources/item/EducationSubmissionResourceItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/submissions/item/resources/item/EducationSubmissionResourceItemRequestBuilder.java @@ -37,18 +37,16 @@ public EducationSubmissionResourceItemRequestBuilder(@jakarta.annotation.Nonnull super(requestAdapter, "{+baseurl}/education/me/assignments/{educationAssignment%2Did}/submissions/{educationSubmission%2Did}/resources/{educationSubmissionResource%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an educationSubmissionResource from the submission. Only teachers and students can perform this operation. If the resource was copied from the assignment, a new copy of the resource will be created after the current copy is deleted. This allows you to 'reset' the resource to its original state. If the resource wasn't copied from the assignment but was added from the student, the resource is deleted. + * Delete navigation property resources for education * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an educationSubmissionResource from the submission. Only teachers and students can perform this operation. If the resource was copied from the assignment, a new copy of the resource will be created after the current copy is deleted. This allows you to 'reset' the resource to its original state. If the resource wasn't copied from the assignment but was added from the student, the resource is deleted. + * Delete navigation property resources for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties of a specific resource associated with a submission. Only teachers, students, and applications with application permissions can perform this operation. This resource is in the 'working' resource list and should be considered work in process by a student. This resource is wrapped with a possible pointer back to the assignment resource if it was copied from the assignment. + * Get resources from education * @return a {@link EducationSubmissionResource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSubmissionResource get() { return get(null); } /** - * Retrieve the properties of a specific resource associated with a submission. Only teachers, students, and applications with application permissions can perform this operation. This resource is in the 'working' resource list and should be considered work in process by a student. This resource is wrapped with a possible pointer back to the assignment resource if it was copied from the assignment. + * Get resources from education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationSubmissionResource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSubmissionResource get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -106,7 +102,7 @@ public EducationSubmissionResource patch(@jakarta.annotation.Nonnull final Educa return this.requestAdapter.send(requestInfo, errorMapping, EducationSubmissionResource::createFromDiscriminatorValue); } /** - * Delete an educationSubmissionResource from the submission. Only teachers and students can perform this operation. If the resource was copied from the assignment, a new copy of the resource will be created after the current copy is deleted. This allows you to 'reset' the resource to its original state. If the resource wasn't copied from the assignment but was added from the student, the resource is deleted. + * Delete navigation property resources for education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -114,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an educationSubmissionResource from the submission. Only teachers and students can perform this operation. If the resource was copied from the assignment, a new copy of the resource will be created after the current copy is deleted. This allows you to 'reset' the resource to its original state. If the resource wasn't copied from the assignment but was added from the student, the resource is deleted. + * Delete navigation property resources for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties of a specific resource associated with a submission. Only teachers, students, and applications with application permissions can perform this operation. This resource is in the 'working' resource list and should be considered work in process by a student. This resource is wrapped with a possible pointer back to the assignment resource if it was copied from the assignment. + * Get resources from education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties of a specific resource associated with a submission. Only teachers, students, and applications with application permissions can perform this operation. This resource is in the 'working' resource list and should be considered work in process by a student. This resource is wrapped with a possible pointer back to the assignment resource if it was copied from the assignment. + * Get resources from education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public EducationSubmissionResourceItemRequestBuilder withUrl(@jakarta.annotation public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties of a specific resource associated with a submission. Only teachers, students, and applications with application permissions can perform this operation. This resource is in the 'working' resource list and should be considered work in process by a student. This resource is wrapped with a possible pointer back to the assignment resource if it was copied from the assignment. + * Get resources from education */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/submissions/item/submittedresources/SubmittedResourcesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/submissions/item/submittedresources/SubmittedResourcesRequestBuilder.java index 9e8e476e5df..08e5a15dc8f 100644 --- a/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/submissions/item/submittedresources/SubmittedResourcesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/submissions/item/submittedresources/SubmittedResourcesRequestBuilder.java @@ -60,21 +60,19 @@ public SubmittedResourcesRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/education/me/assignments/{educationAssignment%2Did}/submissions/{educationSubmission%2Did}/submittedResources{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List the educationSubmissionResource objects that were officially submitted for grading. Only teachers, students, and applications with application permissions can perform this operation. The student who owns the submission can't change the submitted list without resubmitting the assignment. This resource is a wrapper around the real resource and can contain a pointer back to the actual assignment resource if this resource was copied from the assignment. + * Get submittedResources from education * @return a {@link EducationSubmissionResourceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSubmissionResourceCollectionResponse get() { return get(null); } /** - * List the educationSubmissionResource objects that were officially submitted for grading. Only teachers, students, and applications with application permissions can perform this operation. The student who owns the submission can't change the submitted list without resubmitting the assignment. This resource is a wrapper around the real resource and can contain a pointer back to the actual assignment resource if this resource was copied from the assignment. + * Get submittedResources from education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationSubmissionResourceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSubmissionResourceCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public EducationSubmissionResource post(@jakarta.annotation.Nonnull final Educat return this.requestAdapter.send(requestInfo, errorMapping, EducationSubmissionResource::createFromDiscriminatorValue); } /** - * List the educationSubmissionResource objects that were officially submitted for grading. Only teachers, students, and applications with application permissions can perform this operation. The student who owns the submission can't change the submitted list without resubmitting the assignment. This resource is a wrapper around the real resource and can contain a pointer back to the actual assignment resource if this resource was copied from the assignment. + * Get submittedResources from education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List the educationSubmissionResource objects that were officially submitted for grading. Only teachers, students, and applications with application permissions can perform this operation. The student who owns the submission can't change the submitted list without resubmitting the assignment. This resource is a wrapper around the real resource and can contain a pointer back to the actual assignment resource if this resource was copied from the assignment. + * Get submittedResources from education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public SubmittedResourcesRequestBuilder withUrl(@jakarta.annotation.Nonnull fina return new SubmittedResourcesRequestBuilder(rawUrl, requestAdapter); } /** - * List the educationSubmissionResource objects that were officially submitted for grading. Only teachers, students, and applications with application permissions can perform this operation. The student who owns the submission can't change the submitted list without resubmitting the assignment. This resource is a wrapper around the real resource and can contain a pointer back to the actual assignment resource if this resource was copied from the assignment. + * Get submittedResources from education */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/submissions/item/submittedresources/item/EducationSubmissionResourceItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/submissions/item/submittedresources/item/EducationSubmissionResourceItemRequestBuilder.java index e4247661f2c..524bfb330ac 100644 --- a/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/submissions/item/submittedresources/item/EducationSubmissionResourceItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/me/assignments/item/submissions/item/submittedresources/item/EducationSubmissionResourceItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a submitted resource. Only teachers, students, and applications with application permissions can perform this operation. Resources are available to a teacher or an application with application permissions after a student submits it, and are available to the student after the teacher returns the submission. Teachers can leave notes in some resources. + * Get submittedResources from education * @return a {@link EducationSubmissionResource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSubmissionResource get() { return get(null); } /** - * Retrieve a submitted resource. Only teachers, students, and applications with application permissions can perform this operation. Resources are available to a teacher or an application with application permissions after a student submits it, and are available to the student after the teacher returns the submission. Teachers can leave notes in some resources. + * Get submittedResources from education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationSubmissionResource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSubmissionResource get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a submitted resource. Only teachers, students, and applications with application permissions can perform this operation. Resources are available to a teacher or an application with application permissions after a student submits it, and are available to the student after the teacher returns the submission. Teachers can leave notes in some resources. + * Get submittedResources from education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a submitted resource. Only teachers, students, and applications with application permissions can perform this operation. Resources are available to a teacher or an application with application permissions after a student submits it, and are available to the student after the teacher returns the submission. Teachers can leave notes in some resources. + * Get submittedResources from education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public EducationSubmissionResourceItemRequestBuilder withUrl(@jakarta.annotation public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve a submitted resource. Only teachers, students, and applications with application permissions can perform this operation. Resources are available to a teacher or an application with application permissions after a student submits it, and are available to the student after the teacher returns the submission. Teachers can leave notes in some resources. + * Get submittedResources from education */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/me/classes/ClassesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/me/classes/ClassesRequestBuilder.java index 57df13dd1e7..9b231dfa085 100644 --- a/src/main/java/com/microsoft/graph/generated/education/me/classes/ClassesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/me/classes/ClassesRequestBuilder.java @@ -59,21 +59,19 @@ public ClassesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/education/me/classes{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the educationClass resources an educationUser is a member of. + * Classes to which the user belongs. Nullable. * @return a {@link EducationClassCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationClassCollectionResponse get() { return get(null); } /** - * Get the educationClass resources an educationUser is a member of. + * Classes to which the user belongs. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationClassCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationClassCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public EducationClassCollectionResponse get(@jakarta.annotation.Nullable final j return this.requestAdapter.send(requestInfo, errorMapping, EducationClassCollectionResponse::createFromDiscriminatorValue); } /** - * Get the educationClass resources an educationUser is a member of. + * Classes to which the user belongs. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the educationClass resources an educationUser is a member of. + * Classes to which the user belongs. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public ClassesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new ClassesRequestBuilder(rawUrl, requestAdapter); } /** - * Get the educationClass resources an educationUser is a member of. + * Classes to which the user belongs. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/me/rubrics/RubricsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/me/rubrics/RubricsRequestBuilder.java index f3c8f560340..19c3bf0dab9 100644 --- a/src/main/java/com/microsoft/graph/generated/education/me/rubrics/RubricsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/me/rubrics/RubricsRequestBuilder.java @@ -60,21 +60,19 @@ public RubricsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/education/me/rubrics{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of educationRubric objects. + * When set, the grading rubric attached to the assignment. * @return a {@link EducationRubricCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationRubricCollectionResponse get() { return get(null); } /** - * Retrieve a list of educationRubric objects. + * When set, the grading rubric attached to the assignment. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationRubricCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationRubricCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public EducationRubricCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, EducationRubricCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new educationRubric object. + * Create new navigation property to rubrics for education * @param body The request body * @return a {@link EducationRubric} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationRubric post(@jakarta.annotation.Nonnull final EducationRubric body) { return post(body, null); } /** - * Create a new educationRubric object. + * Create new navigation property to rubrics for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationRubric} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationRubric post(@jakarta.annotation.Nonnull final EducationRubric body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public EducationRubric post(@jakarta.annotation.Nonnull final EducationRubric bo return this.requestAdapter.send(requestInfo, errorMapping, EducationRubric::createFromDiscriminatorValue); } /** - * Retrieve a list of educationRubric objects. + * When set, the grading rubric attached to the assignment. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of educationRubric objects. + * When set, the grading rubric attached to the assignment. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new educationRubric object. + * Create new navigation property to rubrics for education * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new educationRubric object. + * Create new navigation property to rubrics for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public RubricsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new RubricsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of educationRubric objects. + * When set, the grading rubric attached to the assignment. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/me/rubrics/item/EducationRubricItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/me/rubrics/item/EducationRubricItemRequestBuilder.java index 64e6692f411..fbf268f3299 100644 --- a/src/main/java/com/microsoft/graph/generated/education/me/rubrics/item/EducationRubricItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/me/rubrics/item/EducationRubricItemRequestBuilder.java @@ -37,18 +37,16 @@ public EducationRubricItemRequestBuilder(@jakarta.annotation.Nonnull final Strin super(requestAdapter, "{+baseurl}/education/me/rubrics/{educationRubric%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an educationRubric object. Only teachers can perform this operation. + * Delete navigation property rubrics for education * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an educationRubric object. Only teachers can perform this operation. + * Delete navigation property rubrics for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of an educationRubric object. Only teachers and students can perform this operation. + * When set, the grading rubric attached to the assignment. * @return a {@link EducationRubric} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationRubric get() { return get(null); } /** - * Retrieve the properties and relationships of an educationRubric object. Only teachers and students can perform this operation. + * When set, the grading rubric attached to the assignment. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationRubric} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationRubric get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public EducationRubric get(@jakarta.annotation.Nullable final java.util.function return this.requestAdapter.send(requestInfo, errorMapping, EducationRubric::createFromDiscriminatorValue); } /** - * Update the properties of an educationRubric object. Only teachers can perform this operation. Updating a rubric attached to an assignment (PATCH /education/classes/{class-id}/assignments/{assignment-id}/rubric) is only possible before the assignment is published, and what is updated is actually the original rubric that exists under /education/users/{id}/rubrics. After the assignment is published, an immutable copy of the rubric is made that is attached to that specific assignment. That rubric can be retrieved using GET /education/classes/{class-id}/assignments/{assignment-id}/rubric, but it cannot be updated. + * Update the navigation property rubrics in education * @param body The request body * @return a {@link EducationRubric} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationRubric patch(@jakarta.annotation.Nonnull final EducationRubric body) { return patch(body, null); } /** - * Update the properties of an educationRubric object. Only teachers can perform this operation. Updating a rubric attached to an assignment (PATCH /education/classes/{class-id}/assignments/{assignment-id}/rubric) is only possible before the assignment is published, and what is updated is actually the original rubric that exists under /education/users/{id}/rubrics. After the assignment is published, an immutable copy of the rubric is made that is attached to that specific assignment. That rubric can be retrieved using GET /education/classes/{class-id}/assignments/{assignment-id}/rubric, but it cannot be updated. + * Update the navigation property rubrics in education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationRubric} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationRubric patch(@jakarta.annotation.Nonnull final EducationRubric body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public EducationRubric patch(@jakarta.annotation.Nonnull final EducationRubric b return this.requestAdapter.send(requestInfo, errorMapping, EducationRubric::createFromDiscriminatorValue); } /** - * Delete an educationRubric object. Only teachers can perform this operation. + * Delete navigation property rubrics for education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an educationRubric object. Only teachers can perform this operation. + * Delete navigation property rubrics for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of an educationRubric object. Only teachers and students can perform this operation. + * When set, the grading rubric attached to the assignment. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of an educationRubric object. Only teachers and students can perform this operation. + * When set, the grading rubric attached to the assignment. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an educationRubric object. Only teachers can perform this operation. Updating a rubric attached to an assignment (PATCH /education/classes/{class-id}/assignments/{assignment-id}/rubric) is only possible before the assignment is published, and what is updated is actually the original rubric that exists under /education/users/{id}/rubrics. After the assignment is published, an immutable copy of the rubric is made that is attached to that specific assignment. That rubric can be retrieved using GET /education/classes/{class-id}/assignments/{assignment-id}/rubric, but it cannot be updated. + * Update the navigation property rubrics in education * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an educationRubric object. Only teachers can perform this operation. Updating a rubric attached to an assignment (PATCH /education/classes/{class-id}/assignments/{assignment-id}/rubric) is only possible before the assignment is published, and what is updated is actually the original rubric that exists under /education/users/{id}/rubrics. After the assignment is published, an immutable copy of the rubric is made that is attached to that specific assignment. That rubric can be retrieved using GET /education/classes/{class-id}/assignments/{assignment-id}/rubric, but it cannot be updated. + * Update the navigation property rubrics in education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public EducationRubricItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fin public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of an educationRubric object. Only teachers and students can perform this operation. + * When set, the grading rubric attached to the assignment. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/me/schools/SchoolsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/me/schools/SchoolsRequestBuilder.java index 2bb0db851b9..5e7844a868a 100644 --- a/src/main/java/com/microsoft/graph/generated/education/me/schools/SchoolsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/me/schools/SchoolsRequestBuilder.java @@ -59,21 +59,19 @@ public SchoolsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/education/me/schools{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of schools for a user. + * Schools to which the user belongs. Nullable. * @return a {@link EducationSchoolCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSchoolCollectionResponse get() { return get(null); } /** - * Retrieve a list of schools for a user. + * Schools to which the user belongs. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationSchoolCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSchoolCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public EducationSchoolCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, EducationSchoolCollectionResponse::createFromDiscriminatorValue); } /** - * Retrieve a list of schools for a user. + * Schools to which the user belongs. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of schools for a user. + * Schools to which the user belongs. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public SchoolsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new SchoolsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of schools for a user. + * Schools to which the user belongs. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/me/taughtclasses/TaughtClassesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/me/taughtclasses/TaughtClassesRequestBuilder.java index e9c09bc2f4b..96662ed6fe5 100644 --- a/src/main/java/com/microsoft/graph/generated/education/me/taughtclasses/TaughtClassesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/me/taughtclasses/TaughtClassesRequestBuilder.java @@ -59,21 +59,19 @@ public TaughtClassesRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/education/me/taughtClasses{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the educationClass resources owned by an educationUser. + * Classes for which the user is a teacher. * @return a {@link EducationClassCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationClassCollectionResponse get() { return get(null); } /** - * Get the educationClass resources owned by an educationUser. + * Classes for which the user is a teacher. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationClassCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationClassCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public EducationClassCollectionResponse get(@jakarta.annotation.Nullable final j return this.requestAdapter.send(requestInfo, errorMapping, EducationClassCollectionResponse::createFromDiscriminatorValue); } /** - * Get the educationClass resources owned by an educationUser. + * Classes for which the user is a teacher. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the educationClass resources owned by an educationUser. + * Classes for which the user is a teacher. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public TaughtClassesRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new TaughtClassesRequestBuilder(rawUrl, requestAdapter); } /** - * Get the educationClass resources owned by an educationUser. + * Classes for which the user is a teacher. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/me/user/UserRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/me/user/UserRequestBuilder.java index 587b5a9ebe5..0e37e3e0841 100644 --- a/src/main/java/com/microsoft/graph/generated/education/me/user/UserRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/me/user/UserRequestBuilder.java @@ -55,21 +55,19 @@ public UserRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka super(requestAdapter, "{+baseurl}/education/me/user{?%24expand,%24select}", rawUrl); } /** - * Retrieve the simple directory user that corresponds to this educationUser. + * The directory user that corresponds to this user. * @return a {@link User} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public User get() { return get(null); } /** - * Retrieve the simple directory user that corresponds to this educationUser. + * The directory user that corresponds to this user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link User} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public User get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,7 +77,7 @@ public User get(@jakarta.annotation.Nullable final java.util.function.ConsumerFind more info here */ @jakarta.annotation.Nullable public EducationSchoolCollectionResponse get() { return get(null); } /** - * Get a list of the educationSchool objects and their properties. + * Get schools from education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationSchoolCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSchoolCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public EducationSchoolCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, EducationSchoolCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new educationSchool object. + * Create new navigation property to schools for education * @param body The request body * @return a {@link EducationSchool} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSchool post(@jakarta.annotation.Nonnull final EducationSchool body) { return post(body, null); } /** - * Create a new educationSchool object. + * Create new navigation property to schools for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationSchool} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSchool post(@jakarta.annotation.Nonnull final EducationSchool body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public EducationSchool post(@jakarta.annotation.Nonnull final EducationSchool bo return this.requestAdapter.send(requestInfo, errorMapping, EducationSchool::createFromDiscriminatorValue); } /** - * Get a list of the educationSchool objects and their properties. + * Get schools from education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the educationSchool objects and their properties. + * Get schools from education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new educationSchool object. + * Create new navigation property to schools for education * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new educationSchool object. + * Create new navigation property to schools for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public SchoolsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new SchoolsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the educationSchool objects and their properties. + * Get schools from education */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/schools/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/schools/delta/DeltaRequestBuilder.java index 398daadd8da..2b467d574f4 100644 --- a/src/main/java/com/microsoft/graph/generated/education/schools/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/schools/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/education/schools/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Get newly created or updated schools without having to perform a full read of the entire school collection. See Use delta query for details. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Get newly created or updated schools without having to perform a full read of the entire school collection. See Use delta query for details. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Get newly created or updated schools without having to perform a full read of the entire school collection. See Use delta query for details. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Get newly created or updated schools without having to perform a full read of the entire school collection. See Use delta query for details. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Get newly created or updated schools without having to perform a full read of the entire school collection. See Use delta query for details. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/schools/item/EducationSchoolItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/schools/item/EducationSchoolItemRequestBuilder.java index 6341ebe6d68..1b90ed58e99 100644 --- a/src/main/java/com/microsoft/graph/generated/education/schools/item/EducationSchoolItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/schools/item/EducationSchoolItemRequestBuilder.java @@ -64,18 +64,16 @@ public EducationSchoolItemRequestBuilder(@jakarta.annotation.Nonnull final Strin super(requestAdapter, "{+baseurl}/education/schools/{educationSchool%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a school. + * Delete navigation property schools for education * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a school. + * Delete navigation property schools for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -84,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of an educationSchool object. + * Get schools from education * @return a {@link EducationSchool} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSchool get() { return get(null); } /** - * Read the properties and relationships of an educationSchool object. + * Get schools from education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationSchool} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSchool get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,23 +104,21 @@ public EducationSchool get(@jakarta.annotation.Nullable final java.util.function return this.requestAdapter.send(requestInfo, errorMapping, EducationSchool::createFromDiscriminatorValue); } /** - * Update the properties of an educationSchool object. + * Update the navigation property schools in education * @param body The request body * @return a {@link EducationSchool} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSchool patch(@jakarta.annotation.Nonnull final EducationSchool body) { return patch(body, null); } /** - * Update the properties of an educationSchool object. + * Update the navigation property schools in education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationSchool} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSchool patch(@jakarta.annotation.Nonnull final EducationSchool body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +129,7 @@ public EducationSchool patch(@jakarta.annotation.Nonnull final EducationSchool b return this.requestAdapter.send(requestInfo, errorMapping, EducationSchool::createFromDiscriminatorValue); } /** - * Delete a school. + * Delete navigation property schools for education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +137,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a school. + * Delete navigation property schools for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of an educationSchool object. + * Get schools from education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -163,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of an educationSchool object. + * Get schools from education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -175,7 +169,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an educationSchool object. + * Update the navigation property schools in education * @param body The request body * @return a {@link RequestInformation} */ @@ -184,7 +178,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an educationSchool object. + * Update the navigation property schools in education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -215,7 +209,7 @@ public EducationSchoolItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fin public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of an educationSchool object. + * Get schools from education */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/schools/item/administrativeunit/AdministrativeUnitRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/schools/item/administrativeunit/AdministrativeUnitRequestBuilder.java index c7533121dc9..caa5ca26931 100644 --- a/src/main/java/com/microsoft/graph/generated/education/schools/item/administrativeunit/AdministrativeUnitRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/schools/item/administrativeunit/AdministrativeUnitRequestBuilder.java @@ -37,21 +37,19 @@ public AdministrativeUnitRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/education/schools/{educationSchool%2Did}/administrativeUnit{?%24expand,%24select}", rawUrl); } /** - * Get a list of administrativeUnits associated with an educationSchool object. + * The underlying administrativeUnit for this school. * @return a {@link AdministrativeUnit} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AdministrativeUnit get() { return get(null); } /** - * Get a list of administrativeUnits associated with an educationSchool object. + * The underlying administrativeUnit for this school. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AdministrativeUnit} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AdministrativeUnit get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -86,7 +84,7 @@ public AdministrativeUnit patch(@jakarta.annotation.Nonnull final Administrative return this.requestAdapter.send(requestInfo, errorMapping, AdministrativeUnit::createFromDiscriminatorValue); } /** - * Get a list of administrativeUnits associated with an educationSchool object. + * The underlying administrativeUnit for this school. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -94,7 +92,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of administrativeUnits associated with an educationSchool object. + * The underlying administrativeUnit for this school. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +138,7 @@ public AdministrativeUnitRequestBuilder withUrl(@jakarta.annotation.Nonnull fina return new AdministrativeUnitRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of administrativeUnits associated with an educationSchool object. + * The underlying administrativeUnit for this school. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/schools/item/classes/ClassesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/schools/item/classes/ClassesRequestBuilder.java index 1280842e0c8..dab7de4aac0 100644 --- a/src/main/java/com/microsoft/graph/generated/education/schools/item/classes/ClassesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/schools/item/classes/ClassesRequestBuilder.java @@ -68,21 +68,19 @@ public ClassesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/education/schools/{educationSchool%2Did}/classes{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the educationClass resources owned by an educationSchool. + * Classes taught at the school. Nullable. * @return a {@link EducationClassCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationClassCollectionResponse get() { return get(null); } /** - * Get the educationClass resources owned by an educationSchool. + * Classes taught at the school. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationClassCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationClassCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -92,7 +90,7 @@ public EducationClassCollectionResponse get(@jakarta.annotation.Nullable final j return this.requestAdapter.send(requestInfo, errorMapping, EducationClassCollectionResponse::createFromDiscriminatorValue); } /** - * Get the educationClass resources owned by an educationSchool. + * Classes taught at the school. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -100,7 +98,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the educationClass resources owned by an educationSchool. + * Classes taught at the school. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -122,7 +120,7 @@ public ClassesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new ClassesRequestBuilder(rawUrl, requestAdapter); } /** - * Get the educationClass resources owned by an educationSchool. + * Classes taught at the school. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/schools/item/classes/item/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/schools/item/classes/item/ref/RefRequestBuilder.java index 4e273cda51d..20d1e4c45d6 100644 --- a/src/main/java/com/microsoft/graph/generated/education/schools/item/classes/item/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/schools/item/classes/item/ref/RefRequestBuilder.java @@ -35,18 +35,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/education/schools/{educationSchool%2Did}/classes/{educationClass%2Did}/$ref", rawUrl); } /** - * Delete a class from a school. + * Delete ref of navigation property classes for education * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a class from a school. + * Delete ref of navigation property classes for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -55,7 +53,7 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Delete a class from a school. + * Delete ref of navigation property classes for education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -63,7 +61,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a class from a school. + * Delete ref of navigation property classes for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/education/schools/item/classes/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/schools/item/classes/ref/RefRequestBuilder.java index d5aff330d2c..08f69261c9d 100644 --- a/src/main/java/com/microsoft/graph/generated/education/schools/item/classes/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/schools/item/classes/ref/RefRequestBuilder.java @@ -38,18 +38,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/education/schools/{educationSchool%2Did}/classes/$ref?@id={%40id}{&%24count,%24filter,%24orderby,%24search,%24skip,%24top}", rawUrl); } /** - * Delete a class from a school. + * Delete ref of navigation property classes for education * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a class from a school. + * Delete ref of navigation property classes for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -58,21 +56,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the educationClass resources owned by an educationSchool. + * Classes taught at the school. Nullable. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get() { return get(null); } /** - * Get the educationClass resources owned by an educationSchool. + * Classes taught at the school. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -82,20 +78,18 @@ public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util return this.requestAdapter.send(requestInfo, errorMapping, StringCollectionResponse::createFromDiscriminatorValue); } /** - * Add a class to a school. + * Create new navigation property ref to classes for education * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body) { post(body, null); } /** - * Add a class to a school. + * Create new navigation property ref to classes for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { Objects.requireNonNull(body); @@ -105,7 +99,7 @@ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakart this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Delete a class from a school. + * Delete ref of navigation property classes for education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -113,7 +107,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a class from a school. + * Delete ref of navigation property classes for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the educationClass resources owned by an educationSchool. + * Classes taught at the school. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -133,7 +127,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the educationClass resources owned by an educationSchool. + * Classes taught at the school. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add a class to a school. + * Create new navigation property ref to classes for education * @param body The request body * @return a {@link RequestInformation} */ @@ -154,7 +148,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add a class to a school. + * Create new navigation property ref to classes for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -179,7 +173,7 @@ public RefRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl return new RefRequestBuilder(rawUrl, requestAdapter); } /** - * Delete a class from a school. + * Delete ref of navigation property classes for education */ @jakarta.annotation.Generated("com.microsoft.kiota") public class DeleteQueryParameters implements QueryParameters { @@ -211,7 +205,7 @@ public class DeleteRequestConfiguration extends BaseRequestConfiguration { public DeleteQueryParameters queryParameters = new DeleteQueryParameters(); } /** - * Get the educationClass resources owned by an educationSchool. + * Classes taught at the school. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/schools/item/users/UsersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/schools/item/users/UsersRequestBuilder.java index a99b78c46f3..bca1c522e1f 100644 --- a/src/main/java/com/microsoft/graph/generated/education/schools/item/users/UsersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/schools/item/users/UsersRequestBuilder.java @@ -68,21 +68,19 @@ public UsersRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/education/schools/{educationSchool%2Did}/users{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the educationUser resources associated with an educationSchool. + * Users in the school. Nullable. * @return a {@link EducationUserCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationUserCollectionResponse get() { return get(null); } /** - * Get the educationUser resources associated with an educationSchool. + * Users in the school. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationUserCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationUserCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -92,7 +90,7 @@ public EducationUserCollectionResponse get(@jakarta.annotation.Nullable final ja return this.requestAdapter.send(requestInfo, errorMapping, EducationUserCollectionResponse::createFromDiscriminatorValue); } /** - * Get the educationUser resources associated with an educationSchool. + * Users in the school. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -100,7 +98,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the educationUser resources associated with an educationSchool. + * Users in the school. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -122,7 +120,7 @@ public UsersRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new UsersRequestBuilder(rawUrl, requestAdapter); } /** - * Get the educationUser resources associated with an educationSchool. + * Users in the school. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/schools/item/users/item/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/schools/item/users/item/ref/RefRequestBuilder.java index 088fdee1ff2..eb85bb84d5f 100644 --- a/src/main/java/com/microsoft/graph/generated/education/schools/item/users/item/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/schools/item/users/item/ref/RefRequestBuilder.java @@ -35,18 +35,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/education/schools/{educationSchool%2Did}/users/{educationUser%2Did}/$ref", rawUrl); } /** - * Delete a user from a school. + * Delete ref of navigation property users for education * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a user from a school. + * Delete ref of navigation property users for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -55,7 +53,7 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Delete a user from a school. + * Delete ref of navigation property users for education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -63,7 +61,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a user from a school. + * Delete ref of navigation property users for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/education/schools/item/users/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/schools/item/users/ref/RefRequestBuilder.java index b96099f77c4..c2db8f397ea 100644 --- a/src/main/java/com/microsoft/graph/generated/education/schools/item/users/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/schools/item/users/ref/RefRequestBuilder.java @@ -38,18 +38,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/education/schools/{educationSchool%2Did}/users/$ref?@id={%40id}{&%24count,%24filter,%24orderby,%24search,%24skip,%24top}", rawUrl); } /** - * Delete a user from a school. + * Delete ref of navigation property users for education * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a user from a school. + * Delete ref of navigation property users for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -58,21 +56,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the educationUser resources associated with an educationSchool. + * Users in the school. Nullable. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get() { return get(null); } /** - * Get the educationUser resources associated with an educationSchool. + * Users in the school. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -82,20 +78,18 @@ public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util return this.requestAdapter.send(requestInfo, errorMapping, StringCollectionResponse::createFromDiscriminatorValue); } /** - * Add a user to a school. + * Create new navigation property ref to users for education * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body) { post(body, null); } /** - * Add a user to a school. + * Create new navigation property ref to users for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { Objects.requireNonNull(body); @@ -105,7 +99,7 @@ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakart this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Delete a user from a school. + * Delete ref of navigation property users for education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -113,7 +107,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a user from a school. + * Delete ref of navigation property users for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the educationUser resources associated with an educationSchool. + * Users in the school. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -133,7 +127,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the educationUser resources associated with an educationSchool. + * Users in the school. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add a user to a school. + * Create new navigation property ref to users for education * @param body The request body * @return a {@link RequestInformation} */ @@ -154,7 +148,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add a user to a school. + * Create new navigation property ref to users for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -179,7 +173,7 @@ public RefRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl return new RefRequestBuilder(rawUrl, requestAdapter); } /** - * Delete a user from a school. + * Delete ref of navigation property users for education */ @jakarta.annotation.Generated("com.microsoft.kiota") public class DeleteQueryParameters implements QueryParameters { @@ -211,7 +205,7 @@ public class DeleteRequestConfiguration extends BaseRequestConfiguration { public DeleteQueryParameters queryParameters = new DeleteQueryParameters(); } /** - * Get the educationUser resources associated with an educationSchool. + * Users in the school. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/users/UsersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/users/UsersRequestBuilder.java index 33caac983ae..44163b65e52 100644 --- a/src/main/java/com/microsoft/graph/generated/education/users/UsersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/users/UsersRequestBuilder.java @@ -69,21 +69,19 @@ public UsersRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/education/users{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the educationUser objects and their properties. + * Get users from education * @return a {@link EducationUserCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationUserCollectionResponse get() { return get(null); } /** - * Get a list of the educationUser objects and their properties. + * Get users from education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationUserCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationUserCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public EducationUserCollectionResponse get(@jakarta.annotation.Nullable final ja return this.requestAdapter.send(requestInfo, errorMapping, EducationUserCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new educationUser object. + * Create new navigation property to users for education * @param body The request body * @return a {@link EducationUser} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationUser post(@jakarta.annotation.Nonnull final EducationUser body) { return post(body, null); } /** - * Create a new educationUser object. + * Create new navigation property to users for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationUser} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationUser post(@jakarta.annotation.Nonnull final EducationUser body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public EducationUser post(@jakarta.annotation.Nonnull final EducationUser body, return this.requestAdapter.send(requestInfo, errorMapping, EducationUser::createFromDiscriminatorValue); } /** - * Get a list of the educationUser objects and their properties. + * Get users from education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the educationUser objects and their properties. + * Get users from education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new educationUser object. + * Create new navigation property to users for education * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new educationUser object. + * Create new navigation property to users for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public UsersRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new UsersRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the educationUser objects and their properties. + * Get users from education */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/users/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/users/delta/DeltaRequestBuilder.java index 777d60422d9..aa91927c5f1 100644 --- a/src/main/java/com/microsoft/graph/generated/education/users/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/users/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/education/users/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Get newly created or updated educationUser without having to perform a full read of the entire collection. See Use delta query for details. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Get newly created or updated educationUser without having to perform a full read of the entire collection. See Use delta query for details. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Get newly created or updated educationUser without having to perform a full read of the entire collection. See Use delta query for details. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Get newly created or updated educationUser without having to perform a full read of the entire collection. See Use delta query for details. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Get newly created or updated educationUser without having to perform a full read of the entire collection. See Use delta query for details. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/users/item/EducationUserItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/users/item/EducationUserItemRequestBuilder.java index 22008031bbd..796ec7ce75e 100644 --- a/src/main/java/com/microsoft/graph/generated/education/users/item/EducationUserItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/users/item/EducationUserItemRequestBuilder.java @@ -91,18 +91,16 @@ public EducationUserItemRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/education/users/{educationUser%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a user. + * Delete navigation property users for education * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a user. + * Delete navigation property users for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -111,21 +109,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of an educationUser object. + * Get users from education * @return a {@link EducationUser} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationUser get() { return get(null); } /** - * Read the properties and relationships of an educationUser object. + * Get users from education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationUser} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationUser get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,23 +131,21 @@ public EducationUser get(@jakarta.annotation.Nullable final java.util.function.C return this.requestAdapter.send(requestInfo, errorMapping, EducationUser::createFromDiscriminatorValue); } /** - * Update the properties of an educationUser object. + * Update the navigation property users in education * @param body The request body * @return a {@link EducationUser} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationUser patch(@jakarta.annotation.Nonnull final EducationUser body) { return patch(body, null); } /** - * Update the properties of an educationUser object. + * Update the navigation property users in education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationUser} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationUser patch(@jakarta.annotation.Nonnull final EducationUser body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -162,7 +156,7 @@ public EducationUser patch(@jakarta.annotation.Nonnull final EducationUser body, return this.requestAdapter.send(requestInfo, errorMapping, EducationUser::createFromDiscriminatorValue); } /** - * Delete a user. + * Delete navigation property users for education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -170,7 +164,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a user. + * Delete navigation property users for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -182,7 +176,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of an educationUser object. + * Get users from education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -190,7 +184,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of an educationUser object. + * Get users from education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -202,7 +196,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an educationUser object. + * Update the navigation property users in education * @param body The request body * @return a {@link RequestInformation} */ @@ -211,7 +205,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an educationUser object. + * Update the navigation property users in education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -242,7 +236,7 @@ public EducationUserItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of an educationUser object. + * Get users from education */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/AssignmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/AssignmentsRequestBuilder.java index 7a0505f854c..0e1f983c1aa 100644 --- a/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/AssignmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/AssignmentsRequestBuilder.java @@ -69,21 +69,19 @@ public AssignmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/education/users/{educationUser%2Did}/assignments{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Returns a list of educationAssignment assigned to a educationUser for all classes. Only teachers, students, and applications with application permissions can perform this operation. This method allows a caller to find all the assignments belonging to a student or a teacher in a single call rather than having to request assignments from each class. The assignment list contains what is needed to get the detailed information for the assignment from within the class namespace. Use the methods defined for the assignment for all other operations. + * Assignments belonging to the user. * @return a {@link EducationAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationAssignmentCollectionResponse get() { return get(null); } /** - * Returns a list of educationAssignment assigned to a educationUser for all classes. Only teachers, students, and applications with application permissions can perform this operation. This method allows a caller to find all the assignments belonging to a student or a teacher in a single call rather than having to request assignments from each class. The assignment list contains what is needed to get the detailed information for the assignment from within the class namespace. Use the methods defined for the assignment for all other operations. + * Assignments belonging to the user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationAssignmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -118,7 +116,7 @@ public EducationAssignment post(@jakarta.annotation.Nonnull final EducationAssig return this.requestAdapter.send(requestInfo, errorMapping, EducationAssignment::createFromDiscriminatorValue); } /** - * Returns a list of educationAssignment assigned to a educationUser for all classes. Only teachers, students, and applications with application permissions can perform this operation. This method allows a caller to find all the assignments belonging to a student or a teacher in a single call rather than having to request assignments from each class. The assignment list contains what is needed to get the detailed information for the assignment from within the class namespace. Use the methods defined for the assignment for all other operations. + * Assignments belonging to the user. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -126,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Returns a list of educationAssignment assigned to a educationUser for all classes. Only teachers, students, and applications with application permissions can perform this operation. This method allows a caller to find all the assignments belonging to a student or a teacher in a single call rather than having to request assignments from each class. The assignment list contains what is needed to get the detailed information for the assignment from within the class namespace. Use the methods defined for the assignment for all other operations. + * Assignments belonging to the user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -172,7 +170,7 @@ public AssignmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AssignmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Returns a list of educationAssignment assigned to a educationUser for all classes. Only teachers, students, and applications with application permissions can perform this operation. This method allows a caller to find all the assignments belonging to a student or a teacher in a single call rather than having to request assignments from each class. The assignment list contains what is needed to get the detailed information for the assignment from within the class namespace. Use the methods defined for the assignment for all other operations. + * Assignments belonging to the user. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/delta/DeltaRequestBuilder.java index 1f75ce67a75..7f497e91d82 100644 --- a/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/education/users/{educationUser%2Did}/assignments/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Get a list of newly-created or updated assignments without reading the whole collection. A teacher or an application running with application permissions can see all assignment objects for the class. Students can only see assignments that are assigned to them. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Get a list of newly-created or updated assignments without reading the whole collection. A teacher or an application running with application permissions can see all assignment objects for the class. Students can only see assignments that are assigned to them. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Get a list of newly-created or updated assignments without reading the whole collection. A teacher or an application running with application permissions can see all assignment objects for the class. Students can only see assignments that are assigned to them. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Get a list of newly-created or updated assignments without reading the whole collection. A teacher or an application running with application permissions can see all assignment objects for the class. Students can only see assignments that are assigned to them. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Get a list of newly-created or updated assignments without reading the whole collection. A teacher or an application running with application permissions can see all assignment objects for the class. Students can only see assignments that are assigned to them. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/categories/CategoriesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/categories/CategoriesRequestBuilder.java index 0a17d1a0730..bbc4ee9519d 100644 --- a/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/categories/CategoriesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/categories/CategoriesRequestBuilder.java @@ -78,21 +78,19 @@ public CategoriesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/education/users/{educationUser%2Did}/assignments/{educationAssignment%2Did}/categories{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List all the categories associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * When set, enables users to easily find assignments of a given type. Read-only. Nullable. * @return a {@link EducationCategoryCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationCategoryCollectionResponse get() { return get(null); } /** - * List all the categories associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * When set, enables users to easily find assignments of a given type. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationCategoryCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationCategoryCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -102,23 +100,21 @@ public EducationCategoryCollectionResponse get(@jakarta.annotation.Nullable fina return this.requestAdapter.send(requestInfo, errorMapping, EducationCategoryCollectionResponse::createFromDiscriminatorValue); } /** - * Add one or more existing educationCategory objects to the specified educationAssignment. Only teachers can perform this operation. + * Create new navigation property to categories for education * @param body The request body * @return a {@link EducationCategory} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationCategory post(@jakarta.annotation.Nonnull final EducationCategory body) { return post(body, null); } /** - * Add one or more existing educationCategory objects to the specified educationAssignment. Only teachers can perform this operation. + * Create new navigation property to categories for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationCategory} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationCategory post(@jakarta.annotation.Nonnull final EducationCategory body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -129,7 +125,7 @@ public EducationCategory post(@jakarta.annotation.Nonnull final EducationCategor return this.requestAdapter.send(requestInfo, errorMapping, EducationCategory::createFromDiscriminatorValue); } /** - * List all the categories associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * When set, enables users to easily find assignments of a given type. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -137,7 +133,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List all the categories associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * When set, enables users to easily find assignments of a given type. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add one or more existing educationCategory objects to the specified educationAssignment. Only teachers can perform this operation. + * Create new navigation property to categories for education * @param body The request body * @return a {@link RequestInformation} */ @@ -158,7 +154,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add one or more existing educationCategory objects to the specified educationAssignment. Only teachers can perform this operation. + * Create new navigation property to categories for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -183,7 +179,7 @@ public CategoriesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new CategoriesRequestBuilder(rawUrl, requestAdapter); } /** - * List all the categories associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * When set, enables users to easily find assignments of a given type. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/categories/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/categories/delta/DeltaRequestBuilder.java index 4299f49f6bb..5facdc984fa 100644 --- a/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/categories/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/categories/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/education/users/{educationUser%2Did}/assignments/{educationAssignment%2Did}/categories/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Get a list of newly created or updated educationCategory objects without having to perform a full read of the collection. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Get a list of newly created or updated educationCategory objects without having to perform a full read of the collection. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Get a list of newly created or updated educationCategory objects without having to perform a full read of the collection. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Get a list of newly created or updated educationCategory objects without having to perform a full read of the collection. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Get a list of newly created or updated educationCategory objects without having to perform a full read of the collection. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/categories/item/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/categories/item/ref/RefRequestBuilder.java index d082b3a21f7..47827ce4594 100644 --- a/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/categories/item/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/categories/item/ref/RefRequestBuilder.java @@ -35,18 +35,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/education/users/{educationUser%2Did}/assignments/{educationAssignment%2Did}/categories/{educationCategory%2Did}/$ref", rawUrl); } /** - * Remove an educationCategory from an educationAssignment. Only teachers can perform this operation. + * Delete ref of navigation property categories for education * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove an educationCategory from an educationAssignment. Only teachers can perform this operation. + * Delete ref of navigation property categories for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -55,7 +53,7 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove an educationCategory from an educationAssignment. Only teachers can perform this operation. + * Delete ref of navigation property categories for education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -63,7 +61,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove an educationCategory from an educationAssignment. Only teachers can perform this operation. + * Delete ref of navigation property categories for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/categories/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/categories/ref/RefRequestBuilder.java index 3f0bcff4831..03d57b5a851 100644 --- a/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/categories/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/categories/ref/RefRequestBuilder.java @@ -38,18 +38,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/education/users/{educationUser%2Did}/assignments/{educationAssignment%2Did}/categories/$ref?@id={%40id}{&%24count,%24filter,%24orderby,%24search,%24skip,%24top}", rawUrl); } /** - * Remove an educationCategory from an educationAssignment. Only teachers can perform this operation. + * Delete ref of navigation property categories for education * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove an educationCategory from an educationAssignment. Only teachers can perform this operation. + * Delete ref of navigation property categories for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -58,21 +56,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * List all the categories associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * When set, enables users to easily find assignments of a given type. Read-only. Nullable. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get() { return get(null); } /** - * List all the categories associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * When set, enables users to easily find assignments of a given type. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -82,20 +78,18 @@ public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util return this.requestAdapter.send(requestInfo, errorMapping, StringCollectionResponse::createFromDiscriminatorValue); } /** - * Add one or more existing educationCategory objects to the specified educationAssignment. Only teachers can perform this operation. + * Create new navigation property ref to categories for education * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body) { post(body, null); } /** - * Add one or more existing educationCategory objects to the specified educationAssignment. Only teachers can perform this operation. + * Create new navigation property ref to categories for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { Objects.requireNonNull(body); @@ -105,7 +99,7 @@ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakart this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove an educationCategory from an educationAssignment. Only teachers can perform this operation. + * Delete ref of navigation property categories for education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -113,7 +107,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove an educationCategory from an educationAssignment. Only teachers can perform this operation. + * Delete ref of navigation property categories for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * List all the categories associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * When set, enables users to easily find assignments of a given type. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -133,7 +127,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List all the categories associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * When set, enables users to easily find assignments of a given type. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add one or more existing educationCategory objects to the specified educationAssignment. Only teachers can perform this operation. + * Create new navigation property ref to categories for education * @param body The request body * @return a {@link RequestInformation} */ @@ -154,7 +148,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add one or more existing educationCategory objects to the specified educationAssignment. Only teachers can perform this operation. + * Create new navigation property ref to categories for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -179,7 +173,7 @@ public RefRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl return new RefRequestBuilder(rawUrl, requestAdapter); } /** - * Remove an educationCategory from an educationAssignment. Only teachers can perform this operation. + * Delete ref of navigation property categories for education */ @jakarta.annotation.Generated("com.microsoft.kiota") public class DeleteQueryParameters implements QueryParameters { @@ -211,7 +205,7 @@ public class DeleteRequestConfiguration extends BaseRequestConfiguration { public DeleteQueryParameters queryParameters = new DeleteQueryParameters(); } /** - * List all the categories associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * When set, enables users to easily find assignments of a given type. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/resources/ResourcesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/resources/ResourcesRequestBuilder.java index 8ce64160509..b34ba9073cf 100644 --- a/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/resources/ResourcesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/resources/ResourcesRequestBuilder.java @@ -60,21 +60,19 @@ public ResourcesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/education/users/{educationUser%2Did}/assignments/{educationAssignment%2Did}/resources{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get all the educationAssignmentResource objects associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. * @return a {@link EducationAssignmentResourceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationAssignmentResourceCollectionResponse get() { return get(null); } /** - * Get all the educationAssignmentResource objects associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationAssignmentResourceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationAssignmentResourceCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public EducationAssignmentResourceCollectionResponse get(@jakarta.annotation.Nul return this.requestAdapter.send(requestInfo, errorMapping, EducationAssignmentResourceCollectionResponse::createFromDiscriminatorValue); } /** - * Create an assignment resource. Only teachers can perform this operation. You can create the following types of assignment resources: Every resource has an @odata.type property to indicate which type of resource is being created. + * Create new navigation property to resources for education * @param body The request body * @return a {@link EducationAssignmentResource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationAssignmentResource post(@jakarta.annotation.Nonnull final EducationAssignmentResource body) { return post(body, null); } /** - * Create an assignment resource. Only teachers can perform this operation. You can create the following types of assignment resources: Every resource has an @odata.type property to indicate which type of resource is being created. + * Create new navigation property to resources for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationAssignmentResource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationAssignmentResource post(@jakarta.annotation.Nonnull final EducationAssignmentResource body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public EducationAssignmentResource post(@jakarta.annotation.Nonnull final Educat return this.requestAdapter.send(requestInfo, errorMapping, EducationAssignmentResource::createFromDiscriminatorValue); } /** - * Get all the educationAssignmentResource objects associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get all the educationAssignmentResource objects associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an assignment resource. Only teachers can perform this operation. You can create the following types of assignment resources: Every resource has an @odata.type property to indicate which type of resource is being created. + * Create new navigation property to resources for education * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an assignment resource. Only teachers can perform this operation. You can create the following types of assignment resources: Every resource has an @odata.type property to indicate which type of resource is being created. + * Create new navigation property to resources for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ResourcesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ResourcesRequestBuilder(rawUrl, requestAdapter); } /** - * Get all the educationAssignmentResource objects associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/resources/item/EducationAssignmentResourceItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/resources/item/EducationAssignmentResourceItemRequestBuilder.java index ac87cd7568c..606b9689b96 100644 --- a/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/resources/item/EducationAssignmentResourceItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/resources/item/EducationAssignmentResourceItemRequestBuilder.java @@ -37,18 +37,16 @@ public EducationAssignmentResourceItemRequestBuilder(@jakarta.annotation.Nonnull super(requestAdapter, "{+baseurl}/education/users/{educationUser%2Did}/assignments/{educationAssignment%2Did}/resources/{educationAssignmentResource%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a specific educationAssignmentResource attached to an assignment. In general, only teachers in the class can remove a resource. However, teachers can't remove resources marked as 'distributeToStudents', after the assignment has been published to students. + * Delete navigation property resources for education * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a specific educationAssignmentResource attached to an assignment. In general, only teachers in the class can remove a resource. However, teachers can't remove resources marked as 'distributeToStudents', after the assignment has been published to students. + * Delete navigation property resources for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the properties of an education assignment resource associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. * @return a {@link EducationAssignmentResource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationAssignmentResource get() { return get(null); } /** - * Get the properties of an education assignment resource associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationAssignmentResource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationAssignmentResource get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -106,7 +102,7 @@ public EducationAssignmentResource patch(@jakarta.annotation.Nonnull final Educa return this.requestAdapter.send(requestInfo, errorMapping, EducationAssignmentResource::createFromDiscriminatorValue); } /** - * Delete a specific educationAssignmentResource attached to an assignment. In general, only teachers in the class can remove a resource. However, teachers can't remove resources marked as 'distributeToStudents', after the assignment has been published to students. + * Delete navigation property resources for education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -114,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a specific educationAssignmentResource attached to an assignment. In general, only teachers in the class can remove a resource. However, teachers can't remove resources marked as 'distributeToStudents', after the assignment has been published to students. + * Delete navigation property resources for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the properties of an education assignment resource associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the properties of an education assignment resource associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public EducationAssignmentResourceItemRequestBuilder withUrl(@jakarta.annotation public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the properties of an education assignment resource associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. + * Learning objects that are associated with this assignment. Only teachers can modify this list. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/rubric/RubricRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/rubric/RubricRequestBuilder.java index 5f9753c0d2d..ca840b276b6 100644 --- a/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/rubric/RubricRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/rubric/RubricRequestBuilder.java @@ -46,18 +46,16 @@ public RubricRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/education/users/{educationUser%2Did}/assignments/{educationAssignment%2Did}/rubric{?%24expand,%24select}", rawUrl); } /** - * Remove an educationRubric from an educationAssignment. This method doesn't delete the rubric itself and can only be performed by teachers. + * Delete navigation property rubric for education * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove an educationRubric from an educationAssignment. This method doesn't delete the rubric itself and can only be performed by teachers. + * Delete navigation property rubric for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the educationRubric object attached to an educationAssignment, if one exists. Only teachers, students, and applications with application permissions can perform this operation. + * When set, the grading rubric attached to this assignment. * @return a {@link EducationRubric} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationRubric get() { return get(null); } /** - * Get the educationRubric object attached to an educationAssignment, if one exists. Only teachers, students, and applications with application permissions can perform this operation. + * When set, the grading rubric attached to this assignment. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationRubric} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationRubric get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public EducationRubric get(@jakarta.annotation.Nullable final java.util.function return this.requestAdapter.send(requestInfo, errorMapping, EducationRubric::createFromDiscriminatorValue); } /** - * Attach an existing educationRubric object to an educationAssignment. Only teachers can perform this operation. + * Update the navigation property rubric in education * @param body The request body * @return a {@link EducationRubric} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationRubric patch(@jakarta.annotation.Nonnull final EducationRubric body) { return patch(body, null); } /** - * Attach an existing educationRubric object to an educationAssignment. Only teachers can perform this operation. + * Update the navigation property rubric in education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationRubric} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationRubric patch(@jakarta.annotation.Nonnull final EducationRubric body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public EducationRubric patch(@jakarta.annotation.Nonnull final EducationRubric b return this.requestAdapter.send(requestInfo, errorMapping, EducationRubric::createFromDiscriminatorValue); } /** - * Remove an educationRubric from an educationAssignment. This method doesn't delete the rubric itself and can only be performed by teachers. + * Delete navigation property rubric for education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove an educationRubric from an educationAssignment. This method doesn't delete the rubric itself and can only be performed by teachers. + * Delete navigation property rubric for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the educationRubric object attached to an educationAssignment, if one exists. Only teachers, students, and applications with application permissions can perform this operation. + * When set, the grading rubric attached to this assignment. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the educationRubric object attached to an educationAssignment, if one exists. Only teachers, students, and applications with application permissions can perform this operation. + * When set, the grading rubric attached to this assignment. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Attach an existing educationRubric object to an educationAssignment. Only teachers can perform this operation. + * Update the navigation property rubric in education * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Attach an existing educationRubric object to an educationAssignment. Only teachers can perform this operation. + * Update the navigation property rubric in education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public RubricRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the educationRubric object attached to an educationAssignment, if one exists. Only teachers, students, and applications with application permissions can perform this operation. + * When set, the grading rubric attached to this assignment. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/rubric/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/rubric/ref/RefRequestBuilder.java index 9c43bba762f..5e367c4964b 100644 --- a/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/rubric/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/rubric/ref/RefRequestBuilder.java @@ -36,18 +36,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/education/users/{educationUser%2Did}/assignments/{educationAssignment%2Did}/rubric/$ref", rawUrl); } /** - * Remove an educationRubric from an educationAssignment. This method doesn't delete the rubric itself and can only be performed by teachers. + * Delete ref of navigation property rubric for education * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove an educationRubric from an educationAssignment. This method doesn't delete the rubric itself and can only be performed by teachers. + * Delete ref of navigation property rubric for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -56,21 +54,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the educationRubric object attached to an educationAssignment, if one exists. Only teachers, students, and applications with application permissions can perform this operation. + * When set, the grading rubric attached to this assignment. * @return a {@link String} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public String get() { return get(null); } /** - * Get the educationRubric object attached to an educationAssignment, if one exists. Only teachers, students, and applications with application permissions can perform this operation. + * When set, the grading rubric attached to this assignment. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link String} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public String get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -80,20 +76,18 @@ public String get(@jakarta.annotation.Nullable final java.util.function.Consumer return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, String.class); } /** - * Attach an existing educationRubric object to an educationAssignment. Only teachers can perform this operation. + * Update the ref of navigation property rubric in education * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void put(@jakarta.annotation.Nonnull final ReferenceUpdate body) { put(body, null); } /** - * Attach an existing educationRubric object to an educationAssignment. Only teachers can perform this operation. + * Update the ref of navigation property rubric in education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void put(@jakarta.annotation.Nonnull final ReferenceUpdate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { Objects.requireNonNull(body); @@ -103,7 +97,7 @@ public void put(@jakarta.annotation.Nonnull final ReferenceUpdate body, @jakarta this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove an educationRubric from an educationAssignment. This method doesn't delete the rubric itself and can only be performed by teachers. + * Delete ref of navigation property rubric for education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -111,7 +105,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove an educationRubric from an educationAssignment. This method doesn't delete the rubric itself and can only be performed by teachers. + * Delete ref of navigation property rubric for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -123,7 +117,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the educationRubric object attached to an educationAssignment, if one exists. Only teachers, students, and applications with application permissions can perform this operation. + * When set, the grading rubric attached to this assignment. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -131,7 +125,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the educationRubric object attached to an educationAssignment, if one exists. Only teachers, students, and applications with application permissions can perform this operation. + * When set, the grading rubric attached to this assignment. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -143,7 +137,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Attach an existing educationRubric object to an educationAssignment. Only teachers can perform this operation. + * Update the ref of navigation property rubric in education * @param body The request body * @return a {@link RequestInformation} */ @@ -152,7 +146,7 @@ public RequestInformation toPutRequestInformation(@jakarta.annotation.Nonnull fi return toPutRequestInformation(body, null); } /** - * Attach an existing educationRubric object to an educationAssignment. Only teachers can perform this operation. + * Update the ref of navigation property rubric in education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/submissions/SubmissionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/submissions/SubmissionsRequestBuilder.java index 2e235f3c09f..5228fea4fd8 100644 --- a/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/submissions/SubmissionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/submissions/SubmissionsRequestBuilder.java @@ -60,21 +60,19 @@ public SubmissionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/education/users/{educationUser%2Did}/assignments/{educationAssignment%2Did}/submissions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List all the submissions associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. A teacher or an application with application permissions can get all the submissions while a student can only get submissions that they're associated with. + * Once published, there's a submission object for each student representing their work and grade. Read-only. Nullable. * @return a {@link EducationSubmissionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSubmissionCollectionResponse get() { return get(null); } /** - * List all the submissions associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. A teacher or an application with application permissions can get all the submissions while a student can only get submissions that they're associated with. + * Once published, there's a submission object for each student representing their work and grade. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationSubmissionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSubmissionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public EducationSubmission post(@jakarta.annotation.Nonnull final EducationSubmi return this.requestAdapter.send(requestInfo, errorMapping, EducationSubmission::createFromDiscriminatorValue); } /** - * List all the submissions associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. A teacher or an application with application permissions can get all the submissions while a student can only get submissions that they're associated with. + * Once published, there's a submission object for each student representing their work and grade. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List all the submissions associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. A teacher or an application with application permissions can get all the submissions while a student can only get submissions that they're associated with. + * Once published, there's a submission object for each student representing their work and grade. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public SubmissionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new SubmissionsRequestBuilder(rawUrl, requestAdapter); } /** - * List all the submissions associated with an assignment. Only teachers, students, and applications with application permissions can perform this operation. A teacher or an application with application permissions can get all the submissions while a student can only get submissions that they're associated with. + * Once published, there's a submission object for each student representing their work and grade. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/submissions/item/EducationSubmissionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/submissions/item/EducationSubmissionItemRequestBuilder.java index 2532c22faa0..a23a76f3bee 100644 --- a/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/submissions/item/EducationSubmissionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/submissions/item/EducationSubmissionItemRequestBuilder.java @@ -127,21 +127,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a particular submission. Only teachers, students, and applications with application permissions can perform this operation. A submission object represents a student's work for an assignment. Resources associated with the submission represent this work. Only the assignedTo student can see and modify the submission. A teacher or application with application permissions has full access to all submissions. The grade and feedback from a teacher are part of the educationOutcome associated with this object. Only teachers or applications with application permissions can add or change grades and feedback. Students will not see the grade or feedback until the assignment has been released. + * Once published, there's a submission object for each student representing their work and grade. Read-only. Nullable. * @return a {@link EducationSubmission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSubmission get() { return get(null); } /** - * Retrieve a particular submission. Only teachers, students, and applications with application permissions can perform this operation. A submission object represents a student's work for an assignment. Resources associated with the submission represent this work. Only the assignedTo student can see and modify the submission. A teacher or application with application permissions has full access to all submissions. The grade and feedback from a teacher are part of the educationOutcome associated with this object. Only teachers or applications with application permissions can add or change grades and feedback. Students will not see the grade or feedback until the assignment has been released. + * Once published, there's a submission object for each student representing their work and grade. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationSubmission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSubmission get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -196,7 +194,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a particular submission. Only teachers, students, and applications with application permissions can perform this operation. A submission object represents a student's work for an assignment. Resources associated with the submission represent this work. Only the assignedTo student can see and modify the submission. A teacher or application with application permissions has full access to all submissions. The grade and feedback from a teacher are part of the educationOutcome associated with this object. Only teachers or applications with application permissions can add or change grades and feedback. Students will not see the grade or feedback until the assignment has been released. + * Once published, there's a submission object for each student representing their work and grade. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -204,7 +202,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a particular submission. Only teachers, students, and applications with application permissions can perform this operation. A submission object represents a student's work for an assignment. Resources associated with the submission represent this work. Only the assignedTo student can see and modify the submission. A teacher or application with application permissions has full access to all submissions. The grade and feedback from a teacher are part of the educationOutcome associated with this object. Only teachers or applications with application permissions can add or change grades and feedback. Students will not see the grade or feedback until the assignment has been released. + * Once published, there's a submission object for each student representing their work and grade. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -256,7 +254,7 @@ public EducationSubmissionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve a particular submission. Only teachers, students, and applications with application permissions can perform this operation. A submission object represents a student's work for an assignment. Resources associated with the submission represent this work. Only the assignedTo student can see and modify the submission. A teacher or application with application permissions has full access to all submissions. The grade and feedback from a teacher are part of the educationOutcome associated with this object. Only teachers or applications with application permissions can add or change grades and feedback. Students will not see the grade or feedback until the assignment has been released. + * Once published, there's a submission object for each student representing their work and grade. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/submissions/item/outcomes/OutcomesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/submissions/item/outcomes/OutcomesRequestBuilder.java index 44ff83aa88d..f0a5826652f 100644 --- a/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/submissions/item/outcomes/OutcomesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/submissions/item/outcomes/OutcomesRequestBuilder.java @@ -60,21 +60,19 @@ public OutcomesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/education/users/{educationUser%2Did}/assignments/{educationAssignment%2Did}/submissions/{educationSubmission%2Did}/outcomes{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of educationOutcome objects. There are four types of outcomes: educationPointsOutcome, educationFeedbackOutcome, educationRubricOutcome, and educationFeedbackResourceOutcome. Only teachers, students, and applications with application permissions can perform this operation. A submission for a credit assignment (one that has no point value and no rubric) has an educationFeedbackOutcome. (It might also return an educationPointsOutcome, but that outcome is ignored.) A submission for a points assignment (one that has a point value assigned) has both an educationFeedbackOutcome and an educationPointsOutcome. A submission for an assignment with an attached rubric, if the rubric is a credit rubric (no points), has an educationFeedbackOutcome and an educationRubricOutcome. (It might also return an educationPointsOutcome, but that outcome is ignored.) A submission for an assignment with an attached rubric, if the rubric is a points rubric, has an educationFeedbackOutcome, an educationPointsOutcome, and an educationRubricOutcome. A submission for a feedback resource has an educationFeedbackResourceOutcome. All outcome types have a regular and a published property appropriate to that type of outcome; for example, points and publishedPoints, feedback and publishedFeedback. The regular property is the most recent value updated by the teacher; the published property is the most recent value returned to the student. + * Get outcomes from education * @return a {@link EducationOutcomeCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationOutcomeCollectionResponse get() { return get(null); } /** - * Retrieve a list of educationOutcome objects. There are four types of outcomes: educationPointsOutcome, educationFeedbackOutcome, educationRubricOutcome, and educationFeedbackResourceOutcome. Only teachers, students, and applications with application permissions can perform this operation. A submission for a credit assignment (one that has no point value and no rubric) has an educationFeedbackOutcome. (It might also return an educationPointsOutcome, but that outcome is ignored.) A submission for a points assignment (one that has a point value assigned) has both an educationFeedbackOutcome and an educationPointsOutcome. A submission for an assignment with an attached rubric, if the rubric is a credit rubric (no points), has an educationFeedbackOutcome and an educationRubricOutcome. (It might also return an educationPointsOutcome, but that outcome is ignored.) A submission for an assignment with an attached rubric, if the rubric is a points rubric, has an educationFeedbackOutcome, an educationPointsOutcome, and an educationRubricOutcome. A submission for a feedback resource has an educationFeedbackResourceOutcome. All outcome types have a regular and a published property appropriate to that type of outcome; for example, points and publishedPoints, feedback and publishedFeedback. The regular property is the most recent value updated by the teacher; the published property is the most recent value returned to the student. + * Get outcomes from education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationOutcomeCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationOutcomeCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public EducationOutcomeCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, EducationOutcomeCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new feedback resource for a submission. Only a teacher can perform this operation. To create a new file-based resource, upload the file to the feedback resources folder associated with the assignment. If the file doesn't exist or isn't in that folder, the POST request will fail. + * Create new navigation property to outcomes for education * @param body The request body * @return a {@link EducationOutcome} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationOutcome post(@jakarta.annotation.Nonnull final EducationOutcome body) { return post(body, null); } /** - * Create a new feedback resource for a submission. Only a teacher can perform this operation. To create a new file-based resource, upload the file to the feedback resources folder associated with the assignment. If the file doesn't exist or isn't in that folder, the POST request will fail. + * Create new navigation property to outcomes for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationOutcome} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationOutcome post(@jakarta.annotation.Nonnull final EducationOutcome body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public EducationOutcome post(@jakarta.annotation.Nonnull final EducationOutcome return this.requestAdapter.send(requestInfo, errorMapping, EducationOutcome::createFromDiscriminatorValue); } /** - * Retrieve a list of educationOutcome objects. There are four types of outcomes: educationPointsOutcome, educationFeedbackOutcome, educationRubricOutcome, and educationFeedbackResourceOutcome. Only teachers, students, and applications with application permissions can perform this operation. A submission for a credit assignment (one that has no point value and no rubric) has an educationFeedbackOutcome. (It might also return an educationPointsOutcome, but that outcome is ignored.) A submission for a points assignment (one that has a point value assigned) has both an educationFeedbackOutcome and an educationPointsOutcome. A submission for an assignment with an attached rubric, if the rubric is a credit rubric (no points), has an educationFeedbackOutcome and an educationRubricOutcome. (It might also return an educationPointsOutcome, but that outcome is ignored.) A submission for an assignment with an attached rubric, if the rubric is a points rubric, has an educationFeedbackOutcome, an educationPointsOutcome, and an educationRubricOutcome. A submission for a feedback resource has an educationFeedbackResourceOutcome. All outcome types have a regular and a published property appropriate to that type of outcome; for example, points and publishedPoints, feedback and publishedFeedback. The regular property is the most recent value updated by the teacher; the published property is the most recent value returned to the student. + * Get outcomes from education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of educationOutcome objects. There are four types of outcomes: educationPointsOutcome, educationFeedbackOutcome, educationRubricOutcome, and educationFeedbackResourceOutcome. Only teachers, students, and applications with application permissions can perform this operation. A submission for a credit assignment (one that has no point value and no rubric) has an educationFeedbackOutcome. (It might also return an educationPointsOutcome, but that outcome is ignored.) A submission for a points assignment (one that has a point value assigned) has both an educationFeedbackOutcome and an educationPointsOutcome. A submission for an assignment with an attached rubric, if the rubric is a credit rubric (no points), has an educationFeedbackOutcome and an educationRubricOutcome. (It might also return an educationPointsOutcome, but that outcome is ignored.) A submission for an assignment with an attached rubric, if the rubric is a points rubric, has an educationFeedbackOutcome, an educationPointsOutcome, and an educationRubricOutcome. A submission for a feedback resource has an educationFeedbackResourceOutcome. All outcome types have a regular and a published property appropriate to that type of outcome; for example, points and publishedPoints, feedback and publishedFeedback. The regular property is the most recent value updated by the teacher; the published property is the most recent value returned to the student. + * Get outcomes from education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new feedback resource for a submission. Only a teacher can perform this operation. To create a new file-based resource, upload the file to the feedback resources folder associated with the assignment. If the file doesn't exist or isn't in that folder, the POST request will fail. + * Create new navigation property to outcomes for education * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new feedback resource for a submission. Only a teacher can perform this operation. To create a new file-based resource, upload the file to the feedback resources folder associated with the assignment. If the file doesn't exist or isn't in that folder, the POST request will fail. + * Create new navigation property to outcomes for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public OutcomesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new OutcomesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of educationOutcome objects. There are four types of outcomes: educationPointsOutcome, educationFeedbackOutcome, educationRubricOutcome, and educationFeedbackResourceOutcome. Only teachers, students, and applications with application permissions can perform this operation. A submission for a credit assignment (one that has no point value and no rubric) has an educationFeedbackOutcome. (It might also return an educationPointsOutcome, but that outcome is ignored.) A submission for a points assignment (one that has a point value assigned) has both an educationFeedbackOutcome and an educationPointsOutcome. A submission for an assignment with an attached rubric, if the rubric is a credit rubric (no points), has an educationFeedbackOutcome and an educationRubricOutcome. (It might also return an educationPointsOutcome, but that outcome is ignored.) A submission for an assignment with an attached rubric, if the rubric is a points rubric, has an educationFeedbackOutcome, an educationPointsOutcome, and an educationRubricOutcome. A submission for a feedback resource has an educationFeedbackResourceOutcome. All outcome types have a regular and a published property appropriate to that type of outcome; for example, points and publishedPoints, feedback and publishedFeedback. The regular property is the most recent value updated by the teacher; the published property is the most recent value returned to the student. + * Get outcomes from education */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/submissions/item/outcomes/item/EducationOutcomeItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/submissions/item/outcomes/item/EducationOutcomeItemRequestBuilder.java index b82f0e233ff..baa0ef17178 100644 --- a/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/submissions/item/outcomes/item/EducationOutcomeItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/submissions/item/outcomes/item/EducationOutcomeItemRequestBuilder.java @@ -37,18 +37,16 @@ public EducationOutcomeItemRequestBuilder(@jakarta.annotation.Nonnull final Stri super(requestAdapter, "{+baseurl}/education/users/{educationUser%2Did}/assignments/{educationAssignment%2Did}/submissions/{educationSubmission%2Did}/outcomes/{educationOutcome%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a feedback resource from a submission. This can only be done by a teacher. + * Delete navigation property outcomes for education * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a feedback resource from a submission. This can only be done by a teacher. + * Delete navigation property outcomes for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -79,23 +77,21 @@ public EducationOutcome get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, EducationOutcome::createFromDiscriminatorValue); } /** - * Update the properties of an educationOutcome object. Only teachers can perform this operation. + * Update the navigation property outcomes in education * @param body The request body * @return a {@link EducationOutcome} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationOutcome patch(@jakarta.annotation.Nonnull final EducationOutcome body) { return patch(body, null); } /** - * Update the properties of an educationOutcome object. Only teachers can perform this operation. + * Update the navigation property outcomes in education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationOutcome} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationOutcome patch(@jakarta.annotation.Nonnull final EducationOutcome body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -106,7 +102,7 @@ public EducationOutcome patch(@jakarta.annotation.Nonnull final EducationOutcome return this.requestAdapter.send(requestInfo, errorMapping, EducationOutcome::createFromDiscriminatorValue); } /** - * Delete a feedback resource from a submission. This can only be done by a teacher. + * Delete navigation property outcomes for education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -114,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a feedback resource from a submission. This can only be done by a teacher. + * Delete navigation property outcomes for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an educationOutcome object. Only teachers can perform this operation. + * Update the navigation property outcomes in education * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an educationOutcome object. Only teachers can perform this operation. + * Update the navigation property outcomes in education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/submissions/item/resources/ResourcesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/submissions/item/resources/ResourcesRequestBuilder.java index abdcc2aff07..60fad7c2845 100644 --- a/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/submissions/item/resources/ResourcesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/submissions/item/resources/ResourcesRequestBuilder.java @@ -60,21 +60,19 @@ public ResourcesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/education/users/{educationUser%2Did}/assignments/{educationAssignment%2Did}/submissions/{educationSubmission%2Did}/resources{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List the resources associated with a submission. Only teachers, students, and applications with application permissions can perform this operation. The educationSubmissionResource object is a wrapper around the actual resource object the student is working on. The wrapper also includes a pointer to the resources on the assignment if this resource was copied from the assignment during the assign process. These resources are the working copy of the assignment. The submittedResources are the resources that were officially submitted for grading. + * Get resources from education * @return a {@link EducationSubmissionResourceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSubmissionResourceCollectionResponse get() { return get(null); } /** - * List the resources associated with a submission. Only teachers, students, and applications with application permissions can perform this operation. The educationSubmissionResource object is a wrapper around the actual resource object the student is working on. The wrapper also includes a pointer to the resources on the assignment if this resource was copied from the assignment during the assign process. These resources are the working copy of the assignment. The submittedResources are the resources that were officially submitted for grading. + * Get resources from education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationSubmissionResourceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSubmissionResourceCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public EducationSubmissionResourceCollectionResponse get(@jakarta.annotation.Nul return this.requestAdapter.send(requestInfo, errorMapping, EducationSubmissionResourceCollectionResponse::createFromDiscriminatorValue); } /** - * Add an educationSubmissionResource to a submission resource list. Only teachers and students can perform this operation. The operation will not succeed if the allowStudentsToAddResources flag is not set to true. To create a new file-based resource, upload the file to the resources folder associated with the submission. If the file doesn't exist or is not in that folder, the POST request will fail. + * Create new navigation property to resources for education * @param body The request body * @return a {@link EducationSubmissionResource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSubmissionResource post(@jakarta.annotation.Nonnull final EducationSubmissionResource body) { return post(body, null); } /** - * Add an educationSubmissionResource to a submission resource list. Only teachers and students can perform this operation. The operation will not succeed if the allowStudentsToAddResources flag is not set to true. To create a new file-based resource, upload the file to the resources folder associated with the submission. If the file doesn't exist or is not in that folder, the POST request will fail. + * Create new navigation property to resources for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationSubmissionResource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSubmissionResource post(@jakarta.annotation.Nonnull final EducationSubmissionResource body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public EducationSubmissionResource post(@jakarta.annotation.Nonnull final Educat return this.requestAdapter.send(requestInfo, errorMapping, EducationSubmissionResource::createFromDiscriminatorValue); } /** - * List the resources associated with a submission. Only teachers, students, and applications with application permissions can perform this operation. The educationSubmissionResource object is a wrapper around the actual resource object the student is working on. The wrapper also includes a pointer to the resources on the assignment if this resource was copied from the assignment during the assign process. These resources are the working copy of the assignment. The submittedResources are the resources that were officially submitted for grading. + * Get resources from education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List the resources associated with a submission. Only teachers, students, and applications with application permissions can perform this operation. The educationSubmissionResource object is a wrapper around the actual resource object the student is working on. The wrapper also includes a pointer to the resources on the assignment if this resource was copied from the assignment during the assign process. These resources are the working copy of the assignment. The submittedResources are the resources that were officially submitted for grading. + * Get resources from education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add an educationSubmissionResource to a submission resource list. Only teachers and students can perform this operation. The operation will not succeed if the allowStudentsToAddResources flag is not set to true. To create a new file-based resource, upload the file to the resources folder associated with the submission. If the file doesn't exist or is not in that folder, the POST request will fail. + * Create new navigation property to resources for education * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add an educationSubmissionResource to a submission resource list. Only teachers and students can perform this operation. The operation will not succeed if the allowStudentsToAddResources flag is not set to true. To create a new file-based resource, upload the file to the resources folder associated with the submission. If the file doesn't exist or is not in that folder, the POST request will fail. + * Create new navigation property to resources for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ResourcesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ResourcesRequestBuilder(rawUrl, requestAdapter); } /** - * List the resources associated with a submission. Only teachers, students, and applications with application permissions can perform this operation. The educationSubmissionResource object is a wrapper around the actual resource object the student is working on. The wrapper also includes a pointer to the resources on the assignment if this resource was copied from the assignment during the assign process. These resources are the working copy of the assignment. The submittedResources are the resources that were officially submitted for grading. + * Get resources from education */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/submissions/item/resources/item/EducationSubmissionResourceItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/submissions/item/resources/item/EducationSubmissionResourceItemRequestBuilder.java index 44d9df42fac..30179d0eb0d 100644 --- a/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/submissions/item/resources/item/EducationSubmissionResourceItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/submissions/item/resources/item/EducationSubmissionResourceItemRequestBuilder.java @@ -37,18 +37,16 @@ public EducationSubmissionResourceItemRequestBuilder(@jakarta.annotation.Nonnull super(requestAdapter, "{+baseurl}/education/users/{educationUser%2Did}/assignments/{educationAssignment%2Did}/submissions/{educationSubmission%2Did}/resources/{educationSubmissionResource%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an educationSubmissionResource from the submission. Only teachers and students can perform this operation. If the resource was copied from the assignment, a new copy of the resource will be created after the current copy is deleted. This allows you to 'reset' the resource to its original state. If the resource wasn't copied from the assignment but was added from the student, the resource is deleted. + * Delete navigation property resources for education * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an educationSubmissionResource from the submission. Only teachers and students can perform this operation. If the resource was copied from the assignment, a new copy of the resource will be created after the current copy is deleted. This allows you to 'reset' the resource to its original state. If the resource wasn't copied from the assignment but was added from the student, the resource is deleted. + * Delete navigation property resources for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties of a specific resource associated with a submission. Only teachers, students, and applications with application permissions can perform this operation. This resource is in the 'working' resource list and should be considered work in process by a student. This resource is wrapped with a possible pointer back to the assignment resource if it was copied from the assignment. + * Get resources from education * @return a {@link EducationSubmissionResource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSubmissionResource get() { return get(null); } /** - * Retrieve the properties of a specific resource associated with a submission. Only teachers, students, and applications with application permissions can perform this operation. This resource is in the 'working' resource list and should be considered work in process by a student. This resource is wrapped with a possible pointer back to the assignment resource if it was copied from the assignment. + * Get resources from education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationSubmissionResource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSubmissionResource get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -106,7 +102,7 @@ public EducationSubmissionResource patch(@jakarta.annotation.Nonnull final Educa return this.requestAdapter.send(requestInfo, errorMapping, EducationSubmissionResource::createFromDiscriminatorValue); } /** - * Delete an educationSubmissionResource from the submission. Only teachers and students can perform this operation. If the resource was copied from the assignment, a new copy of the resource will be created after the current copy is deleted. This allows you to 'reset' the resource to its original state. If the resource wasn't copied from the assignment but was added from the student, the resource is deleted. + * Delete navigation property resources for education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -114,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an educationSubmissionResource from the submission. Only teachers and students can perform this operation. If the resource was copied from the assignment, a new copy of the resource will be created after the current copy is deleted. This allows you to 'reset' the resource to its original state. If the resource wasn't copied from the assignment but was added from the student, the resource is deleted. + * Delete navigation property resources for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties of a specific resource associated with a submission. Only teachers, students, and applications with application permissions can perform this operation. This resource is in the 'working' resource list and should be considered work in process by a student. This resource is wrapped with a possible pointer back to the assignment resource if it was copied from the assignment. + * Get resources from education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties of a specific resource associated with a submission. Only teachers, students, and applications with application permissions can perform this operation. This resource is in the 'working' resource list and should be considered work in process by a student. This resource is wrapped with a possible pointer back to the assignment resource if it was copied from the assignment. + * Get resources from education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public EducationSubmissionResourceItemRequestBuilder withUrl(@jakarta.annotation public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties of a specific resource associated with a submission. Only teachers, students, and applications with application permissions can perform this operation. This resource is in the 'working' resource list and should be considered work in process by a student. This resource is wrapped with a possible pointer back to the assignment resource if it was copied from the assignment. + * Get resources from education */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/submissions/item/submittedresources/SubmittedResourcesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/submissions/item/submittedresources/SubmittedResourcesRequestBuilder.java index 67e20b8a67a..a02976ae80c 100644 --- a/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/submissions/item/submittedresources/SubmittedResourcesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/submissions/item/submittedresources/SubmittedResourcesRequestBuilder.java @@ -60,21 +60,19 @@ public SubmittedResourcesRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/education/users/{educationUser%2Did}/assignments/{educationAssignment%2Did}/submissions/{educationSubmission%2Did}/submittedResources{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List the educationSubmissionResource objects that were officially submitted for grading. Only teachers, students, and applications with application permissions can perform this operation. The student who owns the submission can't change the submitted list without resubmitting the assignment. This resource is a wrapper around the real resource and can contain a pointer back to the actual assignment resource if this resource was copied from the assignment. + * Get submittedResources from education * @return a {@link EducationSubmissionResourceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSubmissionResourceCollectionResponse get() { return get(null); } /** - * List the educationSubmissionResource objects that were officially submitted for grading. Only teachers, students, and applications with application permissions can perform this operation. The student who owns the submission can't change the submitted list without resubmitting the assignment. This resource is a wrapper around the real resource and can contain a pointer back to the actual assignment resource if this resource was copied from the assignment. + * Get submittedResources from education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationSubmissionResourceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSubmissionResourceCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public EducationSubmissionResource post(@jakarta.annotation.Nonnull final Educat return this.requestAdapter.send(requestInfo, errorMapping, EducationSubmissionResource::createFromDiscriminatorValue); } /** - * List the educationSubmissionResource objects that were officially submitted for grading. Only teachers, students, and applications with application permissions can perform this operation. The student who owns the submission can't change the submitted list without resubmitting the assignment. This resource is a wrapper around the real resource and can contain a pointer back to the actual assignment resource if this resource was copied from the assignment. + * Get submittedResources from education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List the educationSubmissionResource objects that were officially submitted for grading. Only teachers, students, and applications with application permissions can perform this operation. The student who owns the submission can't change the submitted list without resubmitting the assignment. This resource is a wrapper around the real resource and can contain a pointer back to the actual assignment resource if this resource was copied from the assignment. + * Get submittedResources from education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public SubmittedResourcesRequestBuilder withUrl(@jakarta.annotation.Nonnull fina return new SubmittedResourcesRequestBuilder(rawUrl, requestAdapter); } /** - * List the educationSubmissionResource objects that were officially submitted for grading. Only teachers, students, and applications with application permissions can perform this operation. The student who owns the submission can't change the submitted list without resubmitting the assignment. This resource is a wrapper around the real resource and can contain a pointer back to the actual assignment resource if this resource was copied from the assignment. + * Get submittedResources from education */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/submissions/item/submittedresources/item/EducationSubmissionResourceItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/submissions/item/submittedresources/item/EducationSubmissionResourceItemRequestBuilder.java index b98d17ad6da..96ac9983ab9 100644 --- a/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/submissions/item/submittedresources/item/EducationSubmissionResourceItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/users/item/assignments/item/submissions/item/submittedresources/item/EducationSubmissionResourceItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a submitted resource. Only teachers, students, and applications with application permissions can perform this operation. Resources are available to a teacher or an application with application permissions after a student submits it, and are available to the student after the teacher returns the submission. Teachers can leave notes in some resources. + * Get submittedResources from education * @return a {@link EducationSubmissionResource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSubmissionResource get() { return get(null); } /** - * Retrieve a submitted resource. Only teachers, students, and applications with application permissions can perform this operation. Resources are available to a teacher or an application with application permissions after a student submits it, and are available to the student after the teacher returns the submission. Teachers can leave notes in some resources. + * Get submittedResources from education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationSubmissionResource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSubmissionResource get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a submitted resource. Only teachers, students, and applications with application permissions can perform this operation. Resources are available to a teacher or an application with application permissions after a student submits it, and are available to the student after the teacher returns the submission. Teachers can leave notes in some resources. + * Get submittedResources from education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a submitted resource. Only teachers, students, and applications with application permissions can perform this operation. Resources are available to a teacher or an application with application permissions after a student submits it, and are available to the student after the teacher returns the submission. Teachers can leave notes in some resources. + * Get submittedResources from education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public EducationSubmissionResourceItemRequestBuilder withUrl(@jakarta.annotation public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve a submitted resource. Only teachers, students, and applications with application permissions can perform this operation. Resources are available to a teacher or an application with application permissions after a student submits it, and are available to the student after the teacher returns the submission. Teachers can leave notes in some resources. + * Get submittedResources from education */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/users/item/classes/ClassesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/users/item/classes/ClassesRequestBuilder.java index a5a69b88773..1b24846ec39 100644 --- a/src/main/java/com/microsoft/graph/generated/education/users/item/classes/ClassesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/users/item/classes/ClassesRequestBuilder.java @@ -59,21 +59,19 @@ public ClassesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/education/users/{educationUser%2Did}/classes{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the educationClass resources an educationUser is a member of. + * Classes to which the user belongs. Nullable. * @return a {@link EducationClassCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationClassCollectionResponse get() { return get(null); } /** - * Get the educationClass resources an educationUser is a member of. + * Classes to which the user belongs. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationClassCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationClassCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public EducationClassCollectionResponse get(@jakarta.annotation.Nullable final j return this.requestAdapter.send(requestInfo, errorMapping, EducationClassCollectionResponse::createFromDiscriminatorValue); } /** - * Get the educationClass resources an educationUser is a member of. + * Classes to which the user belongs. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the educationClass resources an educationUser is a member of. + * Classes to which the user belongs. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public ClassesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new ClassesRequestBuilder(rawUrl, requestAdapter); } /** - * Get the educationClass resources an educationUser is a member of. + * Classes to which the user belongs. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/users/item/rubrics/RubricsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/users/item/rubrics/RubricsRequestBuilder.java index 2583153555a..7bace3e53fd 100644 --- a/src/main/java/com/microsoft/graph/generated/education/users/item/rubrics/RubricsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/users/item/rubrics/RubricsRequestBuilder.java @@ -60,21 +60,19 @@ public RubricsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/education/users/{educationUser%2Did}/rubrics{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of educationRubric objects. + * When set, the grading rubric attached to the assignment. * @return a {@link EducationRubricCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationRubricCollectionResponse get() { return get(null); } /** - * Retrieve a list of educationRubric objects. + * When set, the grading rubric attached to the assignment. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationRubricCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationRubricCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public EducationRubricCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, EducationRubricCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new educationRubric object. + * Create new navigation property to rubrics for education * @param body The request body * @return a {@link EducationRubric} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationRubric post(@jakarta.annotation.Nonnull final EducationRubric body) { return post(body, null); } /** - * Create a new educationRubric object. + * Create new navigation property to rubrics for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationRubric} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationRubric post(@jakarta.annotation.Nonnull final EducationRubric body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public EducationRubric post(@jakarta.annotation.Nonnull final EducationRubric bo return this.requestAdapter.send(requestInfo, errorMapping, EducationRubric::createFromDiscriminatorValue); } /** - * Retrieve a list of educationRubric objects. + * When set, the grading rubric attached to the assignment. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of educationRubric objects. + * When set, the grading rubric attached to the assignment. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new educationRubric object. + * Create new navigation property to rubrics for education * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new educationRubric object. + * Create new navigation property to rubrics for education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public RubricsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new RubricsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of educationRubric objects. + * When set, the grading rubric attached to the assignment. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/users/item/rubrics/item/EducationRubricItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/users/item/rubrics/item/EducationRubricItemRequestBuilder.java index bb70643b61b..0762306c382 100644 --- a/src/main/java/com/microsoft/graph/generated/education/users/item/rubrics/item/EducationRubricItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/users/item/rubrics/item/EducationRubricItemRequestBuilder.java @@ -37,18 +37,16 @@ public EducationRubricItemRequestBuilder(@jakarta.annotation.Nonnull final Strin super(requestAdapter, "{+baseurl}/education/users/{educationUser%2Did}/rubrics/{educationRubric%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an educationRubric object. Only teachers can perform this operation. + * Delete navigation property rubrics for education * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an educationRubric object. Only teachers can perform this operation. + * Delete navigation property rubrics for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of an educationRubric object. Only teachers and students can perform this operation. + * When set, the grading rubric attached to the assignment. * @return a {@link EducationRubric} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationRubric get() { return get(null); } /** - * Retrieve the properties and relationships of an educationRubric object. Only teachers and students can perform this operation. + * When set, the grading rubric attached to the assignment. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationRubric} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationRubric get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public EducationRubric get(@jakarta.annotation.Nullable final java.util.function return this.requestAdapter.send(requestInfo, errorMapping, EducationRubric::createFromDiscriminatorValue); } /** - * Update the properties of an educationRubric object. Only teachers can perform this operation. Updating a rubric attached to an assignment (PATCH /education/classes/{class-id}/assignments/{assignment-id}/rubric) is only possible before the assignment is published, and what is updated is actually the original rubric that exists under /education/users/{id}/rubrics. After the assignment is published, an immutable copy of the rubric is made that is attached to that specific assignment. That rubric can be retrieved using GET /education/classes/{class-id}/assignments/{assignment-id}/rubric, but it cannot be updated. + * Update the navigation property rubrics in education * @param body The request body * @return a {@link EducationRubric} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationRubric patch(@jakarta.annotation.Nonnull final EducationRubric body) { return patch(body, null); } /** - * Update the properties of an educationRubric object. Only teachers can perform this operation. Updating a rubric attached to an assignment (PATCH /education/classes/{class-id}/assignments/{assignment-id}/rubric) is only possible before the assignment is published, and what is updated is actually the original rubric that exists under /education/users/{id}/rubrics. After the assignment is published, an immutable copy of the rubric is made that is attached to that specific assignment. That rubric can be retrieved using GET /education/classes/{class-id}/assignments/{assignment-id}/rubric, but it cannot be updated. + * Update the navigation property rubrics in education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationRubric} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationRubric patch(@jakarta.annotation.Nonnull final EducationRubric body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public EducationRubric patch(@jakarta.annotation.Nonnull final EducationRubric b return this.requestAdapter.send(requestInfo, errorMapping, EducationRubric::createFromDiscriminatorValue); } /** - * Delete an educationRubric object. Only teachers can perform this operation. + * Delete navigation property rubrics for education * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an educationRubric object. Only teachers can perform this operation. + * Delete navigation property rubrics for education * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of an educationRubric object. Only teachers and students can perform this operation. + * When set, the grading rubric attached to the assignment. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of an educationRubric object. Only teachers and students can perform this operation. + * When set, the grading rubric attached to the assignment. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an educationRubric object. Only teachers can perform this operation. Updating a rubric attached to an assignment (PATCH /education/classes/{class-id}/assignments/{assignment-id}/rubric) is only possible before the assignment is published, and what is updated is actually the original rubric that exists under /education/users/{id}/rubrics. After the assignment is published, an immutable copy of the rubric is made that is attached to that specific assignment. That rubric can be retrieved using GET /education/classes/{class-id}/assignments/{assignment-id}/rubric, but it cannot be updated. + * Update the navigation property rubrics in education * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an educationRubric object. Only teachers can perform this operation. Updating a rubric attached to an assignment (PATCH /education/classes/{class-id}/assignments/{assignment-id}/rubric) is only possible before the assignment is published, and what is updated is actually the original rubric that exists under /education/users/{id}/rubrics. After the assignment is published, an immutable copy of the rubric is made that is attached to that specific assignment. That rubric can be retrieved using GET /education/classes/{class-id}/assignments/{assignment-id}/rubric, but it cannot be updated. + * Update the navigation property rubrics in education * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public EducationRubricItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fin public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of an educationRubric object. Only teachers and students can perform this operation. + * When set, the grading rubric attached to the assignment. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/users/item/schools/SchoolsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/users/item/schools/SchoolsRequestBuilder.java index a23bfef084e..12fb4c6c3d5 100644 --- a/src/main/java/com/microsoft/graph/generated/education/users/item/schools/SchoolsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/users/item/schools/SchoolsRequestBuilder.java @@ -59,21 +59,19 @@ public SchoolsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/education/users/{educationUser%2Did}/schools{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of schools for a user. + * Schools to which the user belongs. Nullable. * @return a {@link EducationSchoolCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSchoolCollectionResponse get() { return get(null); } /** - * Retrieve a list of schools for a user. + * Schools to which the user belongs. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationSchoolCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationSchoolCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public EducationSchoolCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, EducationSchoolCollectionResponse::createFromDiscriminatorValue); } /** - * Retrieve a list of schools for a user. + * Schools to which the user belongs. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of schools for a user. + * Schools to which the user belongs. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public SchoolsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new SchoolsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of schools for a user. + * Schools to which the user belongs. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/users/item/taughtclasses/TaughtClassesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/users/item/taughtclasses/TaughtClassesRequestBuilder.java index 0dbb84a4bb0..2f79e15fe14 100644 --- a/src/main/java/com/microsoft/graph/generated/education/users/item/taughtclasses/TaughtClassesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/users/item/taughtclasses/TaughtClassesRequestBuilder.java @@ -59,21 +59,19 @@ public TaughtClassesRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/education/users/{educationUser%2Did}/taughtClasses{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the educationClass resources owned by an educationUser. + * Classes for which the user is a teacher. * @return a {@link EducationClassCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationClassCollectionResponse get() { return get(null); } /** - * Get the educationClass resources owned by an educationUser. + * Classes for which the user is a teacher. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EducationClassCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EducationClassCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public EducationClassCollectionResponse get(@jakarta.annotation.Nullable final j return this.requestAdapter.send(requestInfo, errorMapping, EducationClassCollectionResponse::createFromDiscriminatorValue); } /** - * Get the educationClass resources owned by an educationUser. + * Classes for which the user is a teacher. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the educationClass resources owned by an educationUser. + * Classes for which the user is a teacher. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public TaughtClassesRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new TaughtClassesRequestBuilder(rawUrl, requestAdapter); } /** - * Get the educationClass resources owned by an educationUser. + * Classes for which the user is a teacher. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/education/users/item/user/UserRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/education/users/item/user/UserRequestBuilder.java index 80b474fe44f..fd900a5ad25 100644 --- a/src/main/java/com/microsoft/graph/generated/education/users/item/user/UserRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/education/users/item/user/UserRequestBuilder.java @@ -55,21 +55,19 @@ public UserRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka super(requestAdapter, "{+baseurl}/education/users/{educationUser%2Did}/user{?%24expand,%24select}", rawUrl); } /** - * Retrieve the simple directory user that corresponds to this educationUser. + * The directory user that corresponds to this user. * @return a {@link User} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public User get() { return get(null); } /** - * Retrieve the simple directory user that corresponds to this educationUser. + * The directory user that corresponds to this user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link User} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public User get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,7 +77,7 @@ public User get(@jakarta.annotation.Nullable final java.util.function.ConsumerFind more info here */ @jakarta.annotation.Nullable public LearningCourseActivity get() { return get(null); } /** - * Get the specified learningCourseActivity object using either an ID or an externalCourseActivityId of the learning provider, or a courseActivityId of a user. + * Get learningCourseActivities from employeeExperience * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link LearningCourseActivity} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LearningCourseActivity get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the specified learningCourseActivity object using either an ID or an externalCourseActivityId of the learning provider, or a courseActivityId of a user. + * Get learningCourseActivities from employeeExperience * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the specified learningCourseActivity object using either an ID or an externalCourseActivityId of the learning provider, or a courseActivityId of a user. + * Get learningCourseActivities from employeeExperience * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public LearningCourseActivityItemRequestBuilder withUrl(@jakarta.annotation.Nonn public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the specified learningCourseActivity object using either an ID or an externalCourseActivityId of the learning provider, or a courseActivityId of a user. + * Get learningCourseActivities from employeeExperience */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/employeeexperience/learningcourseactivitieswithexternalcourseactivityid/LearningCourseActivitiesWithExternalcourseActivityIdRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/employeeexperience/learningcourseactivitieswithexternalcourseactivityid/LearningCourseActivitiesWithExternalcourseActivityIdRequestBuilder.java index 7825f386b45..eb8dc4030e9 100644 --- a/src/main/java/com/microsoft/graph/generated/employeeexperience/learningcourseactivitieswithexternalcourseactivityid/LearningCourseActivitiesWithExternalcourseActivityIdRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/employeeexperience/learningcourseactivitieswithexternalcourseactivityid/LearningCourseActivitiesWithExternalcourseActivityIdRequestBuilder.java @@ -57,21 +57,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the specified learningCourseActivity object using either an ID or an externalCourseActivityId of the learning provider, or a courseActivityId of a user. + * Get learningCourseActivities from employeeExperience * @return a {@link LearningCourseActivity} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LearningCourseActivity get() { return get(null); } /** - * Get the specified learningCourseActivity object using either an ID or an externalCourseActivityId of the learning provider, or a courseActivityId of a user. + * Get learningCourseActivities from employeeExperience * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link LearningCourseActivity} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LearningCourseActivity get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +124,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the specified learningCourseActivity object using either an ID or an externalCourseActivityId of the learning provider, or a courseActivityId of a user. + * Get learningCourseActivities from employeeExperience * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +132,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the specified learningCourseActivity object using either an ID or an externalCourseActivityId of the learning provider, or a courseActivityId of a user. + * Get learningCourseActivities from employeeExperience * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +184,7 @@ public LearningCourseActivitiesWithExternalcourseActivityIdRequestBuilder withUr public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the specified learningCourseActivity object using either an ID or an externalCourseActivityId of the learning provider, or a courseActivityId of a user. + * Get learningCourseActivities from employeeExperience */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/employeeexperience/learningproviders/LearningProvidersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/employeeexperience/learningproviders/LearningProvidersRequestBuilder.java index 4ad5c1f20c6..9d497bd5f6d 100644 --- a/src/main/java/com/microsoft/graph/generated/employeeexperience/learningproviders/LearningProvidersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/employeeexperience/learningproviders/LearningProvidersRequestBuilder.java @@ -60,21 +60,19 @@ public LearningProvidersRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/employeeExperience/learningProviders{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the learningProvider resources registered in Viva Learning for a tenant. + * A collection of learning providers. * @return a {@link LearningProviderCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LearningProviderCollectionResponse get() { return get(null); } /** - * Get a list of the learningProvider resources registered in Viva Learning for a tenant. + * A collection of learning providers. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link LearningProviderCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LearningProviderCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public LearningProviderCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, LearningProviderCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new learningProvider object and register it with Viva Learning using the specified display name and logos for different themes. + * Create new navigation property to learningProviders for employeeExperience * @param body The request body * @return a {@link LearningProvider} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LearningProvider post(@jakarta.annotation.Nonnull final LearningProvider body) { return post(body, null); } /** - * Create a new learningProvider object and register it with Viva Learning using the specified display name and logos for different themes. + * Create new navigation property to learningProviders for employeeExperience * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link LearningProvider} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LearningProvider post(@jakarta.annotation.Nonnull final LearningProvider body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public LearningProvider post(@jakarta.annotation.Nonnull final LearningProvider return this.requestAdapter.send(requestInfo, errorMapping, LearningProvider::createFromDiscriminatorValue); } /** - * Get a list of the learningProvider resources registered in Viva Learning for a tenant. + * A collection of learning providers. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the learningProvider resources registered in Viva Learning for a tenant. + * A collection of learning providers. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new learningProvider object and register it with Viva Learning using the specified display name and logos for different themes. + * Create new navigation property to learningProviders for employeeExperience * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new learningProvider object and register it with Viva Learning using the specified display name and logos for different themes. + * Create new navigation property to learningProviders for employeeExperience * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public LearningProvidersRequestBuilder withUrl(@jakarta.annotation.Nonnull final return new LearningProvidersRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the learningProvider resources registered in Viva Learning for a tenant. + * A collection of learning providers. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/employeeexperience/learningproviders/item/LearningProviderItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/employeeexperience/learningproviders/item/LearningProviderItemRequestBuilder.java index d0b6ac5ce3e..312751b2897 100644 --- a/src/main/java/com/microsoft/graph/generated/employeeexperience/learningproviders/item/LearningProviderItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/employeeexperience/learningproviders/item/LearningProviderItemRequestBuilder.java @@ -57,18 +57,16 @@ public LearningProviderItemRequestBuilder(@jakarta.annotation.Nonnull final Stri super(requestAdapter, "{+baseurl}/employeeExperience/learningProviders/{learningProvider%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a learningProvider resource and remove its registration in Viva Learning for a tenant. + * Delete navigation property learningProviders for employeeExperience * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a learningProvider resource and remove its registration in Viva Learning for a tenant. + * Delete navigation property learningProviders for employeeExperience * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -77,21 +75,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a learningProvider object. + * A collection of learning providers. * @return a {@link LearningProvider} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LearningProvider get() { return get(null); } /** - * Read the properties and relationships of a learningProvider object. + * A collection of learning providers. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link LearningProvider} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LearningProvider get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -121,23 +117,21 @@ public LearningCourseActivitiesWithExternalcourseActivityIdRequestBuilder learni return new LearningCourseActivitiesWithExternalcourseActivityIdRequestBuilder(pathParameters, requestAdapter, externalcourseActivityId); } /** - * Update the properties of a learningProvider object. + * Update the navigation property learningProviders in employeeExperience * @param body The request body * @return a {@link LearningProvider} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LearningProvider patch(@jakarta.annotation.Nonnull final LearningProvider body) { return patch(body, null); } /** - * Update the properties of a learningProvider object. + * Update the navigation property learningProviders in employeeExperience * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link LearningProvider} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LearningProvider patch(@jakarta.annotation.Nonnull final LearningProvider body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -148,7 +142,7 @@ public LearningProvider patch(@jakarta.annotation.Nonnull final LearningProvider return this.requestAdapter.send(requestInfo, errorMapping, LearningProvider::createFromDiscriminatorValue); } /** - * Delete a learningProvider resource and remove its registration in Viva Learning for a tenant. + * Delete navigation property learningProviders for employeeExperience * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -156,7 +150,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a learningProvider resource and remove its registration in Viva Learning for a tenant. + * Delete navigation property learningProviders for employeeExperience * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -168,7 +162,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a learningProvider object. + * A collection of learning providers. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -176,7 +170,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a learningProvider object. + * A collection of learning providers. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -188,7 +182,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a learningProvider object. + * Update the navigation property learningProviders in employeeExperience * @param body The request body * @return a {@link RequestInformation} */ @@ -197,7 +191,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a learningProvider object. + * Update the navigation property learningProviders in employeeExperience * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -228,7 +222,7 @@ public LearningProviderItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fi public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a learningProvider object. + * A collection of learning providers. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/employeeexperience/learningproviders/item/learningcontents/LearningContentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/employeeexperience/learningproviders/item/learningcontents/LearningContentsRequestBuilder.java index 0b5fe345775..43b8ea4ac02 100644 --- a/src/main/java/com/microsoft/graph/generated/employeeexperience/learningproviders/item/learningcontents/LearningContentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/employeeexperience/learningproviders/item/learningcontents/LearningContentsRequestBuilder.java @@ -60,21 +60,19 @@ public LearningContentsRequestBuilder(@jakarta.annotation.Nonnull final String r super(requestAdapter, "{+baseurl}/employeeExperience/learningProviders/{learningProvider%2Did}/learningContents{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the learningContent resources and their properties. This list represents the metadata of the specified provider's content in Viva Learning. + * Learning catalog items for the provider. * @return a {@link LearningContentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LearningContentCollectionResponse get() { return get(null); } /** - * Get a list of the learningContent resources and their properties. This list represents the metadata of the specified provider's content in Viva Learning. + * Learning catalog items for the provider. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link LearningContentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LearningContentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public LearningContent post(@jakarta.annotation.Nonnull final LearningContent bo return this.requestAdapter.send(requestInfo, errorMapping, LearningContent::createFromDiscriminatorValue); } /** - * Get a list of the learningContent resources and their properties. This list represents the metadata of the specified provider's content in Viva Learning. + * Learning catalog items for the provider. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the learningContent resources and their properties. This list represents the metadata of the specified provider's content in Viva Learning. + * Learning catalog items for the provider. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public LearningContentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final return new LearningContentsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the learningContent resources and their properties. This list represents the metadata of the specified provider's content in Viva Learning. + * Learning catalog items for the provider. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/employeeexperience/learningproviders/item/learningcontents/item/LearningContentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/employeeexperience/learningproviders/item/learningcontents/item/LearningContentItemRequestBuilder.java index 4f77db85d2b..d7a79b68484 100644 --- a/src/main/java/com/microsoft/graph/generated/employeeexperience/learningproviders/item/learningcontents/item/LearningContentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/employeeexperience/learningproviders/item/learningcontents/item/LearningContentItemRequestBuilder.java @@ -37,18 +37,16 @@ public LearningContentItemRequestBuilder(@jakarta.annotation.Nonnull final Strin super(requestAdapter, "{+baseurl}/employeeExperience/learningProviders/{learningProvider%2Did}/learningContents/{learningContent%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete the specified learningContent resource that represents the metadata of the specified provider's ingested content. + * Delete navigation property learningContents for employeeExperience * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete the specified learningContent resource that represents the metadata of the specified provider's ingested content. + * Delete navigation property learningContents for employeeExperience * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the specified learningContent resource which represents the metadata of the specified provider's ingested content. + * Learning catalog items for the provider. * @return a {@link LearningContent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LearningContent get() { return get(null); } /** - * Get the specified learningContent resource which represents the metadata of the specified provider's ingested content. + * Learning catalog items for the provider. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link LearningContent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LearningContent get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -106,7 +102,7 @@ public LearningContent patch(@jakarta.annotation.Nonnull final LearningContent b return this.requestAdapter.send(requestInfo, errorMapping, LearningContent::createFromDiscriminatorValue); } /** - * Delete the specified learningContent resource that represents the metadata of the specified provider's ingested content. + * Delete navigation property learningContents for employeeExperience * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -114,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete the specified learningContent resource that represents the metadata of the specified provider's ingested content. + * Delete navigation property learningContents for employeeExperience * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the specified learningContent resource which represents the metadata of the specified provider's ingested content. + * Learning catalog items for the provider. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the specified learningContent resource which represents the metadata of the specified provider's ingested content. + * Learning catalog items for the provider. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public LearningContentItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fin public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the specified learningContent resource which represents the metadata of the specified provider's ingested content. + * Learning catalog items for the provider. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/employeeexperience/learningproviders/item/learningcontentswithexternalid/LearningContentsWithExternalIdRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/employeeexperience/learningproviders/item/learningcontentswithexternalid/LearningContentsWithExternalIdRequestBuilder.java index 7840f17206c..841b1afb2dc 100644 --- a/src/main/java/com/microsoft/graph/generated/employeeexperience/learningproviders/item/learningcontentswithexternalid/LearningContentsWithExternalIdRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/employeeexperience/learningproviders/item/learningcontentswithexternalid/LearningContentsWithExternalIdRequestBuilder.java @@ -39,18 +39,16 @@ public LearningContentsWithExternalIdRequestBuilder(@jakarta.annotation.Nonnull super(requestAdapter, "{+baseurl}/employeeExperience/learningProviders/{learningProvider%2Did}/learningContents(externalId='{externalId}'){?%24expand,%24select}", rawUrl); } /** - * Delete the specified learningContent resource that represents the metadata of the specified provider's ingested content. + * Delete navigation property learningContents for employeeExperience * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete the specified learningContent resource that represents the metadata of the specified provider's ingested content. + * Delete navigation property learningContents for employeeExperience * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -59,21 +57,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the specified learningContent resource which represents the metadata of the specified provider's ingested content. + * Learning catalog items for the provider. * @return a {@link LearningContent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LearningContent get() { return get(null); } /** - * Get the specified learningContent resource which represents the metadata of the specified provider's ingested content. + * Learning catalog items for the provider. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link LearningContent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LearningContent get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +104,7 @@ public LearningContent patch(@jakarta.annotation.Nonnull final LearningContent b return this.requestAdapter.send(requestInfo, errorMapping, LearningContent::createFromDiscriminatorValue); } /** - * Delete the specified learningContent resource that represents the metadata of the specified provider's ingested content. + * Delete navigation property learningContents for employeeExperience * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +112,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete the specified learningContent resource that represents the metadata of the specified provider's ingested content. + * Delete navigation property learningContents for employeeExperience * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +124,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the specified learningContent resource which represents the metadata of the specified provider's ingested content. + * Learning catalog items for the provider. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +132,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the specified learningContent resource which represents the metadata of the specified provider's ingested content. + * Learning catalog items for the provider. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -188,7 +184,7 @@ public LearningContentsWithExternalIdRequestBuilder withUrl(@jakarta.annotation. public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the specified learningContent resource which represents the metadata of the specified provider's ingested content. + * Learning catalog items for the provider. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/employeeexperience/learningproviders/item/learningcourseactivities/LearningCourseActivitiesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/employeeexperience/learningproviders/item/learningcourseactivities/LearningCourseActivitiesRequestBuilder.java index 64729b68bb0..a3b2a52690f 100644 --- a/src/main/java/com/microsoft/graph/generated/employeeexperience/learningproviders/item/learningcourseactivities/LearningCourseActivitiesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/employeeexperience/learningproviders/item/learningcourseactivities/LearningCourseActivitiesRequestBuilder.java @@ -82,23 +82,21 @@ public LearningCourseActivityCollectionResponse get(@jakarta.annotation.Nullable return this.requestAdapter.send(requestInfo, errorMapping, LearningCourseActivityCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new learningCourseActivity object. A learning course activity can be one of two types: - Assignment- Self-initiated Use this method to create either type of activity. + * Create new navigation property to learningCourseActivities for employeeExperience * @param body The request body * @return a {@link LearningCourseActivity} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LearningCourseActivity post(@jakarta.annotation.Nonnull final LearningCourseActivity body) { return post(body, null); } /** - * Create a new learningCourseActivity object. A learning course activity can be one of two types: - Assignment- Self-initiated Use this method to create either type of activity. + * Create new navigation property to learningCourseActivities for employeeExperience * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link LearningCourseActivity} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LearningCourseActivity post(@jakarta.annotation.Nonnull final LearningCourseActivity body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -129,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new learningCourseActivity object. A learning course activity can be one of two types: - Assignment- Self-initiated Use this method to create either type of activity. + * Create new navigation property to learningCourseActivities for employeeExperience * @param body The request body * @return a {@link RequestInformation} */ @@ -138,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new learningCourseActivity object. A learning course activity can be one of two types: - Assignment- Self-initiated Use this method to create either type of activity. + * Create new navigation property to learningCourseActivities for employeeExperience * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/employeeexperience/learningproviders/item/learningcourseactivities/item/LearningCourseActivityItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/employeeexperience/learningproviders/item/learningcourseactivities/item/LearningCourseActivityItemRequestBuilder.java index 7084d44f74e..b3f7bf52e0d 100644 --- a/src/main/java/com/microsoft/graph/generated/employeeexperience/learningproviders/item/learningcourseactivities/item/LearningCourseActivityItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/employeeexperience/learningproviders/item/learningcourseactivities/item/LearningCourseActivityItemRequestBuilder.java @@ -37,18 +37,16 @@ public LearningCourseActivityItemRequestBuilder(@jakarta.annotation.Nonnull fina super(requestAdapter, "{+baseurl}/employeeExperience/learningProviders/{learningProvider%2Did}/learningCourseActivities/{learningCourseActivity%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a learningCourseActivity object using the course activity ID of either an assignment or a self-initiated activity. + * Delete navigation property learningCourseActivities for employeeExperience * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a learningCourseActivity object using the course activity ID of either an assignment or a self-initiated activity. + * Delete navigation property learningCourseActivities for employeeExperience * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -79,23 +77,21 @@ public LearningCourseActivity get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, LearningCourseActivity::createFromDiscriminatorValue); } /** - * Update the properties of a learningCourseActivity object. + * Update the navigation property learningCourseActivities in employeeExperience * @param body The request body * @return a {@link LearningCourseActivity} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LearningCourseActivity patch(@jakarta.annotation.Nonnull final LearningCourseActivity body) { return patch(body, null); } /** - * Update the properties of a learningCourseActivity object. + * Update the navigation property learningCourseActivities in employeeExperience * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link LearningCourseActivity} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LearningCourseActivity patch(@jakarta.annotation.Nonnull final LearningCourseActivity body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -106,7 +102,7 @@ public LearningCourseActivity patch(@jakarta.annotation.Nonnull final LearningCo return this.requestAdapter.send(requestInfo, errorMapping, LearningCourseActivity::createFromDiscriminatorValue); } /** - * Delete a learningCourseActivity object using the course activity ID of either an assignment or a self-initiated activity. + * Delete navigation property learningCourseActivities for employeeExperience * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -114,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a learningCourseActivity object using the course activity ID of either an assignment or a self-initiated activity. + * Delete navigation property learningCourseActivities for employeeExperience * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a learningCourseActivity object. + * Update the navigation property learningCourseActivities in employeeExperience * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a learningCourseActivity object. + * Update the navigation property learningCourseActivities in employeeExperience * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/employeeexperience/learningproviders/item/learningcourseactivitieswithexternalcourseactivityid/LearningCourseActivitiesWithExternalcourseActivityIdRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/employeeexperience/learningproviders/item/learningcourseactivitieswithexternalcourseactivityid/LearningCourseActivitiesWithExternalcourseActivityIdRequestBuilder.java index 28db77ea74c..84c98e36725 100644 --- a/src/main/java/com/microsoft/graph/generated/employeeexperience/learningproviders/item/learningcourseactivitieswithexternalcourseactivityid/LearningCourseActivitiesWithExternalcourseActivityIdRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/employeeexperience/learningproviders/item/learningcourseactivitieswithexternalcourseactivityid/LearningCourseActivitiesWithExternalcourseActivityIdRequestBuilder.java @@ -39,18 +39,16 @@ public LearningCourseActivitiesWithExternalcourseActivityIdRequestBuilder(@jakar super(requestAdapter, "{+baseurl}/employeeExperience/learningProviders/{learningProvider%2Did}/learningCourseActivities(externalcourseActivityId='{externalcourseActivityId}'){?%24expand,%24select}", rawUrl); } /** - * Delete a learningCourseActivity object using the course activity ID of either an assignment or a self-initiated activity. + * Delete navigation property learningCourseActivities for employeeExperience * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a learningCourseActivity object using the course activity ID of either an assignment or a self-initiated activity. + * Delete navigation property learningCourseActivities for employeeExperience * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -81,23 +79,21 @@ public LearningCourseActivity get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, LearningCourseActivity::createFromDiscriminatorValue); } /** - * Update the properties of a learningCourseActivity object. + * Update the navigation property learningCourseActivities in employeeExperience * @param body The request body * @return a {@link LearningCourseActivity} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LearningCourseActivity patch(@jakarta.annotation.Nonnull final LearningCourseActivity body) { return patch(body, null); } /** - * Update the properties of a learningCourseActivity object. + * Update the navigation property learningCourseActivities in employeeExperience * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link LearningCourseActivity} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LearningCourseActivity patch(@jakarta.annotation.Nonnull final LearningCourseActivity body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +104,7 @@ public LearningCourseActivity patch(@jakarta.annotation.Nonnull final LearningCo return this.requestAdapter.send(requestInfo, errorMapping, LearningCourseActivity::createFromDiscriminatorValue); } /** - * Delete a learningCourseActivity object using the course activity ID of either an assignment or a self-initiated activity. + * Delete navigation property learningCourseActivities for employeeExperience * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +112,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a learningCourseActivity object using the course activity ID of either an assignment or a self-initiated activity. + * Delete navigation property learningCourseActivities for employeeExperience * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +144,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a learningCourseActivity object. + * Update the navigation property learningCourseActivities in employeeExperience * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +153,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a learningCourseActivity object. + * Update the navigation property learningCourseActivities in employeeExperience * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/external/connections/ConnectionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/external/connections/ConnectionsRequestBuilder.java index c70f6376fc2..afcdba7a7fb 100644 --- a/src/main/java/com/microsoft/graph/generated/external/connections/ConnectionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/external/connections/ConnectionsRequestBuilder.java @@ -60,21 +60,19 @@ public ConnectionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/external/connections{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the externalConnection objects and their properties. + * Get connections from external * @return a {@link ExternalConnectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ExternalConnectionCollectionResponse get() { return get(null); } /** - * Get a list of the externalConnection objects and their properties. + * Get connections from external * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExternalConnectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ExternalConnectionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public ExternalConnectionCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, ExternalConnectionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new externalConnection object. + * Create new navigation property to connections for external * @param body The request body * @return a {@link ExternalConnection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ExternalConnection post(@jakarta.annotation.Nonnull final ExternalConnection body) { return post(body, null); } /** - * Create a new externalConnection object. + * Create new navigation property to connections for external * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExternalConnection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ExternalConnection post(@jakarta.annotation.Nonnull final ExternalConnection body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public ExternalConnection post(@jakarta.annotation.Nonnull final ExternalConnect return this.requestAdapter.send(requestInfo, errorMapping, ExternalConnection::createFromDiscriminatorValue); } /** - * Get a list of the externalConnection objects and their properties. + * Get connections from external * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the externalConnection objects and their properties. + * Get connections from external * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new externalConnection object. + * Create new navigation property to connections for external * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new externalConnection object. + * Create new navigation property to connections for external * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ConnectionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new ConnectionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the externalConnection objects and their properties. + * Get connections from external */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/external/connections/item/ExternalConnectionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/external/connections/item/ExternalConnectionItemRequestBuilder.java index 3577f1ce228..973d7667543 100644 --- a/src/main/java/com/microsoft/graph/generated/external/connections/item/ExternalConnectionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/external/connections/item/ExternalConnectionItemRequestBuilder.java @@ -73,18 +73,16 @@ public ExternalConnectionItemRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/external/connections/{externalConnection%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes an externalConnection object. + * Delete navigation property connections for external * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes an externalConnection object. + * Delete navigation property connections for external * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -93,21 +91,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of an externalConnection object. + * Get connections from external * @return a {@link ExternalConnection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ExternalConnection get() { return get(null); } /** - * Read the properties and relationships of an externalConnection object. + * Get connections from external * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExternalConnection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ExternalConnection get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,23 +113,21 @@ public ExternalConnection get(@jakarta.annotation.Nullable final java.util.funct return this.requestAdapter.send(requestInfo, errorMapping, ExternalConnection::createFromDiscriminatorValue); } /** - * Update the properties of an externalConnection object. + * Update the navigation property connections in external * @param body The request body * @return a {@link ExternalConnection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ExternalConnection patch(@jakarta.annotation.Nonnull final ExternalConnection body) { return patch(body, null); } /** - * Update the properties of an externalConnection object. + * Update the navigation property connections in external * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExternalConnection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ExternalConnection patch(@jakarta.annotation.Nonnull final ExternalConnection body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -144,7 +138,7 @@ public ExternalConnection patch(@jakarta.annotation.Nonnull final ExternalConnec return this.requestAdapter.send(requestInfo, errorMapping, ExternalConnection::createFromDiscriminatorValue); } /** - * Deletes an externalConnection object. + * Delete navigation property connections for external * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -152,7 +146,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes an externalConnection object. + * Delete navigation property connections for external * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -164,7 +158,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of an externalConnection object. + * Get connections from external * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -172,7 +166,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of an externalConnection object. + * Get connections from external * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +178,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an externalConnection object. + * Update the navigation property connections in external * @param body The request body * @return a {@link RequestInformation} */ @@ -193,7 +187,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an externalConnection object. + * Update the navigation property connections in external * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -224,7 +218,7 @@ public ExternalConnectionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of an externalConnection object. + * Get connections from external */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/external/connections/item/groups/GroupsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/external/connections/item/groups/GroupsRequestBuilder.java index 2bed82552d0..7af68128fbb 100644 --- a/src/main/java/com/microsoft/graph/generated/external/connections/item/groups/GroupsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/external/connections/item/groups/GroupsRequestBuilder.java @@ -60,7 +60,7 @@ public GroupsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/external/connections/{externalConnection%2Did}/groups{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get an externalGroup object. + * Get groups from external * @return a {@link ExternalGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public ExternalGroupCollectionResponse get() { return get(null); } /** - * Get an externalGroup object. + * Get groups from external * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExternalGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -82,23 +82,21 @@ public ExternalGroupCollectionResponse get(@jakarta.annotation.Nullable final ja return this.requestAdapter.send(requestInfo, errorMapping, ExternalGroupCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new externalGroup object. + * Create new navigation property to groups for external * @param body The request body * @return a {@link ExternalGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ExternalGroup post(@jakarta.annotation.Nonnull final ExternalGroup body) { return post(body, null); } /** - * Create a new externalGroup object. + * Create new navigation property to groups for external * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExternalGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ExternalGroup post(@jakarta.annotation.Nonnull final ExternalGroup body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ExternalGroup post(@jakarta.annotation.Nonnull final ExternalGroup body, return this.requestAdapter.send(requestInfo, errorMapping, ExternalGroup::createFromDiscriminatorValue); } /** - * Get an externalGroup object. + * Get groups from external * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an externalGroup object. + * Get groups from external * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -129,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new externalGroup object. + * Create new navigation property to groups for external * @param body The request body * @return a {@link RequestInformation} */ @@ -138,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new externalGroup object. + * Create new navigation property to groups for external * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -163,7 +161,7 @@ public GroupsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw return new GroupsRequestBuilder(rawUrl, requestAdapter); } /** - * Get an externalGroup object. + * Get groups from external */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/external/connections/item/groups/item/ExternalGroupItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/external/connections/item/groups/item/ExternalGroupItemRequestBuilder.java index d8649571c6f..f606c345428 100644 --- a/src/main/java/com/microsoft/graph/generated/external/connections/item/groups/item/ExternalGroupItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/external/connections/item/groups/item/ExternalGroupItemRequestBuilder.java @@ -46,18 +46,16 @@ public ExternalGroupItemRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/external/connections/{externalConnection%2Did}/groups/{externalGroup%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an externalGroup object. + * Delete navigation property groups for external * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an externalGroup object. + * Delete navigation property groups for external * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get an externalGroup object. + * Get groups from external * @return a {@link ExternalGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ExternalGroup get() { return get(null); } /** - * Get an externalGroup object. + * Get groups from external * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExternalGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ExternalGroup get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public ExternalGroup get(@jakarta.annotation.Nullable final java.util.function.C return this.requestAdapter.send(requestInfo, errorMapping, ExternalGroup::createFromDiscriminatorValue); } /** - * Update the properties of an externalGroup object. + * Update the navigation property groups in external * @param body The request body * @return a {@link ExternalGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ExternalGroup patch(@jakarta.annotation.Nonnull final ExternalGroup body) { return patch(body, null); } /** - * Update the properties of an externalGroup object. + * Update the navigation property groups in external * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExternalGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ExternalGroup patch(@jakarta.annotation.Nonnull final ExternalGroup body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public ExternalGroup patch(@jakarta.annotation.Nonnull final ExternalGroup body, return this.requestAdapter.send(requestInfo, errorMapping, ExternalGroup::createFromDiscriminatorValue); } /** - * Delete an externalGroup object. + * Delete navigation property groups for external * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an externalGroup object. + * Delete navigation property groups for external * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get an externalGroup object. + * Get groups from external * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an externalGroup object. + * Get groups from external * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an externalGroup object. + * Update the navigation property groups in external * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an externalGroup object. + * Update the navigation property groups in external * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public ExternalGroupItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get an externalGroup object. + * Get groups from external */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/external/connections/item/groups/item/members/MembersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/external/connections/item/groups/item/members/MembersRequestBuilder.java index ddb5dbb818e..b36acf07c9f 100644 --- a/src/main/java/com/microsoft/graph/generated/external/connections/item/groups/item/members/MembersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/external/connections/item/groups/item/members/MembersRequestBuilder.java @@ -82,23 +82,21 @@ public IdentityCollectionResponse get(@jakarta.annotation.Nullable final java.ut return this.requestAdapter.send(requestInfo, errorMapping, IdentityCollectionResponse::createFromDiscriminatorValue); } /** - * Create an identity resource for a new member in an externalGroup. + * Create new navigation property to members for external * @param body The request body * @return a {@link Identity} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Identity post(@jakarta.annotation.Nonnull final Identity body) { return post(body, null); } /** - * Create an identity resource for a new member in an externalGroup. + * Create new navigation property to members for external * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Identity} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Identity post(@jakarta.annotation.Nonnull final Identity body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -129,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an identity resource for a new member in an externalGroup. + * Create new navigation property to members for external * @param body The request body * @return a {@link RequestInformation} */ @@ -138,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an identity resource for a new member in an externalGroup. + * Create new navigation property to members for external * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/external/connections/item/groups/item/members/item/IdentityItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/external/connections/item/groups/item/members/item/IdentityItemRequestBuilder.java index 506f8c9f630..96ab16cc4d0 100644 --- a/src/main/java/com/microsoft/graph/generated/external/connections/item/groups/item/members/item/IdentityItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/external/connections/item/groups/item/members/item/IdentityItemRequestBuilder.java @@ -37,18 +37,16 @@ public IdentityItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/external/connections/{externalConnection%2Did}/groups/{externalGroup%2Did}/members/{identity%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an identity resource to remove the corresponding member from an externalGroup. + * Delete navigation property members for external * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an identity resource to remove the corresponding member from an externalGroup. + * Delete navigation property members for external * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -104,7 +102,7 @@ public Identity patch(@jakarta.annotation.Nonnull final Identity body, @jakarta. return this.requestAdapter.send(requestInfo, errorMapping, Identity::createFromDiscriminatorValue); } /** - * Delete an identity resource to remove the corresponding member from an externalGroup. + * Delete navigation property members for external * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -112,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an identity resource to remove the corresponding member from an externalGroup. + * Delete navigation property members for external * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/external/connections/item/items/ItemsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/external/connections/item/items/ItemsRequestBuilder.java index 12b1171805d..049b56e3dd8 100644 --- a/src/main/java/com/microsoft/graph/generated/external/connections/item/items/ItemsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/external/connections/item/items/ItemsRequestBuilder.java @@ -60,7 +60,7 @@ public ItemsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/external/connections/{externalConnection%2Did}/items{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Read the properties and relationships of an externalItem object. + * Get items from external * @return a {@link ExternalItemCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public ExternalItemCollectionResponse get() { return get(null); } /** - * Read the properties and relationships of an externalItem object. + * Get items from external * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExternalItemCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public ExternalItem post(@jakarta.annotation.Nonnull final ExternalItem body, @j return this.requestAdapter.send(requestInfo, errorMapping, ExternalItem::createFromDiscriminatorValue); } /** - * Read the properties and relationships of an externalItem object. + * Get items from external * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of an externalItem object. + * Get items from external * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public ItemsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new ItemsRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of an externalItem object. + * Get items from external */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/external/connections/item/items/item/ExternalItemItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/external/connections/item/items/item/ExternalItemItemRequestBuilder.java index b3acfc67c0e..64d567b7c75 100644 --- a/src/main/java/com/microsoft/graph/generated/external/connections/item/items/item/ExternalItemItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/external/connections/item/items/item/ExternalItemItemRequestBuilder.java @@ -55,18 +55,16 @@ public ExternalItemItemRequestBuilder(@jakarta.annotation.Nonnull final String r super(requestAdapter, "{+baseurl}/external/connections/{externalConnection%2Did}/items/{externalItem%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an externalItem object. + * Delete navigation property items for external * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an externalItem object. + * Delete navigation property items for external * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -75,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of an externalItem object. + * Get items from external * @return a {@link ExternalItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ExternalItem get() { return get(null); } /** - * Read the properties and relationships of an externalItem object. + * Get items from external * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExternalItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ExternalItem get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +120,7 @@ public ExternalItem put(@jakarta.annotation.Nonnull final ExternalItem body, @ja return this.requestAdapter.send(requestInfo, errorMapping, ExternalItem::createFromDiscriminatorValue); } /** - * Delete an externalItem object. + * Delete navigation property items for external * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +128,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an externalItem object. + * Delete navigation property items for external * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -144,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of an externalItem object. + * Get items from external * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -152,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of an externalItem object. + * Get items from external * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -204,7 +200,7 @@ public ExternalItemItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of an externalItem object. + * Get items from external */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/external/connections/item/operations/OperationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/external/connections/item/operations/OperationsRequestBuilder.java index 55957db7dcf..8553af30ccb 100644 --- a/src/main/java/com/microsoft/graph/generated/external/connections/item/operations/OperationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/external/connections/item/operations/OperationsRequestBuilder.java @@ -60,7 +60,7 @@ public OperationsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/external/connections/{externalConnection%2Did}/operations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Read the properties and relationships of a connectionOperation object. + * Get operations from external * @return a {@link ConnectionOperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public ConnectionOperationCollectionResponse get() { return get(null); } /** - * Read the properties and relationships of a connectionOperation object. + * Get operations from external * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConnectionOperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public ConnectionOperation post(@jakarta.annotation.Nonnull final ConnectionOper return this.requestAdapter.send(requestInfo, errorMapping, ConnectionOperation::createFromDiscriminatorValue); } /** - * Read the properties and relationships of a connectionOperation object. + * Get operations from external * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a connectionOperation object. + * Get operations from external * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public OperationsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new OperationsRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of a connectionOperation object. + * Get operations from external */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/external/connections/item/operations/item/ConnectionOperationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/external/connections/item/operations/item/ConnectionOperationItemRequestBuilder.java index 32b8bf3bca9..1f824ba3176 100644 --- a/src/main/java/com/microsoft/graph/generated/external/connections/item/operations/item/ConnectionOperationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/external/connections/item/operations/item/ConnectionOperationItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a connectionOperation object. + * Get operations from external * @return a {@link ConnectionOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConnectionOperation get() { return get(null); } /** - * Read the properties and relationships of a connectionOperation object. + * Get operations from external * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConnectionOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConnectionOperation get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a connectionOperation object. + * Get operations from external * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a connectionOperation object. + * Get operations from external * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public ConnectionOperationItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a connectionOperation object. + * Get operations from external */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/external/connections/item/schema/SchemaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/external/connections/item/schema/SchemaRequestBuilder.java index 276f32cbc65..c926565ae70 100644 --- a/src/main/java/com/microsoft/graph/generated/external/connections/item/schema/SchemaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/external/connections/item/schema/SchemaRequestBuilder.java @@ -37,21 +37,19 @@ public SchemaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/external/connections/{externalConnection%2Did}/schema{?%24expand,%24select}", rawUrl); } /** - * Read the properties and relationships of a schema object. + * Get schema from external * @return a {@link Schema} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Schema get() { return get(null); } /** - * Read the properties and relationships of a schema object. + * Get schema from external * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Schema} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Schema get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -61,23 +59,21 @@ public Schema get(@jakarta.annotation.Nullable final java.util.function.Consumer return this.requestAdapter.send(requestInfo, errorMapping, Schema::createFromDiscriminatorValue); } /** - * Create a new schema object. + * Update the navigation property schema in external * @param body The request body * @return a {@link Schema} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Schema patch(@jakarta.annotation.Nonnull final Schema body) { return patch(body, null); } /** - * Create a new schema object. + * Update the navigation property schema in external * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Schema} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Schema patch(@jakarta.annotation.Nonnull final Schema body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -88,7 +84,7 @@ public Schema patch(@jakarta.annotation.Nonnull final Schema body, @jakarta.anno return this.requestAdapter.send(requestInfo, errorMapping, Schema::createFromDiscriminatorValue); } /** - * Read the properties and relationships of a schema object. + * Get schema from external * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -96,7 +92,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a schema object. + * Get schema from external * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -108,7 +104,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new schema object. + * Update the navigation property schema in external * @param body The request body * @return a {@link RequestInformation} */ @@ -117,7 +113,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Create a new schema object. + * Update the navigation property schema in external * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -142,7 +138,7 @@ public SchemaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw return new SchemaRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of a schema object. + * Get schema from external */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/delta/DeltaRequestBuilder.java index b8b89f68ba7..6b97ecf537d 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/groups/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Get newly created, updated, or deleted groups, including group membership changes, without having to perform a full read of the entire group collection. See Using Delta Query for details. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Get newly created, updated, or deleted groups, including group membership changes, without having to perform a full read of the entire group collection. See Using Delta Query for details. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Get newly created, updated, or deleted groups, including group membership changes, without having to perform a full read of the entire group collection. See Using Delta Query for details. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Get newly created, updated, or deleted groups, including group membership changes, without having to perform a full read of the entire group collection. See Using Delta Query for details. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Get newly created, updated, or deleted groups, including group membership changes, without having to perform a full read of the entire group collection. See Using Delta Query for details. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/acceptedsenders/AcceptedSendersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/acceptedsenders/AcceptedSendersRequestBuilder.java index 75236656342..03ce379a0fb 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/acceptedsenders/AcceptedSendersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/acceptedsenders/AcceptedSendersRequestBuilder.java @@ -68,21 +68,19 @@ public AcceptedSendersRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/groups/{group%2Did}/acceptedSenders{?%24count,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Users in the accepted senders list can post to conversations of the group (identified in the GET request URL).Make sure you do not specify the same user or group in the accepted senders and rejected senders lists, otherwise you will get an error. + * The list of users or groups allowed to create posts or calendar events in this group. If this list is non-empty, then only users or groups listed here are allowed to post. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get() { return get(null); } /** - * Users in the accepted senders list can post to conversations of the group (identified in the GET request URL).Make sure you do not specify the same user or group in the accepted senders and rejected senders lists, otherwise you will get an error. + * The list of users or groups allowed to create posts or calendar events in this group. If this list is non-empty, then only users or groups listed here are allowed to post. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -92,7 +90,7 @@ public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, DirectoryObjectCollectionResponse::createFromDiscriminatorValue); } /** - * Users in the accepted senders list can post to conversations of the group (identified in the GET request URL).Make sure you do not specify the same user or group in the accepted senders and rejected senders lists, otherwise you will get an error. + * The list of users or groups allowed to create posts or calendar events in this group. If this list is non-empty, then only users or groups listed here are allowed to post. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -100,7 +98,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Users in the accepted senders list can post to conversations of the group (identified in the GET request URL).Make sure you do not specify the same user or group in the accepted senders and rejected senders lists, otherwise you will get an error. + * The list of users or groups allowed to create posts or calendar events in this group. If this list is non-empty, then only users or groups listed here are allowed to post. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -122,7 +120,7 @@ public AcceptedSendersRequestBuilder withUrl(@jakarta.annotation.Nonnull final S return new AcceptedSendersRequestBuilder(rawUrl, requestAdapter); } /** - * Users in the accepted senders list can post to conversations of the group (identified in the GET request URL).Make sure you do not specify the same user or group in the accepted senders and rejected senders lists, otherwise you will get an error. + * The list of users or groups allowed to create posts or calendar events in this group. If this list is non-empty, then only users or groups listed here are allowed to post. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/acceptedsenders/item/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/acceptedsenders/item/ref/RefRequestBuilder.java index 4845d48fa48..9cc6cbed887 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/acceptedsenders/item/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/acceptedsenders/item/ref/RefRequestBuilder.java @@ -35,18 +35,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/groups/{group%2Did}/acceptedSenders/{directoryObject%2Did}/$ref", rawUrl); } /** - * Remove acceptedSender + * Delete ref of navigation property acceptedSenders for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove acceptedSender + * Delete ref of navigation property acceptedSenders for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -55,7 +53,7 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove acceptedSender + * Delete ref of navigation property acceptedSenders for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -63,7 +61,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove acceptedSender + * Delete ref of navigation property acceptedSenders for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/acceptedsenders/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/acceptedsenders/ref/RefRequestBuilder.java index 0c1ed125edc..9af0cd4489b 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/acceptedsenders/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/acceptedsenders/ref/RefRequestBuilder.java @@ -38,18 +38,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/groups/{group%2Did}/acceptedSenders/$ref?@id={%40id}{&%24count,%24filter,%24orderby,%24skip,%24top}", rawUrl); } /** - * Remove acceptedSender + * Delete ref of navigation property acceptedSenders for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove acceptedSender + * Delete ref of navigation property acceptedSenders for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -58,21 +56,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Users in the accepted senders list can post to conversations of the group (identified in the GET request URL).Make sure you do not specify the same user or group in the accepted senders and rejected senders lists, otherwise you will get an error. + * The list of users or groups allowed to create posts or calendar events in this group. If this list is non-empty, then only users or groups listed here are allowed to post. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get() { return get(null); } /** - * Users in the accepted senders list can post to conversations of the group (identified in the GET request URL).Make sure you do not specify the same user or group in the accepted senders and rejected senders lists, otherwise you will get an error. + * The list of users or groups allowed to create posts or calendar events in this group. If this list is non-empty, then only users or groups listed here are allowed to post. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -82,20 +78,18 @@ public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util return this.requestAdapter.send(requestInfo, errorMapping, StringCollectionResponse::createFromDiscriminatorValue); } /** - * Specify the user or group in @odata.id in the request body. Users in the accepted senders list can post to conversations of the group. Make sure you don't specify the same user or group in the accepted senders and rejected senders lists, otherwise you'll get an error. + * Create new navigation property ref to acceptedSenders for groups * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body) { post(body, null); } /** - * Specify the user or group in @odata.id in the request body. Users in the accepted senders list can post to conversations of the group. Make sure you don't specify the same user or group in the accepted senders and rejected senders lists, otherwise you'll get an error. + * Create new navigation property ref to acceptedSenders for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { Objects.requireNonNull(body); @@ -105,7 +99,7 @@ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakart this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove acceptedSender + * Delete ref of navigation property acceptedSenders for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -113,7 +107,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove acceptedSender + * Delete ref of navigation property acceptedSenders for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Users in the accepted senders list can post to conversations of the group (identified in the GET request URL).Make sure you do not specify the same user or group in the accepted senders and rejected senders lists, otherwise you will get an error. + * The list of users or groups allowed to create posts or calendar events in this group. If this list is non-empty, then only users or groups listed here are allowed to post. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -133,7 +127,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Users in the accepted senders list can post to conversations of the group (identified in the GET request URL).Make sure you do not specify the same user or group in the accepted senders and rejected senders lists, otherwise you will get an error. + * The list of users or groups allowed to create posts or calendar events in this group. If this list is non-empty, then only users or groups listed here are allowed to post. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Specify the user or group in @odata.id in the request body. Users in the accepted senders list can post to conversations of the group. Make sure you don't specify the same user or group in the accepted senders and rejected senders lists, otherwise you'll get an error. + * Create new navigation property ref to acceptedSenders for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -154,7 +148,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Specify the user or group in @odata.id in the request body. Users in the accepted senders list can post to conversations of the group. Make sure you don't specify the same user or group in the accepted senders and rejected senders lists, otherwise you'll get an error. + * Create new navigation property ref to acceptedSenders for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -179,7 +173,7 @@ public RefRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl return new RefRequestBuilder(rawUrl, requestAdapter); } /** - * Remove acceptedSender + * Delete ref of navigation property acceptedSenders for groups */ @jakarta.annotation.Generated("com.microsoft.kiota") public class DeleteQueryParameters implements QueryParameters { @@ -211,7 +205,7 @@ public class DeleteRequestConfiguration extends BaseRequestConfiguration { public DeleteQueryParameters queryParameters = new DeleteQueryParameters(); } /** - * Users in the accepted senders list can post to conversations of the group (identified in the GET request URL).Make sure you do not specify the same user or group in the accepted senders and rejected senders lists, otherwise you will get an error. + * The list of users or groups allowed to create posts or calendar events in this group. If this list is non-empty, then only users or groups listed here are allowed to post. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/approleassignments/AppRoleAssignmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/approleassignments/AppRoleAssignmentsRequestBuilder.java index 0902c0deb55..caa1e11a7e9 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/approleassignments/AppRoleAssignmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/approleassignments/AppRoleAssignmentsRequestBuilder.java @@ -63,7 +63,6 @@ public AppRoleAssignmentsRequestBuilder(@jakarta.annotation.Nonnull final String * Represents the app roles a group has been granted for an application. Supports $expand. * @return a {@link AppRoleAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AppRoleAssignmentCollectionResponse get() { @@ -74,7 +73,6 @@ public AppRoleAssignmentCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AppRoleAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AppRoleAssignmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public AppRoleAssignmentCollectionResponse get(@jakarta.annotation.Nullable fina return this.requestAdapter.send(requestInfo, errorMapping, AppRoleAssignmentCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to assign an app role to a security group. All direct members of the group will be considered assigned. Security groups with dynamic memberships are supported. To grant an app role assignment to a group, you need three identifiers: Additional licenses might be required to use a group to manage access to applications. + * Create new navigation property to appRoleAssignments for groups * @param body The request body * @return a {@link AppRoleAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AppRoleAssignment post(@jakarta.annotation.Nonnull final AppRoleAssignment body) { return post(body, null); } /** - * Use this API to assign an app role to a security group. All direct members of the group will be considered assigned. Security groups with dynamic memberships are supported. To grant an app role assignment to a group, you need three identifiers: Additional licenses might be required to use a group to manage access to applications. + * Create new navigation property to appRoleAssignments for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AppRoleAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AppRoleAssignment post(@jakarta.annotation.Nonnull final AppRoleAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to assign an app role to a security group. All direct members of the group will be considered assigned. Security groups with dynamic memberships are supported. To grant an app role assignment to a group, you need three identifiers: Additional licenses might be required to use a group to manage access to applications. + * Create new navigation property to appRoleAssignments for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to assign an app role to a security group. All direct members of the group will be considered assigned. Security groups with dynamic memberships are supported. To grant an app role assignment to a group, you need three identifiers: Additional licenses might be required to use a group to manage access to applications. + * Create new navigation property to appRoleAssignments for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/approleassignments/item/AppRoleAssignmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/approleassignments/item/AppRoleAssignmentItemRequestBuilder.java index 22d48612d88..b2ee7c70891 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/approleassignments/item/AppRoleAssignmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/approleassignments/item/AppRoleAssignmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public AppRoleAssignmentItemRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/groups/{group%2Did}/appRoleAssignments/{appRoleAssignment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes an appRoleAssignment that a group has been granted. + * Delete navigation property appRoleAssignments for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes an appRoleAssignment that a group has been granted. + * Delete navigation property appRoleAssignments for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -104,7 +102,7 @@ public AppRoleAssignment patch(@jakarta.annotation.Nonnull final AppRoleAssignme return this.requestAdapter.send(requestInfo, errorMapping, AppRoleAssignment::createFromDiscriminatorValue); } /** - * Deletes an appRoleAssignment that a group has been granted. + * Delete navigation property appRoleAssignments for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -112,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes an appRoleAssignment that a group has been granted. + * Delete navigation property appRoleAssignments for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarpermissions/CalendarPermissionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarpermissions/CalendarPermissionsRequestBuilder.java index 91f200dd895..d50605f5f62 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarpermissions/CalendarPermissionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarpermissions/CalendarPermissionsRequestBuilder.java @@ -60,21 +60,19 @@ public CalendarPermissionsRequestBuilder(@jakarta.annotation.Nonnull final Strin super(requestAdapter, "{+baseurl}/groups/{group%2Did}/calendar/calendarPermissions{?%24count,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get a collection of calendarPermission resources that describe the identity and roles of users with whom the specified calendar has been shared or delegated. Here, the calendar can be a user calendar or group calendar. + * The permissions of the users with whom the calendar is shared. * @return a {@link CalendarPermissionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarPermissionCollectionResponse get() { return get(null); } /** - * Get a collection of calendarPermission resources that describe the identity and roles of users with whom the specified calendar has been shared or delegated. Here, the calendar can be a user calendar or group calendar. + * The permissions of the users with whom the calendar is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CalendarPermissionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarPermissionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public CalendarPermissionCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, CalendarPermissionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a calendarPermission resource to specify the identity and role of the user with whom the specified calendar is being shared or delegated. + * Create new navigation property to calendarPermissions for groups * @param body The request body * @return a {@link CalendarPermission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarPermission post(@jakarta.annotation.Nonnull final CalendarPermission body) { return post(body, null); } /** - * Create a calendarPermission resource to specify the identity and role of the user with whom the specified calendar is being shared or delegated. + * Create new navigation property to calendarPermissions for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CalendarPermission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarPermission post(@jakarta.annotation.Nonnull final CalendarPermission body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public CalendarPermission post(@jakarta.annotation.Nonnull final CalendarPermiss return this.requestAdapter.send(requestInfo, errorMapping, CalendarPermission::createFromDiscriminatorValue); } /** - * Get a collection of calendarPermission resources that describe the identity and roles of users with whom the specified calendar has been shared or delegated. Here, the calendar can be a user calendar or group calendar. + * The permissions of the users with whom the calendar is shared. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a collection of calendarPermission resources that describe the identity and roles of users with whom the specified calendar has been shared or delegated. Here, the calendar can be a user calendar or group calendar. + * The permissions of the users with whom the calendar is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a calendarPermission resource to specify the identity and role of the user with whom the specified calendar is being shared or delegated. + * Create new navigation property to calendarPermissions for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a calendarPermission resource to specify the identity and role of the user with whom the specified calendar is being shared or delegated. + * Create new navigation property to calendarPermissions for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public CalendarPermissionsRequestBuilder withUrl(@jakarta.annotation.Nonnull fin return new CalendarPermissionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a collection of calendarPermission resources that describe the identity and roles of users with whom the specified calendar has been shared or delegated. Here, the calendar can be a user calendar or group calendar. + * The permissions of the users with whom the calendar is shared. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarpermissions/item/CalendarPermissionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarpermissions/item/CalendarPermissionItemRequestBuilder.java index 0896360cda5..da90f1bf1aa 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarpermissions/item/CalendarPermissionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarpermissions/item/CalendarPermissionItemRequestBuilder.java @@ -37,18 +37,16 @@ public CalendarPermissionItemRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/groups/{group%2Did}/calendar/calendarPermissions/{calendarPermission%2Did}{?%24select}", rawUrl); } /** - * Delete calendarPermission. + * Delete navigation property calendarPermissions for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete calendarPermission. + * Delete navigation property calendarPermissions for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the specified permissions object of a user or group calendar that has been shared. + * The permissions of the users with whom the calendar is shared. * @return a {@link CalendarPermission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarPermission get() { return get(null); } /** - * Get the specified permissions object of a user or group calendar that has been shared. + * The permissions of the users with whom the calendar is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CalendarPermission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarPermission get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public CalendarPermission get(@jakarta.annotation.Nullable final java.util.funct return this.requestAdapter.send(requestInfo, errorMapping, CalendarPermission::createFromDiscriminatorValue); } /** - * Update the permissions assigned to an existing share recipient or delegate, through the corresponding calendarPermission object for a calendar. + * Update the navigation property calendarPermissions in groups * @param body The request body * @return a {@link CalendarPermission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarPermission patch(@jakarta.annotation.Nonnull final CalendarPermission body) { return patch(body, null); } /** - * Update the permissions assigned to an existing share recipient or delegate, through the corresponding calendarPermission object for a calendar. + * Update the navigation property calendarPermissions in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CalendarPermission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarPermission patch(@jakarta.annotation.Nonnull final CalendarPermission body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public CalendarPermission patch(@jakarta.annotation.Nonnull final CalendarPermis return this.requestAdapter.send(requestInfo, errorMapping, CalendarPermission::createFromDiscriminatorValue); } /** - * Delete calendarPermission. + * Delete navigation property calendarPermissions for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete calendarPermission. + * Delete navigation property calendarPermissions for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the specified permissions object of a user or group calendar that has been shared. + * The permissions of the users with whom the calendar is shared. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the specified permissions object of a user or group calendar that has been shared. + * The permissions of the users with whom the calendar is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the permissions assigned to an existing share recipient or delegate, through the corresponding calendarPermission object for a calendar. + * Update the navigation property calendarPermissions in groups * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the permissions assigned to an existing share recipient or delegate, through the corresponding calendarPermission object for a calendar. + * Update the navigation property calendarPermissions in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public CalendarPermissionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the specified permissions object of a user or group calendar that has been shared. + * The permissions of the users with whom the calendar is shared. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/CalendarViewRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/CalendarViewRequestBuilder.java index 4396ea2ce3c..caf223d0c41 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/CalendarViewRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/CalendarViewRequestBuilder.java @@ -71,7 +71,6 @@ public CalendarViewRequestBuilder(@jakarta.annotation.Nonnull final String rawUr * The calendar view for the calendar. Navigation property. Read-only. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get() { @@ -82,7 +81,6 @@ public EventCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/attachments/AttachmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/attachments/AttachmentsRequestBuilder.java index afc2cf7bc31..51fc87c87e0 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/attachments/AttachmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/attachments/AttachmentsRequestBuilder.java @@ -69,21 +69,19 @@ public AttachmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/groups/{group%2Did}/calendar/calendarView/{event%2Did}/attachments{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get() { return get(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, AttachmentCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for groups * @param body The request body * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body) { return post(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public AttachmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AttachmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/attachments/item/AttachmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/attachments/item/AttachmentItemRequestBuilder.java index f88ee4de0d0..b46a5d07322 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/attachments/item/AttachmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/attachments/item/AttachmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public AttachmentItemRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/groups/{group%2Did}/calendar/calendarView/{event%2Did}/attachments/{attachment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -79,7 +77,7 @@ public Attachment get(@jakarta.annotation.Nullable final java.util.function.Cons return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -87,7 +85,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/extensions/ExtensionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/extensions/ExtensionsRequestBuilder.java index 7ffa1d3bdbf..da9a5d9f7c8 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/extensions/ExtensionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/extensions/ExtensionsRequestBuilder.java @@ -60,7 +60,7 @@ public ExtensionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/groups/{group%2Did}/calendar/calendarView/{event%2Did}/extensions{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public ExtensionCollectionResponse get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -82,23 +82,21 @@ public ExtensionCollectionResponse get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, ExtensionCollectionResponse::createFromDiscriminatorValue); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for groups * @param body The request body * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body) { return post(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, Extension::createFromDiscriminatorValue); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -129,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -138,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -163,7 +161,7 @@ public ExtensionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ExtensionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/extensions/item/ExtensionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/extensions/item/ExtensionItemRequestBuilder.java index e53c89a17b4..7d601dcb7fa 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/extensions/item/ExtensionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/extensions/item/ExtensionItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public ExtensionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/instances/InstancesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/instances/InstancesRequestBuilder.java index 97aa7f4ebc6..14d5c13eaa2 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/instances/InstancesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/instances/InstancesRequestBuilder.java @@ -71,7 +71,6 @@ public InstancesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, * 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. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get() { @@ -82,7 +81,6 @@ public EventCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/instances/item/attachments/AttachmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/instances/item/attachments/AttachmentsRequestBuilder.java index a0fa8c1fce8..b9d1b803440 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/instances/item/attachments/AttachmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/instances/item/attachments/AttachmentsRequestBuilder.java @@ -69,21 +69,19 @@ public AttachmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/groups/{group%2Did}/calendar/calendarView/{event%2Did}/instances/{event%2Did1}/attachments{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get() { return get(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, AttachmentCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for groups * @param body The request body * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body) { return post(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public AttachmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AttachmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java index 5121f3c0c56..eb3a18d6ff0 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public AttachmentItemRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/groups/{group%2Did}/calendar/calendarView/{event%2Did}/instances/{event%2Did1}/attachments/{attachment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -79,7 +77,7 @@ public Attachment get(@jakarta.annotation.Nullable final java.util.function.Cons return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -87,7 +85,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/instances/item/extensions/ExtensionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/instances/item/extensions/ExtensionsRequestBuilder.java index 233bc36392b..0c543d94fb5 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/instances/item/extensions/ExtensionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/instances/item/extensions/ExtensionsRequestBuilder.java @@ -60,7 +60,7 @@ public ExtensionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/groups/{group%2Did}/calendar/calendarView/{event%2Did}/instances/{event%2Did1}/extensions{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public ExtensionCollectionResponse get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -82,23 +82,21 @@ public ExtensionCollectionResponse get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, ExtensionCollectionResponse::createFromDiscriminatorValue); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for groups * @param body The request body * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body) { return post(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, Extension::createFromDiscriminatorValue); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -129,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -138,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -163,7 +161,7 @@ public ExtensionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ExtensionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java index 07f3c6d7115..8c5e7c13f0b 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/calendarview/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public ExtensionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/EventsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/EventsRequestBuilder.java index 5e961a62377..ce53191b70e 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/EventsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/EventsRequestBuilder.java @@ -69,21 +69,19 @@ public EventsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/groups/{group%2Did}/calendar/events{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of events in a calendar. The calendar can be one for a user, or the default calendar of a Microsoft 365 group. The list of events contains single instance meetings and series masters. To get expanded event instances, you can get the calendar view, orget the instances of an event. + * The events in the calendar. Navigation property. Read-only. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get() { return get(null); } /** - * Retrieve a list of events in a calendar. The calendar can be one for a user, or the default calendar of a Microsoft 365 group. The list of events contains single instance meetings and series masters. To get expanded event instances, you can get the calendar view, orget the instances of an event. + * The events in the calendar. Navigation property. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public EventCollectionResponse get(@jakarta.annotation.Nullable final java.util. return this.requestAdapter.send(requestInfo, errorMapping, EventCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to create a new event in a calendar. The calendar can be one for a user, or the default calendar of a Microsoft 365 group. + * Create new navigation property to events for groups * @param body The request body * @return a {@link Event} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Event post(@jakarta.annotation.Nonnull final Event body) { return post(body, null); } /** - * Use this API to create a new event in a calendar. The calendar can be one for a user, or the default calendar of a Microsoft 365 group. + * Create new navigation property to events for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Event} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Event post(@jakarta.annotation.Nonnull final Event body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public Event post(@jakarta.annotation.Nonnull final Event body, @jakarta.annotat return this.requestAdapter.send(requestInfo, errorMapping, Event::createFromDiscriminatorValue); } /** - * Retrieve a list of events in a calendar. The calendar can be one for a user, or the default calendar of a Microsoft 365 group. The list of events contains single instance meetings and series masters. To get expanded event instances, you can get the calendar view, orget the instances of an event. + * The events in the calendar. Navigation property. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of events in a calendar. The calendar can be one for a user, or the default calendar of a Microsoft 365 group. The list of events contains single instance meetings and series masters. To get expanded event instances, you can get the calendar view, orget the instances of an event. + * The events in the calendar. Navigation property. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to create a new event in a calendar. The calendar can be one for a user, or the default calendar of a Microsoft 365 group. + * Create new navigation property to events for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to create a new event in a calendar. The calendar can be one for a user, or the default calendar of a Microsoft 365 group. + * Create new navigation property to events for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public EventsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw return new EventsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of events in a calendar. The calendar can be one for a user, or the default calendar of a Microsoft 365 group. The list of events contains single instance meetings and series masters. To get expanded event instances, you can get the calendar view, orget the instances of an event. + * The events in the calendar. Navigation property. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/EventItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/EventItemRequestBuilder.java index 4581e31a1e7..a7460029317 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/EventItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/EventItemRequestBuilder.java @@ -176,23 +176,21 @@ public Event get(@jakarta.annotation.Nullable final java.util.function.Consumer< return this.requestAdapter.send(requestInfo, errorMapping, Event::createFromDiscriminatorValue); } /** - * Update an event object. + * Update the navigation property events in groups * @param body The request body * @return a {@link Event} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Event patch(@jakarta.annotation.Nonnull final Event body) { return patch(body, null); } /** - * Update an event object. + * Update the navigation property events in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Event} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Event patch(@jakarta.annotation.Nonnull final Event body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -243,7 +241,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update an event object. + * Update the navigation property events in groups * @param body The request body * @return a {@link RequestInformation} */ @@ -252,7 +250,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update an event object. + * Update the navigation property events in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/attachments/AttachmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/attachments/AttachmentsRequestBuilder.java index d04be85bc40..4d2c9f149ad 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/attachments/AttachmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/attachments/AttachmentsRequestBuilder.java @@ -69,21 +69,19 @@ public AttachmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/groups/{group%2Did}/calendar/events/{event%2Did}/attachments{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get() { return get(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, AttachmentCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for groups * @param body The request body * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body) { return post(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public AttachmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AttachmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/attachments/item/AttachmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/attachments/item/AttachmentItemRequestBuilder.java index 68331ddb0ac..d0bda5768e6 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/attachments/item/AttachmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/attachments/item/AttachmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public AttachmentItemRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/groups/{group%2Did}/calendar/events/{event%2Did}/attachments/{attachment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -79,7 +77,7 @@ public Attachment get(@jakarta.annotation.Nullable final java.util.function.Cons return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -87,7 +85,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/extensions/ExtensionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/extensions/ExtensionsRequestBuilder.java index d2740edbea8..baa9a70268d 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/extensions/ExtensionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/extensions/ExtensionsRequestBuilder.java @@ -60,7 +60,7 @@ public ExtensionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/groups/{group%2Did}/calendar/events/{event%2Did}/extensions{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public ExtensionCollectionResponse get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -82,23 +82,21 @@ public ExtensionCollectionResponse get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, ExtensionCollectionResponse::createFromDiscriminatorValue); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for groups * @param body The request body * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body) { return post(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, Extension::createFromDiscriminatorValue); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -129,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -138,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -163,7 +161,7 @@ public ExtensionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ExtensionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/extensions/item/ExtensionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/extensions/item/ExtensionItemRequestBuilder.java index 491c8206931..7ab26621328 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/extensions/item/ExtensionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/extensions/item/ExtensionItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public ExtensionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/instances/InstancesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/instances/InstancesRequestBuilder.java index 290ce46d665..4d2fe3678bf 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/instances/InstancesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/instances/InstancesRequestBuilder.java @@ -71,7 +71,6 @@ public InstancesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, * 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. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get() { @@ -82,7 +81,6 @@ public EventCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/instances/item/attachments/AttachmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/instances/item/attachments/AttachmentsRequestBuilder.java index 5d521e70ba6..a880c70223f 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/instances/item/attachments/AttachmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/instances/item/attachments/AttachmentsRequestBuilder.java @@ -69,21 +69,19 @@ public AttachmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/groups/{group%2Did}/calendar/events/{event%2Did}/instances/{event%2Did1}/attachments{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get() { return get(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, AttachmentCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for groups * @param body The request body * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body) { return post(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public AttachmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AttachmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java index d12ce004ce7..091da380476 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public AttachmentItemRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/groups/{group%2Did}/calendar/events/{event%2Did}/instances/{event%2Did1}/attachments/{attachment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -79,7 +77,7 @@ public Attachment get(@jakarta.annotation.Nullable final java.util.function.Cons return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -87,7 +85,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/instances/item/extensions/ExtensionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/instances/item/extensions/ExtensionsRequestBuilder.java index 5c84c6e897b..127acc7e110 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/instances/item/extensions/ExtensionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/instances/item/extensions/ExtensionsRequestBuilder.java @@ -60,7 +60,7 @@ public ExtensionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/groups/{group%2Did}/calendar/events/{event%2Did}/instances/{event%2Did1}/extensions{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public ExtensionCollectionResponse get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -82,23 +82,21 @@ public ExtensionCollectionResponse get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, ExtensionCollectionResponse::createFromDiscriminatorValue); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for groups * @param body The request body * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body) { return post(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, Extension::createFromDiscriminatorValue); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -129,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -138,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -163,7 +161,7 @@ public ExtensionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ExtensionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java index b6b6a16794a..d8f621fa37d 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/calendar/events/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public ExtensionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/CalendarViewRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/CalendarViewRequestBuilder.java index 5729c0bb770..65cbd82e679 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/CalendarViewRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/CalendarViewRequestBuilder.java @@ -71,7 +71,6 @@ public CalendarViewRequestBuilder(@jakarta.annotation.Nonnull final String rawUr * The calendar view for the calendar. Read-only. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get() { @@ -82,7 +81,6 @@ public EventCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/attachments/AttachmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/attachments/AttachmentsRequestBuilder.java index 0f459e7b20f..c4df8677d3a 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/attachments/AttachmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/attachments/AttachmentsRequestBuilder.java @@ -69,21 +69,19 @@ public AttachmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/groups/{group%2Did}/calendarView/{event%2Did}/attachments{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get() { return get(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, AttachmentCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for groups * @param body The request body * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body) { return post(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public AttachmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AttachmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/attachments/item/AttachmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/attachments/item/AttachmentItemRequestBuilder.java index 42c81ddb9f5..48117cda68d 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/attachments/item/AttachmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/attachments/item/AttachmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public AttachmentItemRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/groups/{group%2Did}/calendarView/{event%2Did}/attachments/{attachment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -79,7 +77,7 @@ public Attachment get(@jakarta.annotation.Nullable final java.util.function.Cons return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -87,7 +85,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/extensions/ExtensionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/extensions/ExtensionsRequestBuilder.java index 5fbd4a669e5..9b9b56598b3 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/extensions/ExtensionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/extensions/ExtensionsRequestBuilder.java @@ -60,7 +60,7 @@ public ExtensionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/groups/{group%2Did}/calendarView/{event%2Did}/extensions{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public ExtensionCollectionResponse get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -82,23 +82,21 @@ public ExtensionCollectionResponse get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, ExtensionCollectionResponse::createFromDiscriminatorValue); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for groups * @param body The request body * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body) { return post(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, Extension::createFromDiscriminatorValue); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -129,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -138,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -163,7 +161,7 @@ public ExtensionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ExtensionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/extensions/item/ExtensionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/extensions/item/ExtensionItemRequestBuilder.java index 1a182939571..a240dbca403 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/extensions/item/ExtensionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/extensions/item/ExtensionItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public ExtensionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/instances/InstancesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/instances/InstancesRequestBuilder.java index 02a3b15a2b9..37c82dcfdf0 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/instances/InstancesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/instances/InstancesRequestBuilder.java @@ -71,7 +71,6 @@ public InstancesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, * 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. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get() { @@ -82,7 +81,6 @@ public EventCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/instances/item/attachments/AttachmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/instances/item/attachments/AttachmentsRequestBuilder.java index b72b7990163..35473bbc671 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/instances/item/attachments/AttachmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/instances/item/attachments/AttachmentsRequestBuilder.java @@ -69,21 +69,19 @@ public AttachmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/groups/{group%2Did}/calendarView/{event%2Did}/instances/{event%2Did1}/attachments{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get() { return get(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, AttachmentCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for groups * @param body The request body * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body) { return post(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public AttachmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AttachmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java index 165e7cf84a8..d73fb013f20 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public AttachmentItemRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/groups/{group%2Did}/calendarView/{event%2Did}/instances/{event%2Did1}/attachments/{attachment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -79,7 +77,7 @@ public Attachment get(@jakarta.annotation.Nullable final java.util.function.Cons return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -87,7 +85,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/instances/item/extensions/ExtensionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/instances/item/extensions/ExtensionsRequestBuilder.java index 0612cf68400..e01637f00d2 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/instances/item/extensions/ExtensionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/instances/item/extensions/ExtensionsRequestBuilder.java @@ -60,7 +60,7 @@ public ExtensionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/groups/{group%2Did}/calendarView/{event%2Did}/instances/{event%2Did1}/extensions{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public ExtensionCollectionResponse get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -82,23 +82,21 @@ public ExtensionCollectionResponse get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, ExtensionCollectionResponse::createFromDiscriminatorValue); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for groups * @param body The request body * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body) { return post(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, Extension::createFromDiscriminatorValue); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -129,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -138,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -163,7 +161,7 @@ public ExtensionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ExtensionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java index 1db0cda4490..6e5759331f7 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/calendarview/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public ExtensionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/conversations/ConversationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/conversations/ConversationsRequestBuilder.java index dd90069dd99..0a5d7d29c67 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/conversations/ConversationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/conversations/ConversationsRequestBuilder.java @@ -60,21 +60,19 @@ public ConversationsRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/groups/{group%2Did}/conversations{?%24count,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of conversations in this group. + * The group's conversations. * @return a {@link ConversationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationCollectionResponse get() { return get(null); } /** - * Retrieve the list of conversations in this group. + * The group's conversations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public ConversationCollectionResponse get(@jakarta.annotation.Nullable final jav return this.requestAdapter.send(requestInfo, errorMapping, ConversationCollectionResponse::createFromDiscriminatorValue); } /** - * Use reply thread or reply post to further post to that conversation. + * Create new navigation property to conversations for groups * @param body The request body * @return a {@link Conversation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Conversation post(@jakarta.annotation.Nonnull final Conversation body) { return post(body, null); } /** - * Use reply thread or reply post to further post to that conversation. + * Create new navigation property to conversations for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Conversation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Conversation post(@jakarta.annotation.Nonnull final Conversation body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public Conversation post(@jakarta.annotation.Nonnull final Conversation body, @j return this.requestAdapter.send(requestInfo, errorMapping, Conversation::createFromDiscriminatorValue); } /** - * Retrieve the list of conversations in this group. + * The group's conversations. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of conversations in this group. + * The group's conversations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use reply thread or reply post to further post to that conversation. + * Create new navigation property to conversations for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use reply thread or reply post to further post to that conversation. + * Create new navigation property to conversations for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ConversationsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new ConversationsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of conversations in this group. + * The group's conversations. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/ConversationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/ConversationItemRequestBuilder.java index 7310470a448..a886667319a 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/ConversationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/ConversationItemRequestBuilder.java @@ -46,18 +46,16 @@ public ConversationItemRequestBuilder(@jakarta.annotation.Nonnull final String r super(requestAdapter, "{+baseurl}/groups/{group%2Did}/conversations/{conversation%2Did}{?%24select}", rawUrl); } /** - * Delete conversation. + * Delete navigation property conversations for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete conversation. + * Delete navigation property conversations for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of conversation object. + * The group's conversations. * @return a {@link Conversation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Conversation get() { return get(null); } /** - * Retrieve the properties and relationships of conversation object. + * The group's conversations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Conversation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Conversation get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,7 +86,7 @@ public Conversation get(@jakarta.annotation.Nullable final java.util.function.Co return this.requestAdapter.send(requestInfo, errorMapping, Conversation::createFromDiscriminatorValue); } /** - * Delete conversation. + * Delete navigation property conversations for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -98,7 +94,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete conversation. + * Delete navigation property conversations for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -110,7 +106,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of conversation object. + * The group's conversations. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -118,7 +114,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of conversation object. + * The group's conversations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public ConversationItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of conversation object. + * The group's conversations. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/threads/ThreadsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/threads/ThreadsRequestBuilder.java index 4cba51e1994..b146705898a 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/threads/ThreadsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/threads/ThreadsRequestBuilder.java @@ -60,21 +60,19 @@ public ThreadsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/groups/{group%2Did}/conversations/{conversation%2Did}/threads{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get all the threads in a group conversation. Note: You can also get all the threads of a group. + * A collection of all the conversation threads in the conversation. A navigation property. Read-only. Nullable. * @return a {@link ConversationThreadCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationThreadCollectionResponse get() { return get(null); } /** - * Get all the threads in a group conversation. Note: You can also get all the threads of a group. + * A collection of all the conversation threads in the conversation. A navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationThreadCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationThreadCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public ConversationThreadCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, ConversationThreadCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new thread in the specified conversation. A thread and post are created as specified. Use reply thread to further post to that thread. Or, if you get the post ID, you can also reply to that post in that thread. Note: You can also start a new conversation by first creating a thread. + * Create new navigation property to threads for groups * @param body The request body * @return a {@link ConversationThread} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationThread post(@jakarta.annotation.Nonnull final ConversationThread body) { return post(body, null); } /** - * Create a new thread in the specified conversation. A thread and post are created as specified. Use reply thread to further post to that thread. Or, if you get the post ID, you can also reply to that post in that thread. Note: You can also start a new conversation by first creating a thread. + * Create new navigation property to threads for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationThread} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationThread post(@jakarta.annotation.Nonnull final ConversationThread body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public ConversationThread post(@jakarta.annotation.Nonnull final ConversationThr return this.requestAdapter.send(requestInfo, errorMapping, ConversationThread::createFromDiscriminatorValue); } /** - * Get all the threads in a group conversation. Note: You can also get all the threads of a group. + * A collection of all the conversation threads in the conversation. A navigation property. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get all the threads in a group conversation. Note: You can also get all the threads of a group. + * A collection of all the conversation threads in the conversation. A navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new thread in the specified conversation. A thread and post are created as specified. Use reply thread to further post to that thread. Or, if you get the post ID, you can also reply to that post in that thread. Note: You can also start a new conversation by first creating a thread. + * Create new navigation property to threads for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new thread in the specified conversation. A thread and post are created as specified. Use reply thread to further post to that thread. Or, if you get the post ID, you can also reply to that post in that thread. Note: You can also start a new conversation by first creating a thread. + * Create new navigation property to threads for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ThreadsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new ThreadsRequestBuilder(rawUrl, requestAdapter); } /** - * Get all the threads in a group conversation. Note: You can also get all the threads of a group. + * A collection of all the conversation threads in the conversation. A navigation property. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/threads/item/posts/PostsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/threads/item/posts/PostsRequestBuilder.java index 165d5b22f3c..2463f0c43f1 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/threads/item/posts/PostsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/threads/item/posts/PostsRequestBuilder.java @@ -59,21 +59,19 @@ public PostsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/groups/{group%2Did}/conversations/{conversation%2Did}/threads/{conversationThread%2Did}/posts{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get the properties and relationships of a post in a specified thread. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation. Since the post resource supports extensions, you can also use the GET operation to get custom properties and extension data in a post instance. + * Get posts from groups * @return a {@link PostCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PostCollectionResponse get() { return get(null); } /** - * Get the properties and relationships of a post in a specified thread. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation. Since the post resource supports extensions, you can also use the GET operation to get custom properties and extension data in a post instance. + * Get posts from groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PostCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PostCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public PostCollectionResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, PostCollectionResponse::createFromDiscriminatorValue); } /** - * Get the properties and relationships of a post in a specified thread. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation. Since the post resource supports extensions, you can also use the GET operation to get custom properties and extension data in a post instance. + * Get posts from groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the properties and relationships of a post in a specified thread. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation. Since the post resource supports extensions, you can also use the GET operation to get custom properties and extension data in a post instance. + * Get posts from groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public PostsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new PostsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the properties and relationships of a post in a specified thread. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation. Since the post resource supports extensions, you can also use the GET operation to get custom properties and extension data in a post instance. + * Get posts from groups */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/threads/item/posts/item/attachments/AttachmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/threads/item/posts/item/attachments/AttachmentsRequestBuilder.java index ac07b1d536f..a56c2294ec3 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/threads/item/posts/item/attachments/AttachmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/threads/item/posts/item/attachments/AttachmentsRequestBuilder.java @@ -69,21 +69,19 @@ public AttachmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/groups/{group%2Did}/conversations/{conversation%2Did}/threads/{conversationThread%2Did}/posts/{post%2Did}/attachments{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of attachment objects attached to a post. + * Read-only. Nullable. Supports $expand. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get() { return get(null); } /** - * Retrieve a list of attachment objects attached to a post. + * Read-only. Nullable. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -118,7 +116,7 @@ public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Retrieve a list of attachment objects attached to a post. + * Read-only. Nullable. Supports $expand. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -126,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of attachment objects attached to a post. + * Read-only. Nullable. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -172,7 +170,7 @@ public AttachmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AttachmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of attachment objects attached to a post. + * Read-only. Nullable. Supports $expand. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/threads/item/posts/item/extensions/ExtensionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/threads/item/posts/item/extensions/ExtensionsRequestBuilder.java index 4d919d92f66..73725fc931e 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/threads/item/posts/item/extensions/ExtensionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/threads/item/posts/item/extensions/ExtensionsRequestBuilder.java @@ -60,7 +60,7 @@ public ExtensionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/groups/{group%2Did}/conversations/{conversation%2Did}/threads/{conversationThread%2Did}/posts/{post%2Did}/extensions{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public ExtensionCollectionResponse get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, Extension::createFromDiscriminatorValue); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public ExtensionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ExtensionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/threads/item/posts/item/extensions/item/ExtensionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/threads/item/posts/item/extensions/item/ExtensionItemRequestBuilder.java index cba2d4d42f9..db4f60da729 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/threads/item/posts/item/extensions/item/ExtensionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/threads/item/posts/item/extensions/item/ExtensionItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public Extension get(@jakarta.annotation.Nullable final java.util.function.Consu return this.requestAdapter.send(requestInfo, errorMapping, Extension::createFromDiscriminatorValue); } /** - * Update an open extension (openTypeExtension object) with the properties in the request body: The data in an extension can be primitive types, or arrays of primitive types. See the table in the Permissions section for the list of resources that support open extensions. + * Update the navigation property extensions in groups * @param body The request body * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension patch(@jakarta.annotation.Nonnull final Extension body) { return patch(body, null); } /** - * Update an open extension (openTypeExtension object) with the properties in the request body: The data in an extension can be primitive types, or arrays of primitive types. See the table in the Permissions section for the list of resources that support open extensions. + * Update the navigation property extensions in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension patch(@jakarta.annotation.Nonnull final Extension body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update an open extension (openTypeExtension object) with the properties in the request body: The data in an extension can be primitive types, or arrays of primitive types. See the table in the Permissions section for the list of resources that support open extensions. + * Update the navigation property extensions in groups * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update an open extension (openTypeExtension object) with the properties in the request body: The data in an extension can be primitive types, or arrays of primitive types. See the table in the Permissions section for the list of resources that support open extensions. + * Update the navigation property extensions in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public ExtensionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/threads/item/posts/item/inreplyto/attachments/AttachmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/threads/item/posts/item/inreplyto/attachments/AttachmentsRequestBuilder.java index 6fc570d9617..281dbe9f813 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/threads/item/posts/item/inreplyto/attachments/AttachmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/threads/item/posts/item/inreplyto/attachments/AttachmentsRequestBuilder.java @@ -69,21 +69,19 @@ public AttachmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/groups/{group%2Did}/conversations/{conversation%2Did}/threads/{conversationThread%2Did}/posts/{post%2Did}/inReplyTo/attachments{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of attachment objects attached to a post. + * Read-only. Nullable. Supports $expand. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get() { return get(null); } /** - * Retrieve a list of attachment objects attached to a post. + * Read-only. Nullable. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -118,7 +116,7 @@ public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Retrieve a list of attachment objects attached to a post. + * Read-only. Nullable. Supports $expand. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -126,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of attachment objects attached to a post. + * Read-only. Nullable. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -172,7 +170,7 @@ public AttachmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AttachmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of attachment objects attached to a post. + * Read-only. Nullable. Supports $expand. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/threads/item/posts/item/inreplyto/extensions/ExtensionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/threads/item/posts/item/inreplyto/extensions/ExtensionsRequestBuilder.java index b0ab8b34d19..218603ab0fa 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/threads/item/posts/item/inreplyto/extensions/ExtensionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/threads/item/posts/item/inreplyto/extensions/ExtensionsRequestBuilder.java @@ -60,7 +60,7 @@ public ExtensionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/groups/{group%2Did}/conversations/{conversation%2Did}/threads/{conversationThread%2Did}/posts/{post%2Did}/inReplyTo/extensions{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public ExtensionCollectionResponse get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, Extension::createFromDiscriminatorValue); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public ExtensionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ExtensionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/threads/item/posts/item/inreplyto/extensions/item/ExtensionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/threads/item/posts/item/inreplyto/extensions/item/ExtensionItemRequestBuilder.java index 549f46fbdeb..ab930088c2f 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/threads/item/posts/item/inreplyto/extensions/item/ExtensionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/conversations/item/threads/item/posts/item/inreplyto/extensions/item/ExtensionItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public Extension get(@jakarta.annotation.Nullable final java.util.function.Consu return this.requestAdapter.send(requestInfo, errorMapping, Extension::createFromDiscriminatorValue); } /** - * Update an open extension (openTypeExtension object) with the properties in the request body: The data in an extension can be primitive types, or arrays of primitive types. See the table in the Permissions section for the list of resources that support open extensions. + * Update the navigation property extensions in groups * @param body The request body * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension patch(@jakarta.annotation.Nonnull final Extension body) { return patch(body, null); } /** - * Update an open extension (openTypeExtension object) with the properties in the request body: The data in an extension can be primitive types, or arrays of primitive types. See the table in the Permissions section for the list of resources that support open extensions. + * Update the navigation property extensions in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension patch(@jakarta.annotation.Nonnull final Extension body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update an open extension (openTypeExtension object) with the properties in the request body: The data in an extension can be primitive types, or arrays of primitive types. See the table in the Permissions section for the list of resources that support open extensions. + * Update the navigation property extensions in groups * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update an open extension (openTypeExtension object) with the properties in the request body: The data in an extension can be primitive types, or arrays of primitive types. See the table in the Permissions section for the list of resources that support open extensions. + * Update the navigation property extensions in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public ExtensionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/events/EventsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/events/EventsRequestBuilder.java index 524a4746626..5784033105e 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/events/EventsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/events/EventsRequestBuilder.java @@ -69,21 +69,19 @@ public EventsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/groups/{group%2Did}/events{?%24count,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of event objects. + * The group's calendar events. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get() { return get(null); } /** - * Retrieve a list of event objects. + * The group's calendar events. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public EventCollectionResponse get(@jakarta.annotation.Nullable final java.util. return this.requestAdapter.send(requestInfo, errorMapping, EventCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to create a new event. + * Create new navigation property to events for groups * @param body The request body * @return a {@link Event} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Event post(@jakarta.annotation.Nonnull final Event body) { return post(body, null); } /** - * Use this API to create a new event. + * Create new navigation property to events for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Event} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Event post(@jakarta.annotation.Nonnull final Event body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public Event post(@jakarta.annotation.Nonnull final Event body, @jakarta.annotat return this.requestAdapter.send(requestInfo, errorMapping, Event::createFromDiscriminatorValue); } /** - * Retrieve a list of event objects. + * The group's calendar events. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of event objects. + * The group's calendar events. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to create a new event. + * Create new navigation property to events for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to create a new event. + * Create new navigation property to events for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public EventsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw return new EventsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of event objects. + * The group's calendar events. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/events/item/EventItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/events/item/EventItemRequestBuilder.java index 279380be39e..3fd40cba297 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/events/item/EventItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/events/item/EventItemRequestBuilder.java @@ -136,18 +136,16 @@ public EventItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/groups/{group%2Did}/events/{event%2Did}{?%24select}", rawUrl); } /** - * Delete an event object. + * Delete navigation property events for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an event object. + * Delete navigation property events for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -156,21 +154,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get an event object. + * The group's calendar events. * @return a {@link Event} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Event get() { return get(null); } /** - * Get an event object. + * The group's calendar events. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Event} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Event get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -205,7 +201,7 @@ public Event patch(@jakarta.annotation.Nonnull final Event body, @jakarta.annota return this.requestAdapter.send(requestInfo, errorMapping, Event::createFromDiscriminatorValue); } /** - * Delete an event object. + * Delete navigation property events for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -213,7 +209,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an event object. + * Delete navigation property events for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -225,7 +221,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get an event object. + * The group's calendar events. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -233,7 +229,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an event object. + * The group's calendar events. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -285,7 +281,7 @@ public EventItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get an event object. + * The group's calendar events. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/events/item/attachments/AttachmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/events/item/attachments/AttachmentsRequestBuilder.java index b13b09f2a4f..9b8c0d5fa74 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/events/item/attachments/AttachmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/events/item/attachments/AttachmentsRequestBuilder.java @@ -69,21 +69,19 @@ public AttachmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/groups/{group%2Did}/events/{event%2Did}/attachments{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get() { return get(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, AttachmentCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for groups * @param body The request body * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body) { return post(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public AttachmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AttachmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/events/item/attachments/item/AttachmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/events/item/attachments/item/AttachmentItemRequestBuilder.java index 01b28a1d420..e5946b22bf5 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/events/item/attachments/item/AttachmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/events/item/attachments/item/AttachmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public AttachmentItemRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/groups/{group%2Did}/events/{event%2Did}/attachments/{attachment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -79,7 +77,7 @@ public Attachment get(@jakarta.annotation.Nullable final java.util.function.Cons return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -87,7 +85,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/events/item/extensions/ExtensionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/events/item/extensions/ExtensionsRequestBuilder.java index f4ad1783065..acdb3a2b98b 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/events/item/extensions/ExtensionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/events/item/extensions/ExtensionsRequestBuilder.java @@ -60,7 +60,7 @@ public ExtensionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/groups/{group%2Did}/events/{event%2Did}/extensions{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public ExtensionCollectionResponse get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -82,23 +82,21 @@ public ExtensionCollectionResponse get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, ExtensionCollectionResponse::createFromDiscriminatorValue); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for groups * @param body The request body * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body) { return post(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, Extension::createFromDiscriminatorValue); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -129,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -138,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -163,7 +161,7 @@ public ExtensionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ExtensionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/events/item/extensions/item/ExtensionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/events/item/extensions/item/ExtensionItemRequestBuilder.java index 2d664566a49..0d3255ae40c 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/events/item/extensions/item/ExtensionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/events/item/extensions/item/ExtensionItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public ExtensionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/events/item/instances/InstancesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/events/item/instances/InstancesRequestBuilder.java index 2452d959f3a..e613b4001a1 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/events/item/instances/InstancesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/events/item/instances/InstancesRequestBuilder.java @@ -71,7 +71,6 @@ public InstancesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, * 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. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get() { @@ -82,7 +81,6 @@ public EventCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/events/item/instances/item/attachments/AttachmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/events/item/instances/item/attachments/AttachmentsRequestBuilder.java index 3b7aa2ce834..65db7b664a3 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/events/item/instances/item/attachments/AttachmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/events/item/instances/item/attachments/AttachmentsRequestBuilder.java @@ -69,21 +69,19 @@ public AttachmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/groups/{group%2Did}/events/{event%2Did}/instances/{event%2Did1}/attachments{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get() { return get(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, AttachmentCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for groups * @param body The request body * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body) { return post(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public AttachmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AttachmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/events/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/events/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java index 085b9250445..ad6e8fbbec3 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/events/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/events/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public AttachmentItemRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/groups/{group%2Did}/events/{event%2Did}/instances/{event%2Did1}/attachments/{attachment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -79,7 +77,7 @@ public Attachment get(@jakarta.annotation.Nullable final java.util.function.Cons return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -87,7 +85,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/events/item/instances/item/extensions/ExtensionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/events/item/instances/item/extensions/ExtensionsRequestBuilder.java index 6c302320268..36e2c4f7889 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/events/item/instances/item/extensions/ExtensionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/events/item/instances/item/extensions/ExtensionsRequestBuilder.java @@ -60,7 +60,7 @@ public ExtensionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/groups/{group%2Did}/events/{event%2Did}/instances/{event%2Did1}/extensions{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public ExtensionCollectionResponse get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -82,23 +82,21 @@ public ExtensionCollectionResponse get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, ExtensionCollectionResponse::createFromDiscriminatorValue); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for groups * @param body The request body * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body) { return post(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, Extension::createFromDiscriminatorValue); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -129,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -138,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -163,7 +161,7 @@ public ExtensionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ExtensionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/events/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/events/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java index 84c9464e9e2..5da20a595fc 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/events/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/events/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public ExtensionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/grouplifecyclepolicies/GroupLifecyclePoliciesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/grouplifecyclepolicies/GroupLifecyclePoliciesRequestBuilder.java index 50992691a66..9b1e90d4249 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/grouplifecyclepolicies/GroupLifecyclePoliciesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/grouplifecyclepolicies/GroupLifecyclePoliciesRequestBuilder.java @@ -60,21 +60,19 @@ public GroupLifecyclePoliciesRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/groups/{group%2Did}/groupLifecyclePolicies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieves a list of groupLifecyclePolicy objects to which a group belongs. + * The collection of lifecycle policies for this group. Read-only. Nullable. * @return a {@link GroupLifecyclePolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public GroupLifecyclePolicyCollectionResponse get() { return get(null); } /** - * Retrieves a list of groupLifecyclePolicy objects to which a group belongs. + * The collection of lifecycle policies for this group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GroupLifecyclePolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public GroupLifecyclePolicyCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public GroupLifecyclePolicy post(@jakarta.annotation.Nonnull final GroupLifecycl return this.requestAdapter.send(requestInfo, errorMapping, GroupLifecyclePolicy::createFromDiscriminatorValue); } /** - * Retrieves a list of groupLifecyclePolicy objects to which a group belongs. + * The collection of lifecycle policies for this group. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieves a list of groupLifecyclePolicy objects to which a group belongs. + * The collection of lifecycle policies for this group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public GroupLifecyclePoliciesRequestBuilder withUrl(@jakarta.annotation.Nonnull return new GroupLifecyclePoliciesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieves a list of groupLifecyclePolicy objects to which a group belongs. + * The collection of lifecycle policies for this group. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/memberof/MemberOfRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/memberof/MemberOfRequestBuilder.java index f3bd7dd326a..575c8d23e87 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/memberof/MemberOfRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/memberof/MemberOfRequestBuilder.java @@ -80,7 +80,6 @@ public MemberOfRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ * Groups that this group is a member of. HTTP Methods: GET (supported for all groups). Read-only. Nullable. Supports $expand. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get() { @@ -91,7 +90,6 @@ public DirectoryObjectCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/members/MembersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/members/MembersRequestBuilder.java index ea8553d97d5..c1d1928977b 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/members/MembersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/members/MembersRequestBuilder.java @@ -125,7 +125,6 @@ public MembersRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * The members of this group, who can be users, devices, other groups, or service principals. Supports the List members, Add member, and Remove member operations. Nullable. Supports $expand including nested $select. For example, /groups?$filter=startsWith(displayName,'Role')&$select=id,displayName&$expand=members($select=id,userPrincipalName,displayName). * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get() { @@ -136,7 +135,6 @@ public DirectoryObjectCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/members/item/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/members/item/ref/RefRequestBuilder.java index 328ea952eff..2c432ebae06 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/members/item/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/members/item/ref/RefRequestBuilder.java @@ -35,18 +35,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/groups/{group%2Did}/members/{directoryObject%2Did}/$ref", rawUrl); } /** - * Remove a member from a group via the members navigation property. You can't remove a member from groups with dynamic memberships. + * Delete ref of navigation property members for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove a member from a group via the members navigation property. You can't remove a member from groups with dynamic memberships. + * Delete ref of navigation property members for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -55,7 +53,7 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove a member from a group via the members navigation property. You can't remove a member from groups with dynamic memberships. + * Delete ref of navigation property members for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -63,7 +61,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove a member from a group via the members navigation property. You can't remove a member from groups with dynamic memberships. + * Delete ref of navigation property members for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/members/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/members/ref/RefRequestBuilder.java index c2a9e86a36f..7c0169efb5d 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/members/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/members/ref/RefRequestBuilder.java @@ -38,18 +38,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/groups/{group%2Did}/members/$ref?@id={%40id}{&%24count,%24filter,%24orderby,%24search,%24skip,%24top}", rawUrl); } /** - * Remove a member from a group via the members navigation property. You can't remove a member from groups with dynamic memberships. + * Delete ref of navigation property members for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove a member from a group via the members navigation property. You can't remove a member from groups with dynamic memberships. + * Delete ref of navigation property members for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -61,7 +59,6 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume * The members of this group, who can be users, devices, other groups, or service principals. Supports the List members, Add member, and Remove member operations. Nullable. Supports $expand including nested $select. For example, /groups?$filter=startsWith(displayName,'Role')&$select=id,displayName&$expand=members($select=id,userPrincipalName,displayName). * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get() { @@ -72,7 +69,6 @@ public StringCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -82,20 +78,18 @@ public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util return this.requestAdapter.send(requestInfo, errorMapping, StringCollectionResponse::createFromDiscriminatorValue); } /** - * Add a member to a security or Microsoft 365 group through the members navigation property. The following table shows the types of members that can be added to either security groups or Microsoft 365 groups. + * Create new navigation property ref to members for groups * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body) { post(body, null); } /** - * Add a member to a security or Microsoft 365 group through the members navigation property. The following table shows the types of members that can be added to either security groups or Microsoft 365 groups. + * Create new navigation property ref to members for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { Objects.requireNonNull(body); @@ -105,7 +99,7 @@ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakart this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove a member from a group via the members navigation property. You can't remove a member from groups with dynamic memberships. + * Delete ref of navigation property members for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -113,7 +107,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove a member from a group via the members navigation property. You can't remove a member from groups with dynamic memberships. + * Delete ref of navigation property members for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add a member to a security or Microsoft 365 group through the members navigation property. The following table shows the types of members that can be added to either security groups or Microsoft 365 groups. + * Create new navigation property ref to members for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -154,7 +148,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add a member to a security or Microsoft 365 group through the members navigation property. The following table shows the types of members that can be added to either security groups or Microsoft 365 groups. + * Create new navigation property ref to members for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -179,7 +173,7 @@ public RefRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl return new RefRequestBuilder(rawUrl, requestAdapter); } /** - * Remove a member from a group via the members navigation property. You can't remove a member from groups with dynamic memberships. + * Delete ref of navigation property members for groups */ @jakarta.annotation.Generated("com.microsoft.kiota") public class DeleteQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/NotebooksRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/NotebooksRequestBuilder.java index f9e4d9a8d24..bc231c6a608 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/NotebooksRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/NotebooksRequestBuilder.java @@ -70,21 +70,19 @@ public NotebooksRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/groups/{group%2Did}/onenote/notebooks{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of notebook objects. + * The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link NotebookCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public NotebookCollectionResponse get() { return get(null); } /** - * Retrieve a list of notebook objects. + * The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link NotebookCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public NotebookCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -104,23 +102,21 @@ public GetRecentNotebooksWithIncludePersonalNotebooksRequestBuilder getRecentNot return new GetRecentNotebooksWithIncludePersonalNotebooksRequestBuilder(pathParameters, requestAdapter, includePersonalNotebooks); } /** - * Create a new OneNote notebook. + * Create new navigation property to notebooks for groups * @param body The request body * @return a {@link Notebook} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Notebook post(@jakarta.annotation.Nonnull final Notebook body) { return post(body, null); } /** - * Create a new OneNote notebook. + * Create new navigation property to notebooks for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Notebook} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Notebook post(@jakarta.annotation.Nonnull final Notebook body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -131,7 +127,7 @@ public Notebook post(@jakarta.annotation.Nonnull final Notebook body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, Notebook::createFromDiscriminatorValue); } /** - * Retrieve a list of notebook objects. + * The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -139,7 +135,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of notebook objects. + * The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -151,7 +147,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new OneNote notebook. + * Create new navigation property to notebooks for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -160,7 +156,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new OneNote notebook. + * Create new navigation property to notebooks for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -185,7 +181,7 @@ public NotebooksRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new NotebooksRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of notebook objects. + * The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/getrecentnotebookswithincludepersonalnotebooks/GetRecentNotebooksWithIncludePersonalNotebooksRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/getrecentnotebookswithincludepersonalnotebooks/GetRecentNotebooksWithIncludePersonalNotebooksRequestBuilder.java index 5a2c9933b5b..3f0187e6e30 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/getrecentnotebookswithincludepersonalnotebooks/GetRecentNotebooksWithIncludePersonalNotebooksRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/getrecentnotebookswithincludepersonalnotebooks/GetRecentNotebooksWithIncludePersonalNotebooksRequestBuilder.java @@ -38,19 +38,21 @@ public GetRecentNotebooksWithIncludePersonalNotebooksRequestBuilder(@jakarta.ann super(requestAdapter, "{+baseurl}/groups/{group%2Did}/onenote/notebooks/getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks}){?%24count,%24filter,%24search,%24skip,%24top}", rawUrl); } /** - * Invoke function getRecentNotebooks + * Get a list of recentNotebook instances that have been accessed by the signed-in user. * @return a {@link GetRecentNotebooksWithIncludePersonalNotebooksGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetRecentNotebooksWithIncludePersonalNotebooksGetResponse get() { return get(null); } /** - * Invoke function getRecentNotebooks + * Get a list of recentNotebook instances that have been accessed by the signed-in user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GetRecentNotebooksWithIncludePersonalNotebooksGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetRecentNotebooksWithIncludePersonalNotebooksGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public GetRecentNotebooksWithIncludePersonalNotebooksGetResponse get(@jakarta.an return this.requestAdapter.send(requestInfo, errorMapping, GetRecentNotebooksWithIncludePersonalNotebooksGetResponse::createFromDiscriminatorValue); } /** - * Invoke function getRecentNotebooks + * Get a list of recentNotebook instances that have been accessed by the signed-in user. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getRecentNotebooks + * Get a list of recentNotebook instances that have been accessed by the signed-in user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -90,7 +92,7 @@ public GetRecentNotebooksWithIncludePersonalNotebooksRequestBuilder withUrl(@jak return new GetRecentNotebooksWithIncludePersonalNotebooksRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function getRecentNotebooks + * Get a list of recentNotebook instances that have been accessed by the signed-in user. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/item/NotebookItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/item/NotebookItemRequestBuilder.java index 26a9188ed8a..d521e6d6225 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/item/NotebookItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/item/NotebookItemRequestBuilder.java @@ -82,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a notebook object. + * The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link Notebook} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Notebook get() { return get(null); } /** - * Retrieve the properties and relationships of a notebook object. + * The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Notebook} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Notebook get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -151,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a notebook object. + * The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -159,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a notebook object. + * The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -211,7 +209,7 @@ public NotebookItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a notebook object. + * The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/item/sectiongroups/SectionGroupsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/item/sectiongroups/SectionGroupsRequestBuilder.java index 361ecbf04e8..5ef4e67d329 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/item/sectiongroups/SectionGroupsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/item/sectiongroups/SectionGroupsRequestBuilder.java @@ -60,21 +60,19 @@ public SectionGroupsRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/groups/{group%2Did}/onenote/notebooks/{notebook%2Did}/sectionGroups{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of section groups from the specified notebook. + * The section groups in the notebook. Read-only. Nullable. * @return a {@link SectionGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroupCollectionResponse get() { return get(null); } /** - * Retrieve a list of section groups from the specified notebook. + * The section groups in the notebook. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SectionGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroupCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public SectionGroupCollectionResponse get(@jakarta.annotation.Nullable final jav return this.requestAdapter.send(requestInfo, errorMapping, SectionGroupCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new section group in the specified notebook. + * Create new navigation property to sectionGroups for groups * @param body The request body * @return a {@link SectionGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroup post(@jakarta.annotation.Nonnull final SectionGroup body) { return post(body, null); } /** - * Create a new section group in the specified notebook. + * Create new navigation property to sectionGroups for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SectionGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroup post(@jakarta.annotation.Nonnull final SectionGroup body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public SectionGroup post(@jakarta.annotation.Nonnull final SectionGroup body, @j return this.requestAdapter.send(requestInfo, errorMapping, SectionGroup::createFromDiscriminatorValue); } /** - * Retrieve a list of section groups from the specified notebook. + * The section groups in the notebook. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of section groups from the specified notebook. + * The section groups in the notebook. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new section group in the specified notebook. + * Create new navigation property to sectionGroups for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new section group in the specified notebook. + * Create new navigation property to sectionGroups for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public SectionGroupsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new SectionGroupsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of section groups from the specified notebook. + * The section groups in the notebook. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/item/sectiongroups/item/sectiongroups/SectionGroupsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/item/sectiongroups/item/sectiongroups/SectionGroupsRequestBuilder.java index ba99f00e990..d23b632befb 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/item/sectiongroups/item/sectiongroups/SectionGroupsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/item/sectiongroups/item/sectiongroups/SectionGroupsRequestBuilder.java @@ -59,21 +59,19 @@ public SectionGroupsRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/groups/{group%2Did}/onenote/notebooks/{notebook%2Did}/sectionGroups/{sectionGroup%2Did}/sectionGroups{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of section groups from the specified section group. + * The section groups in the section. Read-only. Nullable. * @return a {@link SectionGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroupCollectionResponse get() { return get(null); } /** - * Retrieve a list of section groups from the specified section group. + * The section groups in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SectionGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroupCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public SectionGroupCollectionResponse get(@jakarta.annotation.Nullable final jav return this.requestAdapter.send(requestInfo, errorMapping, SectionGroupCollectionResponse::createFromDiscriminatorValue); } /** - * Retrieve a list of section groups from the specified section group. + * The section groups in the section. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of section groups from the specified section group. + * The section groups in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public SectionGroupsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new SectionGroupsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of section groups from the specified section group. + * The section groups in the section. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/item/sectiongroups/item/sections/SectionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/item/sectiongroups/item/sections/SectionsRequestBuilder.java index e0ce0243650..a8d99b8348f 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/item/sectiongroups/item/sections/SectionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/item/sectiongroups/item/sections/SectionsRequestBuilder.java @@ -60,21 +60,19 @@ public SectionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/groups/{group%2Did}/onenote/notebooks/{notebook%2Did}/sectionGroups/{sectionGroup%2Did}/sections{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of onenoteSection objects from the specified section group. + * The sections in the section group. Read-only. Nullable. * @return a {@link OnenoteSectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSectionCollectionResponse get() { return get(null); } /** - * Retrieve a list of onenoteSection objects from the specified section group. + * The sections in the section group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenoteSectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSectionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OnenoteSectionCollectionResponse get(@jakarta.annotation.Nullable final j return this.requestAdapter.send(requestInfo, errorMapping, OnenoteSectionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new onenoteSection in the specified section group. + * Create new navigation property to sections for groups * @param body The request body * @return a {@link OnenoteSection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSection post(@jakarta.annotation.Nonnull final OnenoteSection body) { return post(body, null); } /** - * Create a new onenoteSection in the specified section group. + * Create new navigation property to sections for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenoteSection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSection post(@jakarta.annotation.Nonnull final OnenoteSection body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OnenoteSection post(@jakarta.annotation.Nonnull final OnenoteSection body return this.requestAdapter.send(requestInfo, errorMapping, OnenoteSection::createFromDiscriminatorValue); } /** - * Retrieve a list of onenoteSection objects from the specified section group. + * The sections in the section group. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of onenoteSection objects from the specified section group. + * The sections in the section group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new onenoteSection in the specified section group. + * Create new navigation property to sections for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new onenoteSection in the specified section group. + * Create new navigation property to sections for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public SectionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new SectionsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of onenoteSection objects from the specified section group. + * The sections in the section group. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/item/sectiongroups/item/sections/item/pages/PagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/item/sectiongroups/item/sections/item/pages/PagesRequestBuilder.java index 9cfb3788a7b..f972281ed81 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/item/sectiongroups/item/sections/item/pages/PagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/item/sectiongroups/item/sections/item/pages/PagesRequestBuilder.java @@ -60,21 +60,19 @@ public PagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/groups/{group%2Did}/onenote/notebooks/{notebook%2Did}/sectionGroups/{sectionGroup%2Did}/sections/{onenoteSection%2Did}/pages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @return a {@link OnenotePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePageCollectionResponse get() { return get(null); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OnenotePageCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, OnenotePageCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for groups * @param body The request body * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body) { return post(body, null); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body, @jak return this.requestAdapter.send(requestInfo, errorMapping, OnenotePage::createFromDiscriminatorValue); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new page in the specified section. + * Create new navigation property to pages for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public PagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new PagesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/item/sectiongroups/item/sections/item/pages/item/content/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/item/sectiongroups/item/sections/item/pages/item/content/ContentRequestBuilder.java index 67b7a6ddda9..07c1caa8190 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/item/sectiongroups/item/sections/item/pages/item/content/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/item/sectiongroups/item/sections/item/pages/item/content/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * The page's HTML content. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/item/sections/SectionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/item/sections/SectionsRequestBuilder.java index f95282caf9e..f4555c27607 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/item/sections/SectionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/item/sections/SectionsRequestBuilder.java @@ -60,21 +60,19 @@ public SectionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/groups/{group%2Did}/onenote/notebooks/{notebook%2Did}/sections{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of onenoteSection objects from the specified notebook. + * The sections in the notebook. Read-only. Nullable. * @return a {@link OnenoteSectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSectionCollectionResponse get() { return get(null); } /** - * Retrieve a list of onenoteSection objects from the specified notebook. + * The sections in the notebook. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenoteSectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSectionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OnenoteSectionCollectionResponse get(@jakarta.annotation.Nullable final j return this.requestAdapter.send(requestInfo, errorMapping, OnenoteSectionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new onenoteSection in the specified notebook. + * Create new navigation property to sections for groups * @param body The request body * @return a {@link OnenoteSection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSection post(@jakarta.annotation.Nonnull final OnenoteSection body) { return post(body, null); } /** - * Create a new onenoteSection in the specified notebook. + * Create new navigation property to sections for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenoteSection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSection post(@jakarta.annotation.Nonnull final OnenoteSection body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OnenoteSection post(@jakarta.annotation.Nonnull final OnenoteSection body return this.requestAdapter.send(requestInfo, errorMapping, OnenoteSection::createFromDiscriminatorValue); } /** - * Retrieve a list of onenoteSection objects from the specified notebook. + * The sections in the notebook. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of onenoteSection objects from the specified notebook. + * The sections in the notebook. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new onenoteSection in the specified notebook. + * Create new navigation property to sections for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new onenoteSection in the specified notebook. + * Create new navigation property to sections for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public SectionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new SectionsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of onenoteSection objects from the specified notebook. + * The sections in the notebook. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/item/sections/item/pages/PagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/item/sections/item/pages/PagesRequestBuilder.java index 8f2239879f2..8a332dee31b 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/item/sections/item/pages/PagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/item/sections/item/pages/PagesRequestBuilder.java @@ -60,21 +60,19 @@ public PagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/groups/{group%2Did}/onenote/notebooks/{notebook%2Did}/sections/{onenoteSection%2Did}/pages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @return a {@link OnenotePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePageCollectionResponse get() { return get(null); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OnenotePageCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, OnenotePageCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for groups * @param body The request body * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body) { return post(body, null); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body, @jak return this.requestAdapter.send(requestInfo, errorMapping, OnenotePage::createFromDiscriminatorValue); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new page in the specified section. + * Create new navigation property to pages for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public PagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new PagesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/item/sections/item/pages/item/content/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/item/sections/item/pages/item/content/ContentRequestBuilder.java index 138303c184a..c8157078c12 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/item/sections/item/pages/item/content/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/notebooks/item/sections/item/pages/item/content/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * The page's HTML content. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/operations/OperationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/operations/OperationsRequestBuilder.java index d7c71734529..39f81bdf118 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/operations/OperationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/operations/OperationsRequestBuilder.java @@ -60,7 +60,7 @@ public OperationsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/groups/{group%2Did}/onenote/operations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the status of a long-running OneNote operation. This applies to operations that return the Operation-Location header in the response, such as CopyNotebook, CopyToNotebook, CopyToSectionGroup, and CopyToSection. You can poll the Operation-Location endpoint until the status property returns completed or failed. If the status is completed, the resourceLocation property contains the resource endpoint URI. If the status is failed, the error and @api.diagnostics properties provide error information. + * The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. * @return a {@link OnenoteOperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public OnenoteOperationCollectionResponse get() { return get(null); } /** - * Get the status of a long-running OneNote operation. This applies to operations that return the Operation-Location header in the response, such as CopyNotebook, CopyToNotebook, CopyToSectionGroup, and CopyToSection. You can poll the Operation-Location endpoint until the status property returns completed or failed. If the status is completed, the resourceLocation property contains the resource endpoint URI. If the status is failed, the error and @api.diagnostics properties provide error information. + * The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenoteOperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public OnenoteOperation post(@jakarta.annotation.Nonnull final OnenoteOperation return this.requestAdapter.send(requestInfo, errorMapping, OnenoteOperation::createFromDiscriminatorValue); } /** - * Get the status of a long-running OneNote operation. This applies to operations that return the Operation-Location header in the response, such as CopyNotebook, CopyToNotebook, CopyToSectionGroup, and CopyToSection. You can poll the Operation-Location endpoint until the status property returns completed or failed. If the status is completed, the resourceLocation property contains the resource endpoint URI. If the status is failed, the error and @api.diagnostics properties provide error information. + * The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the status of a long-running OneNote operation. This applies to operations that return the Operation-Location header in the response, such as CopyNotebook, CopyToNotebook, CopyToSectionGroup, and CopyToSection. You can poll the Operation-Location endpoint until the status property returns completed or failed. If the status is completed, the resourceLocation property contains the resource endpoint URI. If the status is failed, the error and @api.diagnostics properties provide error information. + * The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public OperationsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new OperationsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the status of a long-running OneNote operation. This applies to operations that return the Operation-Location header in the response, such as CopyNotebook, CopyToNotebook, CopyToSectionGroup, and CopyToSection. You can poll the Operation-Location endpoint until the status property returns completed or failed. If the status is completed, the resourceLocation property contains the resource endpoint URI. If the status is failed, the error and @api.diagnostics properties provide error information. + * The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/operations/item/OnenoteOperationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/operations/item/OnenoteOperationItemRequestBuilder.java index bb5809fecab..b80f42146c7 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/operations/item/OnenoteOperationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/operations/item/OnenoteOperationItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the status of a long-running OneNote operation. This applies to operations that return the Operation-Location header in the response, such as CopyNotebook, CopyToNotebook, CopyToSectionGroup, and CopyToSection. You can poll the Operation-Location endpoint until the status property returns completed or failed. If the status is completed, the resourceLocation property contains the resource endpoint URI. If the status is failed, the error and @api.diagnostics properties provide error information. + * The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. * @return a {@link OnenoteOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteOperation get() { return get(null); } /** - * Get the status of a long-running OneNote operation. This applies to operations that return the Operation-Location header in the response, such as CopyNotebook, CopyToNotebook, CopyToSectionGroup, and CopyToSection. You can poll the Operation-Location endpoint until the status property returns completed or failed. If the status is completed, the resourceLocation property contains the resource endpoint URI. If the status is failed, the error and @api.diagnostics properties provide error information. + * The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenoteOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteOperation get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the status of a long-running OneNote operation. This applies to operations that return the Operation-Location header in the response, such as CopyNotebook, CopyToNotebook, CopyToSectionGroup, and CopyToSection. You can poll the Operation-Location endpoint until the status property returns completed or failed. If the status is completed, the resourceLocation property contains the resource endpoint URI. If the status is failed, the error and @api.diagnostics properties provide error information. + * The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the status of a long-running OneNote operation. This applies to operations that return the Operation-Location header in the response, such as CopyNotebook, CopyToNotebook, CopyToSectionGroup, and CopyToSection. You can poll the Operation-Location endpoint until the status property returns completed or failed. If the status is completed, the resourceLocation property contains the resource endpoint URI. If the status is failed, the error and @api.diagnostics properties provide error information. + * The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public OnenoteOperationItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fi public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the status of a long-running OneNote operation. This applies to operations that return the Operation-Location header in the response, such as CopyNotebook, CopyToNotebook, CopyToSectionGroup, and CopyToSection. You can poll the Operation-Location endpoint until the status property returns completed or failed. If the status is completed, the resourceLocation property contains the resource endpoint URI. If the status is failed, the error and @api.diagnostics properties provide error information. + * The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/pages/PagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/pages/PagesRequestBuilder.java index 4ed805101be..48932d3a8b3 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/pages/PagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/pages/PagesRequestBuilder.java @@ -60,21 +60,19 @@ public PagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/groups/{group%2Did}/onenote/pages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of page objects. + * The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link OnenotePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePageCollectionResponse get() { return get(null); } /** - * Retrieve a list of page objects. + * The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OnenotePageCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, OnenotePageCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new OneNote page in the default section of the default notebook. To create a page in a different section in the default notebook, you can use the sectionName query parameter. Example: ../onenote/pages?sectionName=My%20section The POST /onenote/pages operation is used only to create pages in the current user's default notebook. If you're targeting other notebooks, you can create pages in a specified section. + * Create new navigation property to pages for groups * @param body The request body * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body) { return post(body, null); } /** - * Create a new OneNote page in the default section of the default notebook. To create a page in a different section in the default notebook, you can use the sectionName query parameter. Example: ../onenote/pages?sectionName=My%20section The POST /onenote/pages operation is used only to create pages in the current user's default notebook. If you're targeting other notebooks, you can create pages in a specified section. + * Create new navigation property to pages for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body, @jak return this.requestAdapter.send(requestInfo, errorMapping, OnenotePage::createFromDiscriminatorValue); } /** - * Retrieve a list of page objects. + * The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of page objects. + * The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new OneNote page in the default section of the default notebook. To create a page in a different section in the default notebook, you can use the sectionName query parameter. Example: ../onenote/pages?sectionName=My%20section The POST /onenote/pages operation is used only to create pages in the current user's default notebook. If you're targeting other notebooks, you can create pages in a specified section. + * Create new navigation property to pages for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new OneNote page in the default section of the default notebook. To create a page in a different section in the default notebook, you can use the sectionName query parameter. Example: ../onenote/pages?sectionName=My%20section The POST /onenote/pages operation is used only to create pages in the current user's default notebook. If you're targeting other notebooks, you can create pages in a specified section. + * Create new navigation property to pages for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public PagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new PagesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of page objects. + * The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/pages/item/OnenotePageItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/pages/item/OnenotePageItemRequestBuilder.java index 9e3eb59468f..bc6e60b06f1 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/pages/item/OnenotePageItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/pages/item/OnenotePageItemRequestBuilder.java @@ -91,18 +91,16 @@ public OnenotePageItemRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/groups/{group%2Did}/onenote/pages/{onenotePage%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a OneNote page. + * Delete navigation property pages for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a OneNote page. + * Delete navigation property pages for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -111,21 +109,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a page object. Getting page information Access a page's metadata by page identifier: Getting page content You can use the page's content endpoint to get the HTML content of a page: The includeIDs=true query option is used to update pages. + * The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage get() { return get(null); } /** - * Retrieve the properties and relationships of a page object. Getting page information Access a page's metadata by page identifier: Getting page content You can use the page's content endpoint to get the HTML content of a page: The includeIDs=true query option is used to update pages. + * The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -160,7 +156,7 @@ public OnenotePage patch(@jakarta.annotation.Nonnull final OnenotePage body, @ja return this.requestAdapter.send(requestInfo, errorMapping, OnenotePage::createFromDiscriminatorValue); } /** - * Delete a OneNote page. + * Delete navigation property pages for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -168,7 +164,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a OneNote page. + * Delete navigation property pages for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -180,7 +176,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a page object. Getting page information Access a page's metadata by page identifier: Getting page content You can use the page's content endpoint to get the HTML content of a page: The includeIDs=true query option is used to update pages. + * The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -188,7 +184,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a page object. Getting page information Access a page's metadata by page identifier: Getting page content You can use the page's content endpoint to get the HTML content of a page: The includeIDs=true query option is used to update pages. + * The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -240,7 +236,7 @@ public OnenotePageItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final S public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a page object. Getting page information Access a page's metadata by page identifier: Getting page content You can use the page's content endpoint to get the HTML content of a page: The includeIDs=true query option is used to update pages. + * The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/pages/item/content/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/pages/item/content/ContentRequestBuilder.java index 4c26edbe9e0..8ff1ba2337f 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/pages/item/content/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/pages/item/content/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * The page's HTML content. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/sectiongroups/SectionGroupsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/sectiongroups/SectionGroupsRequestBuilder.java index 55120dcbee6..50429cb67b3 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/sectiongroups/SectionGroupsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/sectiongroups/SectionGroupsRequestBuilder.java @@ -60,21 +60,19 @@ public SectionGroupsRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/groups/{group%2Did}/onenote/sectionGroups{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of sectionGroup objects. + * The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link SectionGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroupCollectionResponse get() { return get(null); } /** - * Retrieve a list of sectionGroup objects. + * The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SectionGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroupCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public SectionGroup post(@jakarta.annotation.Nonnull final SectionGroup body, @j return this.requestAdapter.send(requestInfo, errorMapping, SectionGroup::createFromDiscriminatorValue); } /** - * Retrieve a list of sectionGroup objects. + * The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of sectionGroup objects. + * The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public SectionGroupsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new SectionGroupsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of sectionGroup objects. + * The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/sectiongroups/item/SectionGroupItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/sectiongroups/item/SectionGroupItemRequestBuilder.java index 74c42a43ea9..2541ca7f72f 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/sectiongroups/item/SectionGroupItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/sectiongroups/item/SectionGroupItemRequestBuilder.java @@ -91,21 +91,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a sectionGroup object. + * The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link SectionGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroup get() { return get(null); } /** - * Retrieve the properties and relationships of a sectionGroup object. + * The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SectionGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroup get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -160,7 +158,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a sectionGroup object. + * The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -168,7 +166,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a sectionGroup object. + * The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -220,7 +218,7 @@ public SectionGroupItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a sectionGroup object. + * The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/sectiongroups/item/sectiongroups/SectionGroupsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/sectiongroups/item/sectiongroups/SectionGroupsRequestBuilder.java index 5f02a218c82..6311546338a 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/sectiongroups/item/sectiongroups/SectionGroupsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/sectiongroups/item/sectiongroups/SectionGroupsRequestBuilder.java @@ -59,21 +59,19 @@ public SectionGroupsRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/groups/{group%2Did}/onenote/sectionGroups/{sectionGroup%2Did}/sectionGroups{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of section groups from the specified section group. + * The section groups in the section. Read-only. Nullable. * @return a {@link SectionGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroupCollectionResponse get() { return get(null); } /** - * Retrieve a list of section groups from the specified section group. + * The section groups in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SectionGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroupCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public SectionGroupCollectionResponse get(@jakarta.annotation.Nullable final jav return this.requestAdapter.send(requestInfo, errorMapping, SectionGroupCollectionResponse::createFromDiscriminatorValue); } /** - * Retrieve a list of section groups from the specified section group. + * The section groups in the section. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of section groups from the specified section group. + * The section groups in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public SectionGroupsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new SectionGroupsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of section groups from the specified section group. + * The section groups in the section. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/sectiongroups/item/sections/SectionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/sectiongroups/item/sections/SectionsRequestBuilder.java index edcc31cfaad..2534143f00b 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/sectiongroups/item/sections/SectionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/sectiongroups/item/sections/SectionsRequestBuilder.java @@ -60,21 +60,19 @@ public SectionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/groups/{group%2Did}/onenote/sectionGroups/{sectionGroup%2Did}/sections{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of onenoteSection objects from the specified section group. + * The sections in the section group. Read-only. Nullable. * @return a {@link OnenoteSectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSectionCollectionResponse get() { return get(null); } /** - * Retrieve a list of onenoteSection objects from the specified section group. + * The sections in the section group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenoteSectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSectionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OnenoteSectionCollectionResponse get(@jakarta.annotation.Nullable final j return this.requestAdapter.send(requestInfo, errorMapping, OnenoteSectionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new onenoteSection in the specified section group. + * Create new navigation property to sections for groups * @param body The request body * @return a {@link OnenoteSection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSection post(@jakarta.annotation.Nonnull final OnenoteSection body) { return post(body, null); } /** - * Create a new onenoteSection in the specified section group. + * Create new navigation property to sections for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenoteSection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSection post(@jakarta.annotation.Nonnull final OnenoteSection body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OnenoteSection post(@jakarta.annotation.Nonnull final OnenoteSection body return this.requestAdapter.send(requestInfo, errorMapping, OnenoteSection::createFromDiscriminatorValue); } /** - * Retrieve a list of onenoteSection objects from the specified section group. + * The sections in the section group. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of onenoteSection objects from the specified section group. + * The sections in the section group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new onenoteSection in the specified section group. + * Create new navigation property to sections for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new onenoteSection in the specified section group. + * Create new navigation property to sections for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public SectionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new SectionsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of onenoteSection objects from the specified section group. + * The sections in the section group. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/sectiongroups/item/sections/item/pages/PagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/sectiongroups/item/sections/item/pages/PagesRequestBuilder.java index 0b64b7c77c1..43df556c9e6 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/sectiongroups/item/sections/item/pages/PagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/sectiongroups/item/sections/item/pages/PagesRequestBuilder.java @@ -60,21 +60,19 @@ public PagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/groups/{group%2Did}/onenote/sectionGroups/{sectionGroup%2Did}/sections/{onenoteSection%2Did}/pages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @return a {@link OnenotePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePageCollectionResponse get() { return get(null); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OnenotePageCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, OnenotePageCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for groups * @param body The request body * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body) { return post(body, null); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body, @jak return this.requestAdapter.send(requestInfo, errorMapping, OnenotePage::createFromDiscriminatorValue); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new page in the specified section. + * Create new navigation property to pages for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public PagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new PagesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/sectiongroups/item/sections/item/pages/item/content/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/sectiongroups/item/sections/item/pages/item/content/ContentRequestBuilder.java index 940bad3238e..4bb6c0da4d6 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/sectiongroups/item/sections/item/pages/item/content/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/sectiongroups/item/sections/item/pages/item/content/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * The page's HTML content. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/sections/SectionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/sections/SectionsRequestBuilder.java index 4682c5f2ba4..8581b60cd4e 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/sections/SectionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/sections/SectionsRequestBuilder.java @@ -60,21 +60,19 @@ public SectionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/groups/{group%2Did}/onenote/sections{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of onenoteSection objects. + * The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link OnenoteSectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSectionCollectionResponse get() { return get(null); } /** - * Retrieve a list of onenoteSection objects. + * The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenoteSectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSectionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public OnenoteSection post(@jakarta.annotation.Nonnull final OnenoteSection body return this.requestAdapter.send(requestInfo, errorMapping, OnenoteSection::createFromDiscriminatorValue); } /** - * Retrieve a list of onenoteSection objects. + * The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of onenoteSection objects. + * The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public SectionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new SectionsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of onenoteSection objects. + * The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/sections/item/OnenoteSectionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/sections/item/OnenoteSectionItemRequestBuilder.java index 518f243e156..efc6fa8eebf 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/sections/item/OnenoteSectionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/sections/item/OnenoteSectionItemRequestBuilder.java @@ -100,21 +100,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a onenoteSection object. + * The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link OnenoteSection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSection get() { return get(null); } /** - * Retrieve the properties and relationships of a onenoteSection object. + * The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenoteSection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSection get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -169,7 +167,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a onenoteSection object. + * The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -177,7 +175,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a onenoteSection object. + * The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -229,7 +227,7 @@ public OnenoteSectionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fina public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a onenoteSection object. + * The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/sections/item/pages/PagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/sections/item/pages/PagesRequestBuilder.java index 224a298f9e2..cc8dbd4d7db 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/sections/item/pages/PagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/sections/item/pages/PagesRequestBuilder.java @@ -60,21 +60,19 @@ public PagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/groups/{group%2Did}/onenote/sections/{onenoteSection%2Did}/pages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @return a {@link OnenotePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePageCollectionResponse get() { return get(null); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OnenotePageCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, OnenotePageCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for groups * @param body The request body * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body) { return post(body, null); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body, @jak return this.requestAdapter.send(requestInfo, errorMapping, OnenotePage::createFromDiscriminatorValue); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new page in the specified section. + * Create new navigation property to pages for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public PagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new PagesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/sections/item/pages/item/content/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/sections/item/pages/item/content/ContentRequestBuilder.java index 4a5966263b9..134af8ec616 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/onenote/sections/item/pages/item/content/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/onenote/sections/item/pages/item/content/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * The page's HTML content. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/owners/OwnersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/owners/OwnersRequestBuilder.java index 7ac4d2d141b..dbb44f46b77 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/owners/OwnersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/owners/OwnersRequestBuilder.java @@ -125,7 +125,6 @@ public OwnersRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja * The owners of the group. Limited to 100 owners. Nullable. If this property is not specified when creating a Microsoft 365 group, the calling user is automatically assigned as the group owner. Supports $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1). Supports $expand including nested $select. For example, /groups?$filter=startsWith(displayName,'Role')&$select=id,displayName&$expand=owners($select=id,userPrincipalName,displayName). * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get() { @@ -136,7 +135,6 @@ public DirectoryObjectCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/owners/item/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/owners/item/ref/RefRequestBuilder.java index 56d35abc32f..4b2fe03fe35 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/owners/item/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/owners/item/ref/RefRequestBuilder.java @@ -35,18 +35,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/groups/{group%2Did}/owners/{directoryObject%2Did}/$ref", rawUrl); } /** - * Remove an owner from a Microsoft 365 group or a security group through the owners navigation property. Once owners are assigned to a group, the last owner (a user object) of the group cannot be removed. + * Delete ref of navigation property owners for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove an owner from a Microsoft 365 group or a security group through the owners navigation property. Once owners are assigned to a group, the last owner (a user object) of the group cannot be removed. + * Delete ref of navigation property owners for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -55,7 +53,7 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove an owner from a Microsoft 365 group or a security group through the owners navigation property. Once owners are assigned to a group, the last owner (a user object) of the group cannot be removed. + * Delete ref of navigation property owners for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -63,7 +61,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove an owner from a Microsoft 365 group or a security group through the owners navigation property. Once owners are assigned to a group, the last owner (a user object) of the group cannot be removed. + * Delete ref of navigation property owners for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/owners/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/owners/ref/RefRequestBuilder.java index af76342c0ef..d1e32a69474 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/owners/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/owners/ref/RefRequestBuilder.java @@ -38,18 +38,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/groups/{group%2Did}/owners/$ref?@id={%40id}{&%24count,%24filter,%24orderby,%24search,%24skip,%24top}", rawUrl); } /** - * Remove an owner from a Microsoft 365 group or a security group through the owners navigation property. Once owners are assigned to a group, the last owner (a user object) of the group cannot be removed. + * Delete ref of navigation property owners for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove an owner from a Microsoft 365 group or a security group through the owners navigation property. Once owners are assigned to a group, the last owner (a user object) of the group cannot be removed. + * Delete ref of navigation property owners for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -61,7 +59,6 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume * The owners of the group. Limited to 100 owners. Nullable. If this property is not specified when creating a Microsoft 365 group, the calling user is automatically assigned as the group owner. Supports $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1). Supports $expand including nested $select. For example, /groups?$filter=startsWith(displayName,'Role')&$select=id,displayName&$expand=owners($select=id,userPrincipalName,displayName). * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get() { @@ -72,7 +69,6 @@ public StringCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -82,20 +78,18 @@ public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util return this.requestAdapter.send(requestInfo, errorMapping, StringCollectionResponse::createFromDiscriminatorValue); } /** - * Add a user or service principal to a Microsoft 365 or security group's owners. The owners are a set of users or service principals who are allowed to modify the group object. + * Create new navigation property ref to owners for groups * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body) { post(body, null); } /** - * Add a user or service principal to a Microsoft 365 or security group's owners. The owners are a set of users or service principals who are allowed to modify the group object. + * Create new navigation property ref to owners for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { Objects.requireNonNull(body); @@ -105,7 +99,7 @@ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakart this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove an owner from a Microsoft 365 group or a security group through the owners navigation property. Once owners are assigned to a group, the last owner (a user object) of the group cannot be removed. + * Delete ref of navigation property owners for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -113,7 +107,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove an owner from a Microsoft 365 group or a security group through the owners navigation property. Once owners are assigned to a group, the last owner (a user object) of the group cannot be removed. + * Delete ref of navigation property owners for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add a user or service principal to a Microsoft 365 or security group's owners. The owners are a set of users or service principals who are allowed to modify the group object. + * Create new navigation property ref to owners for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -154,7 +148,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add a user or service principal to a Microsoft 365 or security group's owners. The owners are a set of users or service principals who are allowed to modify the group object. + * Create new navigation property ref to owners for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -179,7 +173,7 @@ public RefRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl return new RefRequestBuilder(rawUrl, requestAdapter); } /** - * Remove an owner from a Microsoft 365 group or a security group through the owners navigation property. Once owners are assigned to a group, the last owner (a user object) of the group cannot be removed. + * Delete ref of navigation property owners for groups */ @jakarta.annotation.Generated("com.microsoft.kiota") public class DeleteQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/permissiongrants/PermissionGrantsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/permissiongrants/PermissionGrantsRequestBuilder.java index 3ee0111d1d9..96c350cb8fc 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/permissiongrants/PermissionGrantsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/permissiongrants/PermissionGrantsRequestBuilder.java @@ -60,21 +60,19 @@ public PermissionGrantsRequestBuilder(@jakarta.annotation.Nonnull final String r super(requestAdapter, "{+baseurl}/groups/{group%2Did}/permissionGrants{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List all resource-specific permission grants on the group. This list specifies the Microsoft Entra apps that have access to the group, along with the corresponding resource-specific access that each app has. + * Get permissionGrants from groups * @return a {@link ResourceSpecificPermissionGrantCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ResourceSpecificPermissionGrantCollectionResponse get() { return get(null); } /** - * List all resource-specific permission grants on the group. This list specifies the Microsoft Entra apps that have access to the group, along with the corresponding resource-specific access that each app has. + * Get permissionGrants from groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ResourceSpecificPermissionGrantCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ResourceSpecificPermissionGrantCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ResourceSpecificPermissionGrant post(@jakarta.annotation.Nonnull final Re return this.requestAdapter.send(requestInfo, errorMapping, ResourceSpecificPermissionGrant::createFromDiscriminatorValue); } /** - * List all resource-specific permission grants on the group. This list specifies the Microsoft Entra apps that have access to the group, along with the corresponding resource-specific access that each app has. + * Get permissionGrants from groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List all resource-specific permission grants on the group. This list specifies the Microsoft Entra apps that have access to the group, along with the corresponding resource-specific access that each app has. + * Get permissionGrants from groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public PermissionGrantsRequestBuilder withUrl(@jakarta.annotation.Nonnull final return new PermissionGrantsRequestBuilder(rawUrl, requestAdapter); } /** - * List all resource-specific permission grants on the group. This list specifies the Microsoft Entra apps that have access to the group, along with the corresponding resource-specific access that each app has. + * Get permissionGrants from groups */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/photos/PhotosRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/photos/PhotosRequestBuilder.java index 5b36ff6a743..b28b484b34d 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/photos/PhotosRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/photos/PhotosRequestBuilder.java @@ -50,21 +50,19 @@ public PhotosRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/groups/{group%2Did}/photos{?%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of profilePhoto objects. + * The profile photos owned by the group. Read-only. Nullable. * @return a {@link ProfilePhotoCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ProfilePhotoCollectionResponse get() { return get(null); } /** - * Retrieve a list of profilePhoto objects. + * The profile photos owned by the group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ProfilePhotoCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ProfilePhotoCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -74,7 +72,7 @@ public ProfilePhotoCollectionResponse get(@jakarta.annotation.Nullable final jav return this.requestAdapter.send(requestInfo, errorMapping, ProfilePhotoCollectionResponse::createFromDiscriminatorValue); } /** - * Retrieve a list of profilePhoto objects. + * The profile photos owned by the group. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -82,7 +80,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of profilePhoto objects. + * The profile photos owned by the group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -104,7 +102,7 @@ public PhotosRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw return new PhotosRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of profilePhoto objects. + * The profile photos owned by the group. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/photos/item/value/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/photos/item/value/ContentRequestBuilder.java index f95b3e38685..3530f314ec5 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/photos/item/value/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/photos/item/value/ContentRequestBuilder.java @@ -39,7 +39,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * Get media content for the navigation property photos from groups * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -50,7 +49,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/PlansRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/PlansRequestBuilder.java index 19ffb801e0d..1de102a961a 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/PlansRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/PlansRequestBuilder.java @@ -60,21 +60,19 @@ public PlansRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/groups/{group%2Did}/planner/plans{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of plannerPlan objects owned by a group object. + * Read-only. Nullable. Returns the plannerPlans owned by the group. * @return a {@link PlannerPlanCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerPlanCollectionResponse get() { return get(null); } /** - * Retrieve a list of plannerPlan objects owned by a group object. + * Read-only. Nullable. Returns the plannerPlans owned by the group. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerPlanCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerPlanCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public PlannerPlan post(@jakarta.annotation.Nonnull final PlannerPlan body, @jak return this.requestAdapter.send(requestInfo, errorMapping, PlannerPlan::createFromDiscriminatorValue); } /** - * Retrieve a list of plannerPlan objects owned by a group object. + * Read-only. Nullable. Returns the plannerPlans owned by the group. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of plannerPlan objects owned by a group object. + * Read-only. Nullable. Returns the plannerPlans owned by the group. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public PlansRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new PlansRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of plannerPlan objects owned by a group object. + * Read-only. Nullable. Returns the plannerPlans owned by the group. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/buckets/BucketsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/buckets/BucketsRequestBuilder.java index 34e11e1c11c..c1c9f192fe0 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/buckets/BucketsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/buckets/BucketsRequestBuilder.java @@ -60,21 +60,19 @@ public BucketsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/groups/{group%2Did}/planner/plans/{plannerPlan%2Did}/buckets{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of plannerBucket objects contained by a plannerPlan object. + * Read-only. Nullable. Collection of buckets in the plan. * @return a {@link PlannerBucketCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketCollectionResponse get() { return get(null); } /** - * Retrieve a list of plannerBucket objects contained by a plannerPlan object. + * Read-only. Nullable. Collection of buckets in the plan. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerBucketCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public PlannerBucket post(@jakarta.annotation.Nonnull final PlannerBucket body, return this.requestAdapter.send(requestInfo, errorMapping, PlannerBucket::createFromDiscriminatorValue); } /** - * Retrieve a list of plannerBucket objects contained by a plannerPlan object. + * Read-only. Nullable. Collection of buckets in the plan. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of plannerBucket objects contained by a plannerPlan object. + * Read-only. Nullable. Collection of buckets in the plan. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public BucketsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new BucketsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of plannerBucket objects contained by a plannerPlan object. + * Read-only. Nullable. Collection of buckets in the plan. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/buckets/item/tasks/TasksRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/buckets/item/tasks/TasksRequestBuilder.java index e0c9031c250..3033befea46 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/buckets/item/tasks/TasksRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/buckets/item/tasks/TasksRequestBuilder.java @@ -60,21 +60,19 @@ public TasksRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/groups/{group%2Did}/planner/plans/{plannerPlan%2Did}/buckets/{plannerBucket%2Did}/tasks{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of plannerTask objects associated to a plannerBucket object. + * Read-only. Nullable. The collection of tasks in the bucket. * @return a {@link PlannerTaskCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskCollectionResponse get() { return get(null); } /** - * Retrieve a list of plannerTask objects associated to a plannerBucket object. + * Read-only. Nullable. The collection of tasks in the bucket. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerTaskCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public PlannerTask post(@jakarta.annotation.Nonnull final PlannerTask body, @jak return this.requestAdapter.send(requestInfo, errorMapping, PlannerTask::createFromDiscriminatorValue); } /** - * Retrieve a list of plannerTask objects associated to a plannerBucket object. + * Read-only. Nullable. The collection of tasks in the bucket. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of plannerTask objects associated to a plannerBucket object. + * Read-only. Nullable. The collection of tasks in the bucket. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public TasksRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new TasksRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of plannerTask objects associated to a plannerBucket object. + * Read-only. Nullable. The collection of tasks in the bucket. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/buckets/item/tasks/item/assignedtotaskboardformat/AssignedToTaskBoardFormatRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/buckets/item/tasks/item/assignedtotaskboardformat/AssignedToTaskBoardFormatRequestBuilder.java index eef60d780ef..3e628e77e49 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/buckets/item/tasks/item/assignedtotaskboardformat/AssignedToTaskBoardFormatRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/buckets/item/tasks/item/assignedtotaskboardformat/AssignedToTaskBoardFormatRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. * @return a {@link PlannerAssignedToTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerAssignedToTaskBoardTaskFormat get() { return get(null); } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerAssignedToTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerAssignedToTaskBoardTaskFormat get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,6 @@ public PlannerAssignedToTaskBoardTaskFormat get(@jakarta.annotation.Nullable fin * @param body The request body * @return a {@link PlannerAssignedToTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerAssignedToTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerAssignedToTaskBoardTaskFormat body) { @@ -95,7 +92,6 @@ public PlannerAssignedToTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull fi * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerAssignedToTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerAssignedToTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerAssignedToTaskBoardTaskFormat body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public AssignedToTaskBoardFormatRequestBuilder withUrl(@jakarta.annotation.Nonnu public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/buckets/item/tasks/item/buckettaskboardformat/BucketTaskBoardFormatRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/buckets/item/tasks/item/buckettaskboardformat/BucketTaskBoardFormatRequestBuilder.java index e5c2c121222..abdb7cbac75 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/buckets/item/tasks/item/buckettaskboardformat/BucketTaskBoardFormatRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/buckets/item/tasks/item/buckettaskboardformat/BucketTaskBoardFormatRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. * @return a {@link PlannerBucketTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketTaskBoardTaskFormat get() { return get(null); } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerBucketTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketTaskBoardTaskFormat get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,6 @@ public PlannerBucketTaskBoardTaskFormat get(@jakarta.annotation.Nullable final j * @param body The request body * @return a {@link PlannerBucketTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerBucketTaskBoardTaskFormat body) { @@ -95,7 +92,6 @@ public PlannerBucketTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerBucketTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerBucketTaskBoardTaskFormat body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public BucketTaskBoardFormatRequestBuilder withUrl(@jakarta.annotation.Nonnull f public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/buckets/item/tasks/item/details/DetailsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/buckets/item/tasks/item/details/DetailsRequestBuilder.java index 201d0531484..27e922ae6f6 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/buckets/item/tasks/item/details/DetailsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/buckets/item/tasks/item/details/DetailsRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. * @return a {@link PlannerTaskDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskDetails get() { return get(null); } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerTaskDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskDetails get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,6 @@ public PlannerTaskDetails get(@jakarta.annotation.Nullable final java.util.funct * @param body The request body * @return a {@link PlannerTaskDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskDetails patch(@jakarta.annotation.Nonnull final PlannerTaskDetails body) { @@ -95,7 +92,6 @@ public PlannerTaskDetails patch(@jakarta.annotation.Nonnull final PlannerTaskDet * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerTaskDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskDetails patch(@jakarta.annotation.Nonnull final PlannerTaskDetails body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public DetailsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/buckets/item/tasks/item/progresstaskboardformat/ProgressTaskBoardFormatRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/buckets/item/tasks/item/progresstaskboardformat/ProgressTaskBoardFormatRequestBuilder.java index f1a729f63a7..c651838af21 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/buckets/item/tasks/item/progresstaskboardformat/ProgressTaskBoardFormatRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/buckets/item/tasks/item/progresstaskboardformat/ProgressTaskBoardFormatRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. * @return a {@link PlannerProgressTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerProgressTaskBoardTaskFormat get() { return get(null); } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerProgressTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerProgressTaskBoardTaskFormat get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,6 @@ public PlannerProgressTaskBoardTaskFormat get(@jakarta.annotation.Nullable final * @param body The request body * @return a {@link PlannerProgressTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerProgressTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerProgressTaskBoardTaskFormat body) { @@ -95,7 +92,6 @@ public PlannerProgressTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull fina * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerProgressTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerProgressTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerProgressTaskBoardTaskFormat body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public ProgressTaskBoardFormatRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/details/DetailsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/details/DetailsRequestBuilder.java index 8e23d49767a..6466fc9c14e 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/details/DetailsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/details/DetailsRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a plannerPlanDetails object. + * Read-only. Nullable. Extra details about the plan. * @return a {@link PlannerPlanDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerPlanDetails get() { return get(null); } /** - * Retrieve the properties and relationships of a plannerPlanDetails object. + * Read-only. Nullable. Extra details about the plan. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerPlanDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerPlanDetails get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,6 @@ public PlannerPlanDetails get(@jakarta.annotation.Nullable final java.util.funct * @param body The request body * @return a {@link PlannerPlanDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerPlanDetails patch(@jakarta.annotation.Nonnull final PlannerPlanDetails body) { @@ -95,7 +92,6 @@ public PlannerPlanDetails patch(@jakarta.annotation.Nonnull final PlannerPlanDet * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerPlanDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerPlanDetails patch(@jakarta.annotation.Nonnull final PlannerPlanDetails body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a plannerPlanDetails object. + * Read-only. Nullable. Extra details about the plan. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a plannerPlanDetails object. + * Read-only. Nullable. Extra details about the plan. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public DetailsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a plannerPlanDetails object. + * Read-only. Nullable. Extra details about the plan. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/tasks/TasksRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/tasks/TasksRequestBuilder.java index 0d2d8e2295a..2e7f3647db0 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/tasks/TasksRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/tasks/TasksRequestBuilder.java @@ -60,21 +60,19 @@ public TasksRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/groups/{group%2Did}/planner/plans/{plannerPlan%2Did}/tasks{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of plannerTask objects associated with a plannerPlan object. + * Read-only. Nullable. Collection of tasks in the plan. * @return a {@link PlannerTaskCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskCollectionResponse get() { return get(null); } /** - * Retrieve a list of plannerTask objects associated with a plannerPlan object. + * Read-only. Nullable. Collection of tasks in the plan. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerTaskCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public PlannerTask post(@jakarta.annotation.Nonnull final PlannerTask body, @jak return this.requestAdapter.send(requestInfo, errorMapping, PlannerTask::createFromDiscriminatorValue); } /** - * Retrieve a list of plannerTask objects associated with a plannerPlan object. + * Read-only. Nullable. Collection of tasks in the plan. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of plannerTask objects associated with a plannerPlan object. + * Read-only. Nullable. Collection of tasks in the plan. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public TasksRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new TasksRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of plannerTask objects associated with a plannerPlan object. + * Read-only. Nullable. Collection of tasks in the plan. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/tasks/item/assignedtotaskboardformat/AssignedToTaskBoardFormatRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/tasks/item/assignedtotaskboardformat/AssignedToTaskBoardFormatRequestBuilder.java index 099aaa43949..bdf27c25597 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/tasks/item/assignedtotaskboardformat/AssignedToTaskBoardFormatRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/tasks/item/assignedtotaskboardformat/AssignedToTaskBoardFormatRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. * @return a {@link PlannerAssignedToTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerAssignedToTaskBoardTaskFormat get() { return get(null); } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerAssignedToTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerAssignedToTaskBoardTaskFormat get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,6 @@ public PlannerAssignedToTaskBoardTaskFormat get(@jakarta.annotation.Nullable fin * @param body The request body * @return a {@link PlannerAssignedToTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerAssignedToTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerAssignedToTaskBoardTaskFormat body) { @@ -95,7 +92,6 @@ public PlannerAssignedToTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull fi * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerAssignedToTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerAssignedToTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerAssignedToTaskBoardTaskFormat body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public AssignedToTaskBoardFormatRequestBuilder withUrl(@jakarta.annotation.Nonnu public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/tasks/item/buckettaskboardformat/BucketTaskBoardFormatRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/tasks/item/buckettaskboardformat/BucketTaskBoardFormatRequestBuilder.java index 4b21ef763ba..2954222d10c 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/tasks/item/buckettaskboardformat/BucketTaskBoardFormatRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/tasks/item/buckettaskboardformat/BucketTaskBoardFormatRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. * @return a {@link PlannerBucketTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketTaskBoardTaskFormat get() { return get(null); } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerBucketTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketTaskBoardTaskFormat get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,6 @@ public PlannerBucketTaskBoardTaskFormat get(@jakarta.annotation.Nullable final j * @param body The request body * @return a {@link PlannerBucketTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerBucketTaskBoardTaskFormat body) { @@ -95,7 +92,6 @@ public PlannerBucketTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerBucketTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerBucketTaskBoardTaskFormat body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public BucketTaskBoardFormatRequestBuilder withUrl(@jakarta.annotation.Nonnull f public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/tasks/item/details/DetailsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/tasks/item/details/DetailsRequestBuilder.java index 0a8403c6632..6934037ef86 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/tasks/item/details/DetailsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/tasks/item/details/DetailsRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. * @return a {@link PlannerTaskDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskDetails get() { return get(null); } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerTaskDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskDetails get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,6 @@ public PlannerTaskDetails get(@jakarta.annotation.Nullable final java.util.funct * @param body The request body * @return a {@link PlannerTaskDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskDetails patch(@jakarta.annotation.Nonnull final PlannerTaskDetails body) { @@ -95,7 +92,6 @@ public PlannerTaskDetails patch(@jakarta.annotation.Nonnull final PlannerTaskDet * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerTaskDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskDetails patch(@jakarta.annotation.Nonnull final PlannerTaskDetails body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public DetailsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/tasks/item/progresstaskboardformat/ProgressTaskBoardFormatRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/tasks/item/progresstaskboardformat/ProgressTaskBoardFormatRequestBuilder.java index 25156f3c95b..96a38c3692e 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/tasks/item/progresstaskboardformat/ProgressTaskBoardFormatRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/planner/plans/item/tasks/item/progresstaskboardformat/ProgressTaskBoardFormatRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. * @return a {@link PlannerProgressTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerProgressTaskBoardTaskFormat get() { return get(null); } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerProgressTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerProgressTaskBoardTaskFormat get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,6 @@ public PlannerProgressTaskBoardTaskFormat get(@jakarta.annotation.Nullable final * @param body The request body * @return a {@link PlannerProgressTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerProgressTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerProgressTaskBoardTaskFormat body) { @@ -95,7 +92,6 @@ public PlannerProgressTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull fina * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerProgressTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerProgressTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerProgressTaskBoardTaskFormat body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public ProgressTaskBoardFormatRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/rejectedsenders/RejectedSendersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/rejectedsenders/RejectedSendersRequestBuilder.java index 8d9c73aab59..191a9b19939 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/rejectedsenders/RejectedSendersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/rejectedsenders/RejectedSendersRequestBuilder.java @@ -68,21 +68,19 @@ public RejectedSendersRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/groups/{group%2Did}/rejectedSenders{?%24count,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Users in the rejected senders list can't post to conversations of the group (identified in the GET request URL). Make sure you don't specify the same user or group in the rejected senders and accepted senders lists, otherwise you get an error. + * The list of users or groups not allowed to create posts or calendar events in this group. Nullable * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get() { return get(null); } /** - * Users in the rejected senders list can't post to conversations of the group (identified in the GET request URL). Make sure you don't specify the same user or group in the rejected senders and accepted senders lists, otherwise you get an error. + * The list of users or groups not allowed to create posts or calendar events in this group. Nullable * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -92,7 +90,7 @@ public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, DirectoryObjectCollectionResponse::createFromDiscriminatorValue); } /** - * Users in the rejected senders list can't post to conversations of the group (identified in the GET request URL). Make sure you don't specify the same user or group in the rejected senders and accepted senders lists, otherwise you get an error. + * The list of users or groups not allowed to create posts or calendar events in this group. Nullable * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -100,7 +98,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Users in the rejected senders list can't post to conversations of the group (identified in the GET request URL). Make sure you don't specify the same user or group in the rejected senders and accepted senders lists, otherwise you get an error. + * The list of users or groups not allowed to create posts or calendar events in this group. Nullable * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -122,7 +120,7 @@ public RejectedSendersRequestBuilder withUrl(@jakarta.annotation.Nonnull final S return new RejectedSendersRequestBuilder(rawUrl, requestAdapter); } /** - * Users in the rejected senders list can't post to conversations of the group (identified in the GET request URL). Make sure you don't specify the same user or group in the rejected senders and accepted senders lists, otherwise you get an error. + * The list of users or groups not allowed to create posts or calendar events in this group. Nullable */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/rejectedsenders/item/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/rejectedsenders/item/ref/RefRequestBuilder.java index 42aa3131a84..82a36b350cd 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/rejectedsenders/item/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/rejectedsenders/item/ref/RefRequestBuilder.java @@ -35,18 +35,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/groups/{group%2Did}/rejectedSenders/{directoryObject%2Did}/$ref", rawUrl); } /** - * Remove rejectedSender + * Delete ref of navigation property rejectedSenders for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove rejectedSender + * Delete ref of navigation property rejectedSenders for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -55,7 +53,7 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove rejectedSender + * Delete ref of navigation property rejectedSenders for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -63,7 +61,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove rejectedSender + * Delete ref of navigation property rejectedSenders for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/rejectedsenders/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/rejectedsenders/ref/RefRequestBuilder.java index ca1a1533e23..2d77430052d 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/rejectedsenders/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/rejectedsenders/ref/RefRequestBuilder.java @@ -38,18 +38,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/groups/{group%2Did}/rejectedSenders/$ref?@id={%40id}{&%24count,%24filter,%24orderby,%24skip,%24top}", rawUrl); } /** - * Remove rejectedSender + * Delete ref of navigation property rejectedSenders for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove rejectedSender + * Delete ref of navigation property rejectedSenders for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -58,21 +56,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Users in the rejected senders list can't post to conversations of the group (identified in the GET request URL). Make sure you don't specify the same user or group in the rejected senders and accepted senders lists, otherwise you get an error. + * The list of users or groups not allowed to create posts or calendar events in this group. Nullable * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get() { return get(null); } /** - * Users in the rejected senders list can't post to conversations of the group (identified in the GET request URL). Make sure you don't specify the same user or group in the rejected senders and accepted senders lists, otherwise you get an error. + * The list of users or groups not allowed to create posts or calendar events in this group. Nullable * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -82,20 +78,18 @@ public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util return this.requestAdapter.send(requestInfo, errorMapping, StringCollectionResponse::createFromDiscriminatorValue); } /** - * Specify the user or group in @odata.id in the request body. Users in the rejected senders list can't post to conversations of the group (identified in the POST request URL). Make sure you don't specify the same user or group in the rejected senders and accepted senders lists, otherwise you'll get an error. + * Create new navigation property ref to rejectedSenders for groups * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body) { post(body, null); } /** - * Specify the user or group in @odata.id in the request body. Users in the rejected senders list can't post to conversations of the group (identified in the POST request URL). Make sure you don't specify the same user or group in the rejected senders and accepted senders lists, otherwise you'll get an error. + * Create new navigation property ref to rejectedSenders for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { Objects.requireNonNull(body); @@ -105,7 +99,7 @@ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakart this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove rejectedSender + * Delete ref of navigation property rejectedSenders for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -113,7 +107,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove rejectedSender + * Delete ref of navigation property rejectedSenders for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Users in the rejected senders list can't post to conversations of the group (identified in the GET request URL). Make sure you don't specify the same user or group in the rejected senders and accepted senders lists, otherwise you get an error. + * The list of users or groups not allowed to create posts or calendar events in this group. Nullable * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -133,7 +127,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Users in the rejected senders list can't post to conversations of the group (identified in the GET request URL). Make sure you don't specify the same user or group in the rejected senders and accepted senders lists, otherwise you get an error. + * The list of users or groups not allowed to create posts or calendar events in this group. Nullable * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Specify the user or group in @odata.id in the request body. Users in the rejected senders list can't post to conversations of the group (identified in the POST request URL). Make sure you don't specify the same user or group in the rejected senders and accepted senders lists, otherwise you'll get an error. + * Create new navigation property ref to rejectedSenders for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -154,7 +148,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Specify the user or group in @odata.id in the request body. Users in the rejected senders list can't post to conversations of the group (identified in the POST request URL). Make sure you don't specify the same user or group in the rejected senders and accepted senders lists, otherwise you'll get an error. + * Create new navigation property ref to rejectedSenders for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -179,7 +173,7 @@ public RefRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl return new RefRequestBuilder(rawUrl, requestAdapter); } /** - * Remove rejectedSender + * Delete ref of navigation property rejectedSenders for groups */ @jakarta.annotation.Generated("com.microsoft.kiota") public class DeleteQueryParameters implements QueryParameters { @@ -211,7 +205,7 @@ public class DeleteRequestConfiguration extends BaseRequestConfiguration { public DeleteQueryParameters queryParameters = new DeleteQueryParameters(); } /** - * Users in the rejected senders list can't post to conversations of the group (identified in the GET request URL). Make sure you don't specify the same user or group in the rejected senders and accepted senders lists, otherwise you get an error. + * The list of users or groups not allowed to create posts or calendar events in this group. Nullable */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/settings/SettingsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/settings/SettingsRequestBuilder.java index 52d58cea6a1..8855fb55f9c 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/settings/SettingsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/settings/SettingsRequestBuilder.java @@ -60,21 +60,19 @@ public SettingsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/groups/{group%2Did}/settings{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of tenant-level or group-specific group settings objects. + * Settings that can govern this group's behavior, like whether members can invite guest users to the group. Nullable. * @return a {@link GroupSettingCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public GroupSettingCollectionResponse get() { return get(null); } /** - * Retrieve a list of tenant-level or group-specific group settings objects. + * Settings that can govern this group's behavior, like whether members can invite guest users to the group. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GroupSettingCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public GroupSettingCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public GroupSettingCollectionResponse get(@jakarta.annotation.Nullable final jav return this.requestAdapter.send(requestInfo, errorMapping, GroupSettingCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new setting based on the templates available in groupSettingTemplates. These settings can be at the tenant-level or at the group level. Group settings apply to only Microsoft 365 groups. The template named Group.Unified can be used to configure tenant-wide Microsoft 365 group settings, while the template named Group.Unified.Guest can be used to configure group-specific settings. + * Create new navigation property to settings for groups * @param body The request body * @return a {@link GroupSetting} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public GroupSetting post(@jakarta.annotation.Nonnull final GroupSetting body) { return post(body, null); } /** - * Create a new setting based on the templates available in groupSettingTemplates. These settings can be at the tenant-level or at the group level. Group settings apply to only Microsoft 365 groups. The template named Group.Unified can be used to configure tenant-wide Microsoft 365 group settings, while the template named Group.Unified.Guest can be used to configure group-specific settings. + * Create new navigation property to settings for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GroupSetting} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public GroupSetting post(@jakarta.annotation.Nonnull final GroupSetting body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public GroupSetting post(@jakarta.annotation.Nonnull final GroupSetting body, @j return this.requestAdapter.send(requestInfo, errorMapping, GroupSetting::createFromDiscriminatorValue); } /** - * Retrieve a list of tenant-level or group-specific group settings objects. + * Settings that can govern this group's behavior, like whether members can invite guest users to the group. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of tenant-level or group-specific group settings objects. + * Settings that can govern this group's behavior, like whether members can invite guest users to the group. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new setting based on the templates available in groupSettingTemplates. These settings can be at the tenant-level or at the group level. Group settings apply to only Microsoft 365 groups. The template named Group.Unified can be used to configure tenant-wide Microsoft 365 group settings, while the template named Group.Unified.Guest can be used to configure group-specific settings. + * Create new navigation property to settings for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new setting based on the templates available in groupSettingTemplates. These settings can be at the tenant-level or at the group level. Group settings apply to only Microsoft 365 groups. The template named Group.Unified can be used to configure tenant-wide Microsoft 365 group settings, while the template named Group.Unified.Guest can be used to configure group-specific settings. + * Create new navigation property to settings for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public SettingsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new SettingsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of tenant-level or group-specific group settings objects. + * Settings that can govern this group's behavior, like whether members can invite guest users to the group. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/settings/item/GroupSettingItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/settings/item/GroupSettingItemRequestBuilder.java index f845034fdca..46a2b85db53 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/settings/item/GroupSettingItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/settings/item/GroupSettingItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties of a specific group setting object. The setting can be a tenant-level or group-specific setting. + * Settings that can govern this group's behavior, like whether members can invite guest users to the group. Nullable. * @return a {@link GroupSetting} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public GroupSetting get() { return get(null); } /** - * Retrieve the properties of a specific group setting object. The setting can be a tenant-level or group-specific setting. + * Settings that can govern this group's behavior, like whether members can invite guest users to the group. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GroupSetting} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public GroupSetting get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public GroupSetting get(@jakarta.annotation.Nullable final java.util.function.Co return this.requestAdapter.send(requestInfo, errorMapping, GroupSetting::createFromDiscriminatorValue); } /** - * Update the properties of a groupSetting object for tenant-wide group settings or a specific group setting. + * Update the navigation property settings in groups * @param body The request body * @return a {@link GroupSetting} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public GroupSetting patch(@jakarta.annotation.Nonnull final GroupSetting body) { return patch(body, null); } /** - * Update the properties of a groupSetting object for tenant-wide group settings or a specific group setting. + * Update the navigation property settings in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GroupSetting} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public GroupSetting patch(@jakarta.annotation.Nonnull final GroupSetting body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties of a specific group setting object. The setting can be a tenant-level or group-specific setting. + * Settings that can govern this group's behavior, like whether members can invite guest users to the group. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties of a specific group setting object. The setting can be a tenant-level or group-specific setting. + * Settings that can govern this group's behavior, like whether members can invite guest users to the group. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a groupSetting object for tenant-wide group settings or a specific group setting. + * Update the navigation property settings in groups * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a groupSetting object for tenant-wide group settings or a specific group setting. + * Update the navigation property settings in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public GroupSettingItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties of a specific group setting object. The setting can be a tenant-level or group-specific setting. + * Settings that can govern this group's behavior, like whether members can invite guest users to the group. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/delta/DeltaRequestBuilder.java index a360614f475..90b7236816c 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Get newly created, updated, or deleted sites without having to perform a full read of the entire sites collection. A delta function call for sites is similar to a GET request, except that by appropriately applying state tokens in one or more of these calls,you can query for incremental changes in the sites. It allows you to maintain and synchronize a local store of a user's sites without having to fetch all the sites from the server every time.The application calls the API without specifying any parameters.The service begins enumerating sites and returns pages of changes to these sites, accompanied by either an @odata.nextLink or an @odata.deltaLink.Your application should continue making calls using the @odata.nextLink until there's an @odata.deltaLink in the response. After you receive all the changes, you can apply them to your local state.To monitor future changes, call the delta API by using the @odata.deltaLink in the previous response. Any resources marked as deleted should be removed from your local state. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Get newly created, updated, or deleted sites without having to perform a full read of the entire sites collection. A delta function call for sites is similar to a GET request, except that by appropriately applying state tokens in one or more of these calls,you can query for incremental changes in the sites. It allows you to maintain and synchronize a local store of a user's sites without having to fetch all the sites from the server every time.The application calls the API without specifying any parameters.The service begins enumerating sites and returns pages of changes to these sites, accompanied by either an @odata.nextLink or an @odata.deltaLink.Your application should continue making calls using the @odata.nextLink until there's an @odata.deltaLink in the response. After you receive all the changes, you can apply them to your local state.To monitor future changes, call the delta API by using the @odata.deltaLink in the previous response. Any resources marked as deleted should be removed from your local state. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Get newly created, updated, or deleted sites without having to perform a full read of the entire sites collection. A delta function call for sites is similar to a GET request, except that by appropriately applying state tokens in one or more of these calls,you can query for incremental changes in the sites. It allows you to maintain and synchronize a local store of a user's sites without having to fetch all the sites from the server every time.The application calls the API without specifying any parameters.The service begins enumerating sites and returns pages of changes to these sites, accompanied by either an @odata.nextLink or an @odata.deltaLink.Your application should continue making calls using the @odata.nextLink until there's an @odata.deltaLink in the response. After you receive all the changes, you can apply them to your local state.To monitor future changes, call the delta API by using the @odata.deltaLink in the previous response. Any resources marked as deleted should be removed from your local state. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Get newly created, updated, or deleted sites without having to perform a full read of the entire sites collection. A delta function call for sites is similar to a GET request, except that by appropriately applying state tokens in one or more of these calls,you can query for incremental changes in the sites. It allows you to maintain and synchronize a local store of a user's sites without having to fetch all the sites from the server every time.The application calls the API without specifying any parameters.The service begins enumerating sites and returns pages of changes to these sites, accompanied by either an @odata.nextLink or an @odata.deltaLink.Your application should continue making calls using the @odata.nextLink until there's an @odata.deltaLink in the response. After you receive all the changes, you can apply them to your local state.To monitor future changes, call the delta API by using the @odata.deltaLink in the previous response. Any resources marked as deleted should be removed from your local state. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Get newly created, updated, or deleted sites without having to perform a full read of the entire sites collection. A delta function call for sites is similar to a GET request, except that by appropriately applying state tokens in one or more of these calls,you can query for incremental changes in the sites. It allows you to maintain and synchronize a local store of a user's sites without having to fetch all the sites from the server every time.The application calls the API without specifying any parameters.The service begins enumerating sites and returns pages of changes to these sites, accompanied by either an @odata.nextLink or an @odata.deltaLink.Your application should continue making calls using the @odata.nextLink until there's an @odata.deltaLink in the response. After you receive all the changes, you can apply them to your local state.To monitor future changes, call the delta API by using the @odata.deltaLink in the previous response. Any resources marked as deleted should be removed from your local state. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/getallsites/GetAllSitesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/getallsites/GetAllSitesRequestBuilder.java index 87321c1c5fb..88aa3c92e27 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/getallsites/GetAllSitesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/getallsites/GetAllSitesRequestBuilder.java @@ -36,19 +36,21 @@ public GetAllSitesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/getAllSites(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function getAllSites + * List sites across geographies in an organization. This API can also be used to enumerate all sites in a non-multi-geo tenant. For more information, see Best practices for discovering files and detecting changes at scale. * @return a {@link GetAllSitesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetAllSitesGetResponse get() { return get(null); } /** - * Invoke function getAllSites + * List sites across geographies in an organization. This API can also be used to enumerate all sites in a non-multi-geo tenant. For more information, see Best practices for discovering files and detecting changes at scale. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GetAllSitesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetAllSitesGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public GetAllSitesGetResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, GetAllSitesGetResponse::createFromDiscriminatorValue); } /** - * Invoke function getAllSites + * List sites across geographies in an organization. This API can also be used to enumerate all sites in a non-multi-geo tenant. For more information, see Best practices for discovering files and detecting changes at scale. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getAllSites + * List sites across geographies in an organization. This API can also be used to enumerate all sites in a non-multi-geo tenant. For more information, see Best practices for discovering files and detecting changes at scale. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public GetAllSitesRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new GetAllSitesRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function getAllSites + * List sites across geographies in an organization. This API can also be used to enumerate all sites in a non-multi-geo tenant. For more information, see Best practices for discovering files and detecting changes at scale. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/analytics/alltime/AllTimeRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/analytics/alltime/AllTimeRequestBuilder.java index 7dc43dd5ea8..3fda1cab032 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/analytics/alltime/AllTimeRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/analytics/alltime/AllTimeRequestBuilder.java @@ -37,21 +37,19 @@ public AllTimeRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/analytics/allTime{?%24expand,%24select}", rawUrl); } /** - * Get [itemAnalytics][] about the views that took place under this resource.The itemAnalytics resource is a convenient way to get activity stats for allTime and the lastSevenDays.For a custom time range or interval, use the [getActivitiesByInterval][] API. + * Get allTime from groups * @return a {@link ItemActivityStat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ItemActivityStat get() { return get(null); } /** - * Get [itemAnalytics][] about the views that took place under this resource.The itemAnalytics resource is a convenient way to get activity stats for allTime and the lastSevenDays.For a custom time range or interval, use the [getActivitiesByInterval][] API. + * Get allTime from groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ItemActivityStat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ItemActivityStat get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -61,7 +59,7 @@ public ItemActivityStat get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, ItemActivityStat::createFromDiscriminatorValue); } /** - * Get [itemAnalytics][] about the views that took place under this resource.The itemAnalytics resource is a convenient way to get activity stats for allTime and the lastSevenDays.For a custom time range or interval, use the [getActivitiesByInterval][] API. + * Get allTime from groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -69,7 +67,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get [itemAnalytics][] about the views that took place under this resource.The itemAnalytics resource is a convenient way to get activity stats for allTime and the lastSevenDays.For a custom time range or interval, use the [getActivitiesByInterval][] API. + * Get allTime from groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -91,7 +89,7 @@ public AllTimeRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new AllTimeRequestBuilder(rawUrl, requestAdapter); } /** - * Get [itemAnalytics][] about the views that took place under this resource.The itemAnalytics resource is a convenient way to get activity stats for allTime and the lastSevenDays.For a custom time range or interval, use the [getActivitiesByInterval][] API. + * Get allTime from groups */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/columns/ColumnsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/columns/ColumnsRequestBuilder.java index 8921f21de22..e5b93009a32 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/columns/ColumnsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/columns/ColumnsRequestBuilder.java @@ -60,21 +60,19 @@ public ColumnsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/columns{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [site][site]. + * The collection of column definitions reusable across lists under this site. * @return a {@link ColumnDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinitionCollectionResponse get() { return get(null); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [site][site]. + * The collection of column definitions reusable across lists under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinitionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public ColumnDefinitionCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinitionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a column for a [site][site] with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for groups * @param body The request body * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition body) { return post(body, null); } /** - * Create a column for a [site][site] with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinition::createFromDiscriminatorValue); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [site][site]. + * The collection of column definitions reusable across lists under this site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [site][site]. + * The collection of column definitions reusable across lists under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a column for a [site][site] with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a column for a [site][site] with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ColumnsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new ColumnsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [site][site]. + * The collection of column definitions reusable across lists under this site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/ContentTypesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/ContentTypesRequestBuilder.java index fb2f7cabd56..baf98f9fd90 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/ContentTypesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/ContentTypesRequestBuilder.java @@ -87,21 +87,19 @@ public ContentTypesRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/contentTypes{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the collection of [contentType][contentType] resources in a [site][]. + * The collection of content types defined for this site. * @return a {@link ContentTypeCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentTypeCollectionResponse get() { return get(null); } /** - * Get the collection of [contentType][contentType] resources in a [site][]. + * The collection of content types defined for this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ContentTypeCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentTypeCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,23 +109,21 @@ public ContentTypeCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, ContentTypeCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new [contentType][] in a [site][]. + * Create new navigation property to contentTypes for groups * @param body The request body * @return a {@link ContentType} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentType post(@jakarta.annotation.Nonnull final ContentType body) { return post(body, null); } /** - * Create a new [contentType][] in a [site][]. + * Create new navigation property to contentTypes for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ContentType} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentType post(@jakarta.annotation.Nonnull final ContentType body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -138,7 +134,7 @@ public ContentType post(@jakarta.annotation.Nonnull final ContentType body, @jak return this.requestAdapter.send(requestInfo, errorMapping, ContentType::createFromDiscriminatorValue); } /** - * Get the collection of [contentType][contentType] resources in a [site][]. + * The collection of content types defined for this site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the collection of [contentType][contentType] resources in a [site][]. + * The collection of content types defined for this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -158,7 +154,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new [contentType][] in a [site][]. + * Create new navigation property to contentTypes for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -167,7 +163,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new [contentType][] in a [site][]. + * Create new navigation property to contentTypes for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -192,7 +188,7 @@ public ContentTypesRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri return new ContentTypesRequestBuilder(rawUrl, requestAdapter); } /** - * Get the collection of [contentType][contentType] resources in a [site][]. + * The collection of content types defined for this site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/addcopy/AddCopyRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/addcopy/AddCopyRequestBuilder.java index 97873d37689..dbadf01c3ac 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/addcopy/AddCopyRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/addcopy/AddCopyRequestBuilder.java @@ -36,7 +36,7 @@ public AddCopyRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/contentTypes/addCopy", rawUrl); } /** - * Add a copy of a [content type][contentType] from a [site][site] to a [list][list]. + * Add a copy of a content type from a site to a list. * @param body The request body * @return a {@link ContentType} * @throws ODataError When receiving a 4XX or 5XX status code @@ -47,7 +47,7 @@ public ContentType post(@jakarta.annotation.Nonnull final AddCopyPostRequestBody return post(body, null); } /** - * Add a copy of a [content type][contentType] from a [site][site] to a [list][list]. + * Add a copy of a content type from a site to a list. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ContentType} @@ -63,7 +63,7 @@ public ContentType post(@jakarta.annotation.Nonnull final AddCopyPostRequestBody return this.requestAdapter.send(requestInfo, errorMapping, ContentType::createFromDiscriminatorValue); } /** - * Add a copy of a [content type][contentType] from a [site][site] to a [list][list]. + * Add a copy of a content type from a site to a list. * @param body The request body * @return a {@link RequestInformation} */ @@ -72,7 +72,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add a copy of a [content type][contentType] from a [site][site] to a [list][list]. + * Add a copy of a content type from a site to a list. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/getcompatiblehubcontenttypes/GetCompatibleHubContentTypesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/getcompatiblehubcontenttypes/GetCompatibleHubContentTypesRequestBuilder.java index d42d3b312a0..bd9dc0e94ed 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/getcompatiblehubcontenttypes/GetCompatibleHubContentTypesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/getcompatiblehubcontenttypes/GetCompatibleHubContentTypesRequestBuilder.java @@ -36,19 +36,21 @@ public GetCompatibleHubContentTypesRequestBuilder(@jakarta.annotation.Nonnull fi super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/contentTypes/getCompatibleHubContentTypes(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function getCompatibleHubContentTypes + * Get a list of compatible content types from the content type hub that can be added to a target site or a list. This method is part of the content type publishing changes to optimize the syncing of published content types to sites and lists, effectively switching from a 'push everywhere' to 'pull as needed' approach. The method allows users to pull content types directly from the content type hub to a site or list. For more information, see contentType: addCopyFromContentTypeHub and the blog post Syntex Product Updates August 2021. * @return a {@link GetCompatibleHubContentTypesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetCompatibleHubContentTypesGetResponse get() { return get(null); } /** - * Invoke function getCompatibleHubContentTypes + * Get a list of compatible content types from the content type hub that can be added to a target site or a list. This method is part of the content type publishing changes to optimize the syncing of published content types to sites and lists, effectively switching from a 'push everywhere' to 'pull as needed' approach. The method allows users to pull content types directly from the content type hub to a site or list. For more information, see contentType: addCopyFromContentTypeHub and the blog post Syntex Product Updates August 2021. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GetCompatibleHubContentTypesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetCompatibleHubContentTypesGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public GetCompatibleHubContentTypesGetResponse get(@jakarta.annotation.Nullable return this.requestAdapter.send(requestInfo, errorMapping, GetCompatibleHubContentTypesGetResponse::createFromDiscriminatorValue); } /** - * Invoke function getCompatibleHubContentTypes + * Get a list of compatible content types from the content type hub that can be added to a target site or a list. This method is part of the content type publishing changes to optimize the syncing of published content types to sites and lists, effectively switching from a 'push everywhere' to 'pull as needed' approach. The method allows users to pull content types directly from the content type hub to a site or list. For more information, see contentType: addCopyFromContentTypeHub and the blog post Syntex Product Updates August 2021. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getCompatibleHubContentTypes + * Get a list of compatible content types from the content type hub that can be added to a target site or a list. This method is part of the content type publishing changes to optimize the syncing of published content types to sites and lists, effectively switching from a 'push everywhere' to 'pull as needed' approach. The method allows users to pull content types directly from the content type hub to a site or list. For more information, see contentType: addCopyFromContentTypeHub and the blog post Syntex Product Updates August 2021. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public GetCompatibleHubContentTypesRequestBuilder withUrl(@jakarta.annotation.No return new GetCompatibleHubContentTypesRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function getCompatibleHubContentTypes + * Get a list of compatible content types from the content type hub that can be added to a target site or a list. This method is part of the content type publishing changes to optimize the syncing of published content types to sites and lists, effectively switching from a 'push everywhere' to 'pull as needed' approach. The method allows users to pull content types directly from the content type hub to a site or list. For more information, see contentType: addCopyFromContentTypeHub and the blog post Syntex Product Updates August 2021. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/item/ContentTypeItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/item/ContentTypeItemRequestBuilder.java index 2e0b7d3c2ff..b593f118816 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/item/ContentTypeItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/item/ContentTypeItemRequestBuilder.java @@ -127,18 +127,16 @@ public ContentTypeItemRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/contentTypes/{contentType%2Did}{?%24expand,%24select}", rawUrl); } /** - * Remove a [content type][contentType] from a [list][] or a [site][]. + * Delete navigation property contentTypes for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove a [content type][contentType] from a [list][] or a [site][]. + * Delete navigation property contentTypes for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -147,21 +145,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the metadata for a [content type][contentType] in a [site][] or a [list][]. + * The collection of content types defined for this site. * @return a {@link ContentType} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentType get() { return get(null); } /** - * Retrieve the metadata for a [content type][contentType] in a [site][] or a [list][]. + * The collection of content types defined for this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ContentType} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentType get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -171,23 +167,21 @@ public ContentType get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.send(requestInfo, errorMapping, ContentType::createFromDiscriminatorValue); } /** - * Update a [content type][contentType]. + * Update the navigation property contentTypes in groups * @param body The request body * @return a {@link ContentType} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentType patch(@jakarta.annotation.Nonnull final ContentType body) { return patch(body, null); } /** - * Update a [content type][contentType]. + * Update the navigation property contentTypes in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ContentType} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentType patch(@jakarta.annotation.Nonnull final ContentType body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -198,7 +192,7 @@ public ContentType patch(@jakarta.annotation.Nonnull final ContentType body, @ja return this.requestAdapter.send(requestInfo, errorMapping, ContentType::createFromDiscriminatorValue); } /** - * Remove a [content type][contentType] from a [list][] or a [site][]. + * Delete navigation property contentTypes for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -206,7 +200,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove a [content type][contentType] from a [list][] or a [site][]. + * Delete navigation property contentTypes for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -218,7 +212,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the metadata for a [content type][contentType] in a [site][] or a [list][]. + * The collection of content types defined for this site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -226,7 +220,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the metadata for a [content type][contentType] in a [site][] or a [list][]. + * The collection of content types defined for this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -238,7 +232,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update a [content type][contentType]. + * Update the navigation property contentTypes in groups * @param body The request body * @return a {@link RequestInformation} */ @@ -247,7 +241,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update a [content type][contentType]. + * Update the navigation property contentTypes in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -278,7 +272,7 @@ public ContentTypeItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final S public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the metadata for a [content type][contentType] in a [site][] or a [list][]. + * The collection of content types defined for this site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/item/associatewithhubsites/AssociateWithHubSitesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/item/associatewithhubsites/AssociateWithHubSitesRequestBuilder.java index 2435de081ce..5ca42c9a1bb 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/item/associatewithhubsites/AssociateWithHubSitesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/item/associatewithhubsites/AssociateWithHubSitesRequestBuilder.java @@ -35,7 +35,7 @@ public AssociateWithHubSitesRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/contentTypes/{contentType%2Did}/associateWithHubSites", rawUrl); } /** - * Associate a published [content type][contentType] present in a content type hub with a list of hub sites. + * Associate a published content type present in a content type hub with a list of hub sites. * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code * @see Find more info here @@ -44,7 +44,7 @@ public void post(@jakarta.annotation.Nonnull final AssociateWithHubSitesPostRequ post(body, null); } /** - * Associate a published [content type][contentType] present in a content type hub with a list of hub sites. + * Associate a published content type present in a content type hub with a list of hub sites. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code @@ -58,7 +58,7 @@ public void post(@jakarta.annotation.Nonnull final AssociateWithHubSitesPostRequ this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Associate a published [content type][contentType] present in a content type hub with a list of hub sites. + * Associate a published content type present in a content type hub with a list of hub sites. * @param body The request body * @return a {@link RequestInformation} */ @@ -67,7 +67,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Associate a published [content type][contentType] present in a content type hub with a list of hub sites. + * Associate a published content type present in a content type hub with a list of hub sites. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/item/columns/ColumnsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/item/columns/ColumnsRequestBuilder.java index 08defaccc1d..5e6ecfaa7dc 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/item/columns/ColumnsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/item/columns/ColumnsRequestBuilder.java @@ -60,21 +60,19 @@ public ColumnsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/contentTypes/{contentType%2Did}/columns{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [content type][contentType]. + * The collection of column definitions for this content type. * @return a {@link ColumnDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinitionCollectionResponse get() { return get(null); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [content type][contentType]. + * The collection of column definitions for this content type. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinitionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public ColumnDefinitionCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinitionCollectionResponse::createFromDiscriminatorValue); } /** - * Add a column to a [content type][contentType] in a site, or a list with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for groups * @param body The request body * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition body) { return post(body, null); } /** - * Add a column to a [content type][contentType] in a site, or a list with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinition::createFromDiscriminatorValue); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [content type][contentType]. + * The collection of column definitions for this content type. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [content type][contentType]. + * The collection of column definitions for this content type. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add a column to a [content type][contentType] in a site, or a list with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add a column to a [content type][contentType] in a site, or a list with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ColumnsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new ColumnsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [content type][contentType]. + * The collection of column definitions for this content type. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/item/columns/item/ColumnDefinitionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/item/columns/item/ColumnDefinitionItemRequestBuilder.java index 63a08ae17ec..39800e70821 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/item/columns/item/ColumnDefinitionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/item/columns/item/ColumnDefinitionItemRequestBuilder.java @@ -46,18 +46,16 @@ public ColumnDefinitionItemRequestBuilder(@jakarta.annotation.Nonnull final Stri super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/contentTypes/{contentType%2Did}/columns/{columnDefinition%2Did}{?%24expand,%24select}", rawUrl); } /** - * Remove a [column][columndefinition] from a [site][], a [list][], or a [content type][contentType]. + * Delete navigation property columns for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove a [column][columndefinition] from a [site][], a [list][], or a [content type][contentType]. + * Delete navigation property columns for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the metadata for a [site][], a [list][], or a [contentType][] [column][columnDefinition]. + * The collection of column definitions for this content type. * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition get() { return get(null); } /** - * Retrieve the metadata for a [site][], a [list][], or a [contentType][] [column][columnDefinition]. + * The collection of column definitions for this content type. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public ColumnDefinition get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinition::createFromDiscriminatorValue); } /** - * Update a [site][], a [list][], or a [content type][contentType] [column][columnDefinition]. + * Update the navigation property columns in groups * @param body The request body * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition patch(@jakarta.annotation.Nonnull final ColumnDefinition body) { return patch(body, null); } /** - * Update a [site][], a [list][], or a [content type][contentType] [column][columnDefinition]. + * Update the navigation property columns in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition patch(@jakarta.annotation.Nonnull final ColumnDefinition body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public ColumnDefinition patch(@jakarta.annotation.Nonnull final ColumnDefinition return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinition::createFromDiscriminatorValue); } /** - * Remove a [column][columndefinition] from a [site][], a [list][], or a [content type][contentType]. + * Delete navigation property columns for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove a [column][columndefinition] from a [site][], a [list][], or a [content type][contentType]. + * Delete navigation property columns for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the metadata for a [site][], a [list][], or a [contentType][] [column][columnDefinition]. + * The collection of column definitions for this content type. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the metadata for a [site][], a [list][], or a [contentType][] [column][columnDefinition]. + * The collection of column definitions for this content type. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update a [site][], a [list][], or a [content type][contentType] [column][columnDefinition]. + * Update the navigation property columns in groups * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update a [site][], a [list][], or a [content type][contentType] [column][columnDefinition]. + * Update the navigation property columns in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public ColumnDefinitionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fi public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the metadata for a [site][], a [list][], or a [contentType][] [column][columnDefinition]. + * The collection of column definitions for this content type. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/item/copytodefaultcontentlocation/CopyToDefaultContentLocationRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/item/copytodefaultcontentlocation/CopyToDefaultContentLocationRequestBuilder.java index 981694a11b5..ec9ab04b75e 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/item/copytodefaultcontentlocation/CopyToDefaultContentLocationRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/item/copytodefaultcontentlocation/CopyToDefaultContentLocationRequestBuilder.java @@ -35,7 +35,7 @@ public CopyToDefaultContentLocationRequestBuilder(@jakarta.annotation.Nonnull fi super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/contentTypes/{contentType%2Did}/copyToDefaultContentLocation", rawUrl); } /** - * Copy a file to a default content location in a [content type][contentType]. The file can then be added as a default file or template via a POST operation. + * Copy a file to a default content location in a content type. The file can then be added as a default file or template via a POST operation. * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code * @see Find more info here @@ -44,7 +44,7 @@ public void post(@jakarta.annotation.Nonnull final CopyToDefaultContentLocationP post(body, null); } /** - * Copy a file to a default content location in a [content type][contentType]. The file can then be added as a default file or template via a POST operation. + * Copy a file to a default content location in a content type. The file can then be added as a default file or template via a POST operation. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code @@ -58,7 +58,7 @@ public void post(@jakarta.annotation.Nonnull final CopyToDefaultContentLocationP this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Copy a file to a default content location in a [content type][contentType]. The file can then be added as a default file or template via a POST operation. + * Copy a file to a default content location in a content type. The file can then be added as a default file or template via a POST operation. * @param body The request body * @return a {@link RequestInformation} */ @@ -67,7 +67,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Copy a file to a default content location in a [content type][contentType]. The file can then be added as a default file or template via a POST operation. + * Copy a file to a default content location in a content type. The file can then be added as a default file or template via a POST operation. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/item/ispublished/IsPublishedRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/item/ispublished/IsPublishedRequestBuilder.java index 70eb6f73006..f0adb8dca46 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/item/ispublished/IsPublishedRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/item/ispublished/IsPublishedRequestBuilder.java @@ -35,19 +35,21 @@ public IsPublishedRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/contentTypes/{contentType%2Did}/isPublished()", rawUrl); } /** - * Invoke function isPublished + * Check the publishing status of a contentType in a content type hub site. * @return a {@link IsPublishedGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public IsPublishedGetResponse get() { return get(null); } /** - * Invoke function isPublished + * Check the publishing status of a contentType in a content type hub site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link IsPublishedGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public IsPublishedGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -57,7 +59,7 @@ public IsPublishedGetResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, IsPublishedGetResponse::createFromDiscriminatorValue); } /** - * Invoke function isPublished + * Check the publishing status of a contentType in a content type hub site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -65,7 +67,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function isPublished + * Check the publishing status of a contentType in a content type hub site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/item/publish/PublishRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/item/publish/PublishRequestBuilder.java index 4bb9e6ebd42..d01bb595ee7 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/item/publish/PublishRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/item/publish/PublishRequestBuilder.java @@ -35,7 +35,7 @@ public PublishRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/contentTypes/{contentType%2Did}/publish", rawUrl); } /** - * Publishes a [contentType][] present in the content type hub site. + * Publishes a contentType present in the content type hub site. * @throws ODataError When receiving a 4XX or 5XX status code * @see Find more info here */ @@ -43,7 +43,7 @@ public void post() { post(null); } /** - * Publishes a [contentType][] present in the content type hub site. + * Publishes a contentType present in the content type hub site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code * @see Find more info here @@ -55,7 +55,7 @@ public void post(@jakarta.annotation.Nullable final java.util.function.Consumer< this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Publishes a [contentType][] present in the content type hub site. + * Publishes a contentType present in the content type hub site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -63,7 +63,7 @@ public RequestInformation toPostRequestInformation() { return toPostRequestInformation(null); } /** - * Publishes a [contentType][] present in the content type hub site. + * Publishes a contentType present in the content type hub site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/item/unpublish/UnpublishRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/item/unpublish/UnpublishRequestBuilder.java index 16c1470003b..fdf12332919 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/item/unpublish/UnpublishRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/contenttypes/item/unpublish/UnpublishRequestBuilder.java @@ -35,7 +35,7 @@ public UnpublishRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/contentTypes/{contentType%2Did}/unpublish", rawUrl); } /** - * Unpublish a [contentType][] from a content type hub site. + * Unpublish a contentType from a content type hub site. * @throws ODataError When receiving a 4XX or 5XX status code * @see Find more info here */ @@ -43,7 +43,7 @@ public void post() { post(null); } /** - * Unpublish a [contentType][] from a content type hub site. + * Unpublish a contentType from a content type hub site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code * @see Find more info here @@ -55,7 +55,7 @@ public void post(@jakarta.annotation.Nullable final java.util.function.Consumer< this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Unpublish a [contentType][] from a content type hub site. + * Unpublish a contentType from a content type hub site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -63,7 +63,7 @@ public RequestInformation toPostRequestInformation() { return toPostRequestInformation(null); } /** - * Unpublish a [contentType][] from a content type hub site. + * Unpublish a contentType from a content type hub site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getapplicablecontenttypesforlistwithlistid/GetApplicableContentTypesForListWithListIdRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getapplicablecontenttypesforlistwithlistid/GetApplicableContentTypesForListWithListIdRequestBuilder.java index 7b4cc8a19d0..afe910d3bb0 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getapplicablecontenttypesforlistwithlistid/GetApplicableContentTypesForListWithListIdRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getapplicablecontenttypesforlistwithlistid/GetApplicableContentTypesForListWithListIdRequestBuilder.java @@ -38,19 +38,21 @@ public GetApplicableContentTypesForListWithListIdRequestBuilder(@jakarta.annotat super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/getApplicableContentTypesForList(listId='{listId}'){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function getApplicableContentTypesForList + * Get site contentTypes that can be added to a list. * @return a {@link GetApplicableContentTypesForListWithListIdGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetApplicableContentTypesForListWithListIdGetResponse get() { return get(null); } /** - * Invoke function getApplicableContentTypesForList + * Get site contentTypes that can be added to a list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GetApplicableContentTypesForListWithListIdGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetApplicableContentTypesForListWithListIdGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public GetApplicableContentTypesForListWithListIdGetResponse get(@jakarta.annota return this.requestAdapter.send(requestInfo, errorMapping, GetApplicableContentTypesForListWithListIdGetResponse::createFromDiscriminatorValue); } /** - * Invoke function getApplicableContentTypesForList + * Get site contentTypes that can be added to a list. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getApplicableContentTypesForList + * Get site contentTypes that can be added to a list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -90,7 +92,7 @@ public GetApplicableContentTypesForListWithListIdRequestBuilder withUrl(@jakarta return new GetApplicableContentTypesForListWithListIdRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function getApplicableContentTypesForList + * Get site contentTypes that can be added to a list. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/columns/ColumnsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/columns/ColumnsRequestBuilder.java index 772f1992203..75ea9c4b710 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/columns/ColumnsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/columns/ColumnsRequestBuilder.java @@ -38,21 +38,19 @@ public ColumnsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/getByPath(path='{path}')/columns{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [site][site]. + * The collection of column definitions reusable across lists under this site. * @return a {@link ColumnDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinitionCollectionResponse get() { return get(null); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [site][site]. + * The collection of column definitions reusable across lists under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinitionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -62,23 +60,21 @@ public ColumnDefinitionCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinitionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a column for a [site][site] with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for groups * @param body The request body * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition body) { return post(body, null); } /** - * Create a column for a [site][site] with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -89,7 +85,7 @@ public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinition::createFromDiscriminatorValue); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [site][site]. + * The collection of column definitions reusable across lists under this site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -97,7 +93,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [site][site]. + * The collection of column definitions reusable across lists under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -109,7 +105,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a column for a [site][site] with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -118,7 +114,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a column for a [site][site] with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -143,7 +139,7 @@ public ColumnsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new ColumnsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [site][site]. + * The collection of column definitions reusable across lists under this site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/contenttypes/ContentTypesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/contenttypes/ContentTypesRequestBuilder.java index daeaf829c06..c94604aed23 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/contenttypes/ContentTypesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/contenttypes/ContentTypesRequestBuilder.java @@ -38,21 +38,19 @@ public ContentTypesRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/getByPath(path='{path}')/contentTypes{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the collection of [contentType][contentType] resources in a [site][]. + * The collection of content types defined for this site. * @return a {@link ContentTypeCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentTypeCollectionResponse get() { return get(null); } /** - * Get the collection of [contentType][contentType] resources in a [site][]. + * The collection of content types defined for this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ContentTypeCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentTypeCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -62,23 +60,21 @@ public ContentTypeCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, ContentTypeCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new [contentType][] in a [site][]. + * Create new navigation property to contentTypes for groups * @param body The request body * @return a {@link ContentType} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentType post(@jakarta.annotation.Nonnull final ContentType body) { return post(body, null); } /** - * Create a new [contentType][] in a [site][]. + * Create new navigation property to contentTypes for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ContentType} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentType post(@jakarta.annotation.Nonnull final ContentType body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -89,7 +85,7 @@ public ContentType post(@jakarta.annotation.Nonnull final ContentType body, @jak return this.requestAdapter.send(requestInfo, errorMapping, ContentType::createFromDiscriminatorValue); } /** - * Get the collection of [contentType][contentType] resources in a [site][]. + * The collection of content types defined for this site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -97,7 +93,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the collection of [contentType][contentType] resources in a [site][]. + * The collection of content types defined for this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -109,7 +105,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new [contentType][] in a [site][]. + * Create new navigation property to contentTypes for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -118,7 +114,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new [contentType][] in a [site][]. + * Create new navigation property to contentTypes for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -143,7 +139,7 @@ public ContentTypesRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri return new ContentTypesRequestBuilder(rawUrl, requestAdapter); } /** - * Get the collection of [contentType][contentType] resources in a [site][]. + * The collection of content types defined for this site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/getapplicablecontenttypesforlistwithlistid/GetApplicableContentTypesForListWithListIdRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/getapplicablecontenttypesforlistwithlistid/GetApplicableContentTypesForListWithListIdRequestBuilder.java index 1793d4143e8..f9bd5c43289 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/getapplicablecontenttypesforlistwithlistid/GetApplicableContentTypesForListWithListIdRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/getapplicablecontenttypesforlistwithlistid/GetApplicableContentTypesForListWithListIdRequestBuilder.java @@ -38,19 +38,21 @@ public GetApplicableContentTypesForListWithListIdRequestBuilder(@jakarta.annotat super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/getByPath(path='{path}')/getApplicableContentTypesForList(listId='{listId}'){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function getApplicableContentTypesForList + * Get site contentTypes that can be added to a list. * @return a {@link GetApplicableContentTypesForListWithListIdGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetApplicableContentTypesForListWithListIdGetResponse get() { return get(null); } /** - * Invoke function getApplicableContentTypesForList + * Get site contentTypes that can be added to a list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GetApplicableContentTypesForListWithListIdGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetApplicableContentTypesForListWithListIdGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public GetApplicableContentTypesForListWithListIdGetResponse get(@jakarta.annota return this.requestAdapter.send(requestInfo, errorMapping, GetApplicableContentTypesForListWithListIdGetResponse::createFromDiscriminatorValue); } /** - * Invoke function getApplicableContentTypesForList + * Get site contentTypes that can be added to a list. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getApplicableContentTypesForList + * Get site contentTypes that can be added to a list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -90,7 +92,7 @@ public GetApplicableContentTypesForListWithListIdRequestBuilder withUrl(@jakarta return new GetApplicableContentTypesForListWithListIdRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function getApplicableContentTypesForList + * Get site contentTypes that can be added to a list. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/getbypathwithpath1/columns/ColumnsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/getbypathwithpath1/columns/ColumnsRequestBuilder.java index bcc287eb3ae..44f3c9d5e6e 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/getbypathwithpath1/columns/ColumnsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/getbypathwithpath1/columns/ColumnsRequestBuilder.java @@ -38,21 +38,19 @@ public ColumnsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/getByPath(path='{path}')/getByPath(path='{path1}')/columns{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [site][site]. + * The collection of column definitions reusable across lists under this site. * @return a {@link ColumnDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinitionCollectionResponse get() { return get(null); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [site][site]. + * The collection of column definitions reusable across lists under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinitionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -62,23 +60,21 @@ public ColumnDefinitionCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinitionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a column for a [site][site] with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for groups * @param body The request body * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition body) { return post(body, null); } /** - * Create a column for a [site][site] with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -89,7 +85,7 @@ public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinition::createFromDiscriminatorValue); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [site][site]. + * The collection of column definitions reusable across lists under this site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -97,7 +93,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [site][site]. + * The collection of column definitions reusable across lists under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -109,7 +105,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a column for a [site][site] with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -118,7 +114,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a column for a [site][site] with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -143,7 +139,7 @@ public ColumnsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new ColumnsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [site][site]. + * The collection of column definitions reusable across lists under this site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/getbypathwithpath1/contenttypes/ContentTypesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/getbypathwithpath1/contenttypes/ContentTypesRequestBuilder.java index 1c17464f52b..060172fc02c 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/getbypathwithpath1/contenttypes/ContentTypesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/getbypathwithpath1/contenttypes/ContentTypesRequestBuilder.java @@ -38,21 +38,19 @@ public ContentTypesRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/getByPath(path='{path}')/getByPath(path='{path1}')/contentTypes{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the collection of [contentType][contentType] resources in a [site][]. + * The collection of content types defined for this site. * @return a {@link ContentTypeCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentTypeCollectionResponse get() { return get(null); } /** - * Get the collection of [contentType][contentType] resources in a [site][]. + * The collection of content types defined for this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ContentTypeCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentTypeCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -62,23 +60,21 @@ public ContentTypeCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, ContentTypeCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new [contentType][] in a [site][]. + * Create new navigation property to contentTypes for groups * @param body The request body * @return a {@link ContentType} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentType post(@jakarta.annotation.Nonnull final ContentType body) { return post(body, null); } /** - * Create a new [contentType][] in a [site][]. + * Create new navigation property to contentTypes for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ContentType} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentType post(@jakarta.annotation.Nonnull final ContentType body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -89,7 +85,7 @@ public ContentType post(@jakarta.annotation.Nonnull final ContentType body, @jak return this.requestAdapter.send(requestInfo, errorMapping, ContentType::createFromDiscriminatorValue); } /** - * Get the collection of [contentType][contentType] resources in a [site][]. + * The collection of content types defined for this site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -97,7 +93,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the collection of [contentType][contentType] resources in a [site][]. + * The collection of content types defined for this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -109,7 +105,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new [contentType][] in a [site][]. + * Create new navigation property to contentTypes for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -118,7 +114,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new [contentType][] in a [site][]. + * Create new navigation property to contentTypes for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -143,7 +139,7 @@ public ContentTypesRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri return new ContentTypesRequestBuilder(rawUrl, requestAdapter); } /** - * Get the collection of [contentType][contentType] resources in a [site][]. + * The collection of content types defined for this site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/getbypathwithpath1/lists/ListsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/getbypathwithpath1/lists/ListsRequestBuilder.java index e38628f0a82..5eecf901dab 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/getbypathwithpath1/lists/ListsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/getbypathwithpath1/lists/ListsRequestBuilder.java @@ -38,21 +38,19 @@ public ListsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/getByPath(path='{path}')/getByPath(path='{path1}')/lists{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the collection of [lists][] for a [site][]. Lists with the [system][] facet are hidden by default.To list them, include system in your $select statement. + * The collection of lists under this site. * @return a {@link ListCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListCollectionResponse get() { return get(null); } /** - * Get the collection of [lists][] for a [site][]. Lists with the [system][] facet are hidden by default.To list them, include system in your $select statement. + * The collection of lists under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ListCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -62,23 +60,21 @@ public ListCollectionResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, ListCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new [list][] in a [site][]. + * Create new navigation property to lists for groups * @param body The request body * @return a {@link List} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public List post(@jakarta.annotation.Nonnull final List body) { return post(body, null); } /** - * Create a new [list][] in a [site][]. + * Create new navigation property to lists for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link List} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public List post(@jakarta.annotation.Nonnull final List body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -89,7 +85,7 @@ public List post(@jakarta.annotation.Nonnull final List body, @jakarta.annotatio return this.requestAdapter.send(requestInfo, errorMapping, List::createFromDiscriminatorValue); } /** - * Get the collection of [lists][] for a [site][]. Lists with the [system][] facet are hidden by default.To list them, include system in your $select statement. + * The collection of lists under this site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -97,7 +93,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the collection of [lists][] for a [site][]. Lists with the [system][] facet are hidden by default.To list them, include system in your $select statement. + * The collection of lists under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -109,7 +105,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new [list][] in a [site][]. + * Create new navigation property to lists for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -118,7 +114,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new [list][] in a [site][]. + * Create new navigation property to lists for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -143,7 +139,7 @@ public ListsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new ListsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the collection of [lists][] for a [site][]. Lists with the [system][] facet are hidden by default.To list them, include system in your $select statement. + * The collection of lists under this site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/getbypathwithpath1/operations/OperationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/getbypathwithpath1/operations/OperationsRequestBuilder.java index 22d9fcfbef7..581409547d7 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/getbypathwithpath1/operations/OperationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/getbypathwithpath1/operations/OperationsRequestBuilder.java @@ -38,21 +38,19 @@ public OperationsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/getByPath(path='{path}')/getByPath(path='{path1}')/operations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of rich long-running operations associated with a site. + * The collection of long-running operations on the site. * @return a {@link RichLongRunningOperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RichLongRunningOperationCollectionResponse get() { return get(null); } /** - * Get a list of rich long-running operations associated with a site. + * The collection of long-running operations on the site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RichLongRunningOperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RichLongRunningOperationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -87,7 +85,7 @@ public RichLongRunningOperation post(@jakarta.annotation.Nonnull final RichLongR return this.requestAdapter.send(requestInfo, errorMapping, RichLongRunningOperation::createFromDiscriminatorValue); } /** - * Get a list of rich long-running operations associated with a site. + * The collection of long-running operations on the site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -95,7 +93,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of rich long-running operations associated with a site. + * The collection of long-running operations on the site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -141,7 +139,7 @@ public OperationsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new OperationsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of rich long-running operations associated with a site. + * The collection of long-running operations on the site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/getbypathwithpath1/pages/PagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/getbypathwithpath1/pages/PagesRequestBuilder.java index cf6a0250bc0..5614b48a79a 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/getbypathwithpath1/pages/PagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/getbypathwithpath1/pages/PagesRequestBuilder.java @@ -38,21 +38,19 @@ public PagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/getByPath(path='{path}')/getByPath(path='{path1}')/pages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the collection of [baseSitePage][] objects from the site pages [list][] in a [site][]. All pages in the site are returned (with pagination). Sort alphabetically by name in ascending order. The following table lists the available subtypes. + * The collection of pages in the baseSitePages list in this site. * @return a {@link BaseSitePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BaseSitePageCollectionResponse get() { return get(null); } /** - * Get the collection of [baseSitePage][] objects from the site pages [list][] in a [site][]. All pages in the site are returned (with pagination). Sort alphabetically by name in ascending order. The following table lists the available subtypes. + * The collection of pages in the baseSitePages list in this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BaseSitePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BaseSitePageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -62,23 +60,21 @@ public BaseSitePageCollectionResponse get(@jakarta.annotation.Nullable final jav return this.requestAdapter.send(requestInfo, errorMapping, BaseSitePageCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new [sitePage][] in the site pages [list][] in a [site][]. + * Create new navigation property to pages for groups * @param body The request body * @return a {@link BaseSitePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BaseSitePage post(@jakarta.annotation.Nonnull final BaseSitePage body) { return post(body, null); } /** - * Create a new [sitePage][] in the site pages [list][] in a [site][]. + * Create new navigation property to pages for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BaseSitePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BaseSitePage post(@jakarta.annotation.Nonnull final BaseSitePage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -89,7 +85,7 @@ public BaseSitePage post(@jakarta.annotation.Nonnull final BaseSitePage body, @j return this.requestAdapter.send(requestInfo, errorMapping, BaseSitePage::createFromDiscriminatorValue); } /** - * Get the collection of [baseSitePage][] objects from the site pages [list][] in a [site][]. All pages in the site are returned (with pagination). Sort alphabetically by name in ascending order. The following table lists the available subtypes. + * The collection of pages in the baseSitePages list in this site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -97,7 +93,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the collection of [baseSitePage][] objects from the site pages [list][] in a [site][]. All pages in the site are returned (with pagination). Sort alphabetically by name in ascending order. The following table lists the available subtypes. + * The collection of pages in the baseSitePages list in this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -109,7 +105,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new [sitePage][] in the site pages [list][] in a [site][]. + * Create new navigation property to pages for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -118,7 +114,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new [sitePage][] in the site pages [list][] in a [site][]. + * Create new navigation property to pages for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -143,7 +139,7 @@ public PagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new PagesRequestBuilder(rawUrl, requestAdapter); } /** - * Get the collection of [baseSitePage][] objects from the site pages [list][] in a [site][]. All pages in the site are returned (with pagination). Sort alphabetically by name in ascending order. The following table lists the available subtypes. + * The collection of pages in the baseSitePages list in this site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/getbypathwithpath1/permissions/PermissionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/getbypathwithpath1/permissions/PermissionsRequestBuilder.java index ef208cf75eb..6a31bec9a94 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/getbypathwithpath1/permissions/PermissionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/getbypathwithpath1/permissions/PermissionsRequestBuilder.java @@ -38,21 +38,19 @@ public PermissionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/getByPath(path='{path}')/getByPath(path='{path1}')/permissions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the permission resources from the permissions navigation property on a site. + * The permissions associated with the site. Nullable. * @return a {@link PermissionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PermissionCollectionResponse get() { return get(null); } /** - * Get the permission resources from the permissions navigation property on a site. + * The permissions associated with the site. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PermissionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PermissionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -62,23 +60,21 @@ public PermissionCollectionResponse get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, PermissionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new permission object on a site. + * Create new navigation property to permissions for groups * @param body The request body * @return a {@link Permission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Permission post(@jakarta.annotation.Nonnull final Permission body) { return post(body, null); } /** - * Create a new permission object on a site. + * Create new navigation property to permissions for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Permission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Permission post(@jakarta.annotation.Nonnull final Permission body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -89,7 +85,7 @@ public Permission post(@jakarta.annotation.Nonnull final Permission body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, Permission::createFromDiscriminatorValue); } /** - * Get the permission resources from the permissions navigation property on a site. + * The permissions associated with the site. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -97,7 +93,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the permission resources from the permissions navigation property on a site. + * The permissions associated with the site. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -109,7 +105,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new permission object on a site. + * Create new navigation property to permissions for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -118,7 +114,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new permission object on a site. + * Create new navigation property to permissions for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -143,7 +139,7 @@ public PermissionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new PermissionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the permission resources from the permissions navigation property on a site. + * The permissions associated with the site. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/getbypathwithpath1/sites/SitesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/getbypathwithpath1/sites/SitesRequestBuilder.java index 4a2c4cd2c4d..96e6944cfc3 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/getbypathwithpath1/sites/SitesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/getbypathwithpath1/sites/SitesRequestBuilder.java @@ -37,21 +37,19 @@ public SitesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/getByPath(path='{path}')/getByPath(path='{path1}')/sites{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a collection of subsites defined for a [site][]. + * The collection of the sub-sites under this site. * @return a {@link SiteCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SiteCollectionResponse get() { return get(null); } /** - * Get a collection of subsites defined for a [site][]. + * The collection of the sub-sites under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SiteCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SiteCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -61,7 +59,7 @@ public SiteCollectionResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, SiteCollectionResponse::createFromDiscriminatorValue); } /** - * Get a collection of subsites defined for a [site][]. + * The collection of the sub-sites under this site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -69,7 +67,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a collection of subsites defined for a [site][]. + * The collection of the sub-sites under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -91,7 +89,7 @@ public SitesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new SitesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a collection of subsites defined for a [site][]. + * The collection of the sub-sites under this site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/getbypathwithpath1/termstore/TermStoreRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/getbypathwithpath1/termstore/TermStoreRequestBuilder.java index 6f5c032408c..84f09077c79 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/getbypathwithpath1/termstore/TermStoreRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/getbypathwithpath1/termstore/TermStoreRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a store object. + * The default termStore under this site. * @return a {@link Store} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Store get() { return get(null); } /** - * Read the properties and relationships of a store object. + * The default termStore under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Store} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Store get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public Store get(@jakarta.annotation.Nullable final java.util.function.Consumer< return this.requestAdapter.send(requestInfo, errorMapping, Store::createFromDiscriminatorValue); } /** - * Update the properties of a store object. + * Update the navigation property termStore in groups * @param body The request body * @return a {@link Store} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Store patch(@jakarta.annotation.Nonnull final Store body) { return patch(body, null); } /** - * Update the properties of a store object. + * Update the navigation property termStore in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Store} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Store patch(@jakarta.annotation.Nonnull final Store body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a store object. + * The default termStore under this site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a store object. + * The default termStore under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a store object. + * Update the navigation property termStore in groups * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a store object. + * Update the navigation property termStore in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public TermStoreRequestBuilder withUrl(@jakarta.annotation.Nonnull final String public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a store object. + * The default termStore under this site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/lists/ListsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/lists/ListsRequestBuilder.java index 5ede2bd654c..f194b854bfa 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/lists/ListsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/lists/ListsRequestBuilder.java @@ -38,21 +38,19 @@ public ListsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/getByPath(path='{path}')/lists{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the collection of [lists][] for a [site][]. Lists with the [system][] facet are hidden by default.To list them, include system in your $select statement. + * The collection of lists under this site. * @return a {@link ListCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListCollectionResponse get() { return get(null); } /** - * Get the collection of [lists][] for a [site][]. Lists with the [system][] facet are hidden by default.To list them, include system in your $select statement. + * The collection of lists under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ListCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -62,23 +60,21 @@ public ListCollectionResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, ListCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new [list][] in a [site][]. + * Create new navigation property to lists for groups * @param body The request body * @return a {@link List} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public List post(@jakarta.annotation.Nonnull final List body) { return post(body, null); } /** - * Create a new [list][] in a [site][]. + * Create new navigation property to lists for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link List} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public List post(@jakarta.annotation.Nonnull final List body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -89,7 +85,7 @@ public List post(@jakarta.annotation.Nonnull final List body, @jakarta.annotatio return this.requestAdapter.send(requestInfo, errorMapping, List::createFromDiscriminatorValue); } /** - * Get the collection of [lists][] for a [site][]. Lists with the [system][] facet are hidden by default.To list them, include system in your $select statement. + * The collection of lists under this site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -97,7 +93,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the collection of [lists][] for a [site][]. Lists with the [system][] facet are hidden by default.To list them, include system in your $select statement. + * The collection of lists under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -109,7 +105,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new [list][] in a [site][]. + * Create new navigation property to lists for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -118,7 +114,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new [list][] in a [site][]. + * Create new navigation property to lists for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -143,7 +139,7 @@ public ListsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new ListsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the collection of [lists][] for a [site][]. Lists with the [system][] facet are hidden by default.To list them, include system in your $select statement. + * The collection of lists under this site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/operations/OperationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/operations/OperationsRequestBuilder.java index 1b5cbafd9c0..a127f708cdb 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/operations/OperationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/operations/OperationsRequestBuilder.java @@ -38,21 +38,19 @@ public OperationsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/getByPath(path='{path}')/operations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of rich long-running operations associated with a site. + * The collection of long-running operations on the site. * @return a {@link RichLongRunningOperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RichLongRunningOperationCollectionResponse get() { return get(null); } /** - * Get a list of rich long-running operations associated with a site. + * The collection of long-running operations on the site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RichLongRunningOperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RichLongRunningOperationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -87,7 +85,7 @@ public RichLongRunningOperation post(@jakarta.annotation.Nonnull final RichLongR return this.requestAdapter.send(requestInfo, errorMapping, RichLongRunningOperation::createFromDiscriminatorValue); } /** - * Get a list of rich long-running operations associated with a site. + * The collection of long-running operations on the site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -95,7 +93,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of rich long-running operations associated with a site. + * The collection of long-running operations on the site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -141,7 +139,7 @@ public OperationsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new OperationsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of rich long-running operations associated with a site. + * The collection of long-running operations on the site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/pages/PagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/pages/PagesRequestBuilder.java index 4706f0d8c9e..21f74a97c74 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/pages/PagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/pages/PagesRequestBuilder.java @@ -38,21 +38,19 @@ public PagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/getByPath(path='{path}')/pages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the collection of [baseSitePage][] objects from the site pages [list][] in a [site][]. All pages in the site are returned (with pagination). Sort alphabetically by name in ascending order. The following table lists the available subtypes. + * The collection of pages in the baseSitePages list in this site. * @return a {@link BaseSitePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BaseSitePageCollectionResponse get() { return get(null); } /** - * Get the collection of [baseSitePage][] objects from the site pages [list][] in a [site][]. All pages in the site are returned (with pagination). Sort alphabetically by name in ascending order. The following table lists the available subtypes. + * The collection of pages in the baseSitePages list in this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BaseSitePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BaseSitePageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -62,23 +60,21 @@ public BaseSitePageCollectionResponse get(@jakarta.annotation.Nullable final jav return this.requestAdapter.send(requestInfo, errorMapping, BaseSitePageCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new [sitePage][] in the site pages [list][] in a [site][]. + * Create new navigation property to pages for groups * @param body The request body * @return a {@link BaseSitePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BaseSitePage post(@jakarta.annotation.Nonnull final BaseSitePage body) { return post(body, null); } /** - * Create a new [sitePage][] in the site pages [list][] in a [site][]. + * Create new navigation property to pages for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BaseSitePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BaseSitePage post(@jakarta.annotation.Nonnull final BaseSitePage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -89,7 +85,7 @@ public BaseSitePage post(@jakarta.annotation.Nonnull final BaseSitePage body, @j return this.requestAdapter.send(requestInfo, errorMapping, BaseSitePage::createFromDiscriminatorValue); } /** - * Get the collection of [baseSitePage][] objects from the site pages [list][] in a [site][]. All pages in the site are returned (with pagination). Sort alphabetically by name in ascending order. The following table lists the available subtypes. + * The collection of pages in the baseSitePages list in this site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -97,7 +93,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the collection of [baseSitePage][] objects from the site pages [list][] in a [site][]. All pages in the site are returned (with pagination). Sort alphabetically by name in ascending order. The following table lists the available subtypes. + * The collection of pages in the baseSitePages list in this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -109,7 +105,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new [sitePage][] in the site pages [list][] in a [site][]. + * Create new navigation property to pages for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -118,7 +114,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new [sitePage][] in the site pages [list][] in a [site][]. + * Create new navigation property to pages for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -143,7 +139,7 @@ public PagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new PagesRequestBuilder(rawUrl, requestAdapter); } /** - * Get the collection of [baseSitePage][] objects from the site pages [list][] in a [site][]. All pages in the site are returned (with pagination). Sort alphabetically by name in ascending order. The following table lists the available subtypes. + * The collection of pages in the baseSitePages list in this site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/permissions/PermissionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/permissions/PermissionsRequestBuilder.java index 8bfa58fa6b6..56477b1d3a2 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/permissions/PermissionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/permissions/PermissionsRequestBuilder.java @@ -38,21 +38,19 @@ public PermissionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/getByPath(path='{path}')/permissions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the permission resources from the permissions navigation property on a site. + * The permissions associated with the site. Nullable. * @return a {@link PermissionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PermissionCollectionResponse get() { return get(null); } /** - * Get the permission resources from the permissions navigation property on a site. + * The permissions associated with the site. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PermissionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PermissionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -62,23 +60,21 @@ public PermissionCollectionResponse get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, PermissionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new permission object on a site. + * Create new navigation property to permissions for groups * @param body The request body * @return a {@link Permission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Permission post(@jakarta.annotation.Nonnull final Permission body) { return post(body, null); } /** - * Create a new permission object on a site. + * Create new navigation property to permissions for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Permission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Permission post(@jakarta.annotation.Nonnull final Permission body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -89,7 +85,7 @@ public Permission post(@jakarta.annotation.Nonnull final Permission body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, Permission::createFromDiscriminatorValue); } /** - * Get the permission resources from the permissions navigation property on a site. + * The permissions associated with the site. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -97,7 +93,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the permission resources from the permissions navigation property on a site. + * The permissions associated with the site. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -109,7 +105,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new permission object on a site. + * Create new navigation property to permissions for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -118,7 +114,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new permission object on a site. + * Create new navigation property to permissions for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -143,7 +139,7 @@ public PermissionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new PermissionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the permission resources from the permissions navigation property on a site. + * The permissions associated with the site. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/sites/SitesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/sites/SitesRequestBuilder.java index cdc1bdbe013..f3ddacbe194 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/sites/SitesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/sites/SitesRequestBuilder.java @@ -37,21 +37,19 @@ public SitesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/getByPath(path='{path}')/sites{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a collection of subsites defined for a [site][]. + * The collection of the sub-sites under this site. * @return a {@link SiteCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SiteCollectionResponse get() { return get(null); } /** - * Get a collection of subsites defined for a [site][]. + * The collection of the sub-sites under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SiteCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SiteCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -61,7 +59,7 @@ public SiteCollectionResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, SiteCollectionResponse::createFromDiscriminatorValue); } /** - * Get a collection of subsites defined for a [site][]. + * The collection of the sub-sites under this site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -69,7 +67,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a collection of subsites defined for a [site][]. + * The collection of the sub-sites under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -91,7 +89,7 @@ public SitesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new SitesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a collection of subsites defined for a [site][]. + * The collection of the sub-sites under this site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/termstore/TermStoreRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/termstore/TermStoreRequestBuilder.java index 1e33ae33323..671d7705037 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/termstore/TermStoreRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/getbypathwithpath/termstore/TermStoreRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a store object. + * The default termStore under this site. * @return a {@link Store} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Store get() { return get(null); } /** - * Read the properties and relationships of a store object. + * The default termStore under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Store} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Store get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public Store get(@jakarta.annotation.Nullable final java.util.function.Consumer< return this.requestAdapter.send(requestInfo, errorMapping, Store::createFromDiscriminatorValue); } /** - * Update the properties of a store object. + * Update the navigation property termStore in groups * @param body The request body * @return a {@link Store} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Store patch(@jakarta.annotation.Nonnull final Store body) { return patch(body, null); } /** - * Update the properties of a store object. + * Update the navigation property termStore in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Store} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Store patch(@jakarta.annotation.Nonnull final Store body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a store object. + * The default termStore under this site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a store object. + * The default termStore under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a store object. + * Update the navigation property termStore in groups * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a store object. + * Update the navigation property termStore in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public TermStoreRequestBuilder withUrl(@jakarta.annotation.Nonnull final String public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a store object. + * The default termStore under this site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/ListsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/ListsRequestBuilder.java index 2522cbbed04..55dd2474b21 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/ListsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/ListsRequestBuilder.java @@ -60,21 +60,19 @@ public ListsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/lists{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the collection of [lists][] for a [site][]. Lists with the [system][] facet are hidden by default.To list them, include system in your $select statement. + * The collection of lists under this site. * @return a {@link ListCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListCollectionResponse get() { return get(null); } /** - * Get the collection of [lists][] for a [site][]. Lists with the [system][] facet are hidden by default.To list them, include system in your $select statement. + * The collection of lists under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ListCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public ListCollectionResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, ListCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new [list][] in a [site][]. + * Create new navigation property to lists for groups * @param body The request body * @return a {@link List} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public List post(@jakarta.annotation.Nonnull final List body) { return post(body, null); } /** - * Create a new [list][] in a [site][]. + * Create new navigation property to lists for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link List} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public List post(@jakarta.annotation.Nonnull final List body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public List post(@jakarta.annotation.Nonnull final List body, @jakarta.annotatio return this.requestAdapter.send(requestInfo, errorMapping, List::createFromDiscriminatorValue); } /** - * Get the collection of [lists][] for a [site][]. Lists with the [system][] facet are hidden by default.To list them, include system in your $select statement. + * The collection of lists under this site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the collection of [lists][] for a [site][]. Lists with the [system][] facet are hidden by default.To list them, include system in your $select statement. + * The collection of lists under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new [list][] in a [site][]. + * Create new navigation property to lists for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new [list][] in a [site][]. + * Create new navigation property to lists for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ListsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new ListsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the collection of [lists][] for a [site][]. Lists with the [system][] facet are hidden by default.To list them, include system in your $select statement. + * The collection of lists under this site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/ListItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/ListItemRequestBuilder.java index bfff70c72c8..568efb83fdd 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/ListItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/ListItemRequestBuilder.java @@ -127,21 +127,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Returns the metadata for a [list][]. + * The collection of lists under this site. * @return a {@link List} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public List get() { return get(null); } /** - * Returns the metadata for a [list][]. + * The collection of lists under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link List} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public List get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -196,7 +194,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Returns the metadata for a [list][]. + * The collection of lists under this site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -204,7 +202,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Returns the metadata for a [list][]. + * The collection of lists under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -256,7 +254,7 @@ public ListItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Returns the metadata for a [list][]. + * The collection of lists under this site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/columns/ColumnsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/columns/ColumnsRequestBuilder.java index a272f17f576..86320173d99 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/columns/ColumnsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/columns/ColumnsRequestBuilder.java @@ -60,21 +60,19 @@ public ColumnsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/lists/{list%2Did}/columns{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [list][list]. + * The collection of field definitions for this list. * @return a {@link ColumnDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinitionCollectionResponse get() { return get(null); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [list][list]. + * The collection of field definitions for this list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinitionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public ColumnDefinitionCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinitionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a column for a [list][list] with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for groups * @param body The request body * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition body) { return post(body, null); } /** - * Create a column for a [list][list] with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinition::createFromDiscriminatorValue); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [list][list]. + * The collection of field definitions for this list. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [list][list]. + * The collection of field definitions for this list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a column for a [list][list] with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a column for a [list][list] with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ColumnsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new ColumnsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [list][list]. + * The collection of field definitions for this list. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/contenttypes/ContentTypesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/contenttypes/ContentTypesRequestBuilder.java index b6016e34411..cc5fc9a78b1 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/contenttypes/ContentTypesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/contenttypes/ContentTypesRequestBuilder.java @@ -87,21 +87,19 @@ public ContentTypesRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/lists/{list%2Did}/contentTypes{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the collection of [contentType][contentType] resources in a [list][]. + * The collection of content types present in this list. * @return a {@link ContentTypeCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentTypeCollectionResponse get() { return get(null); } /** - * Get the collection of [contentType][contentType] resources in a [list][]. + * The collection of content types present in this list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ContentTypeCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentTypeCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -136,7 +134,7 @@ public ContentType post(@jakarta.annotation.Nonnull final ContentType body, @jak return this.requestAdapter.send(requestInfo, errorMapping, ContentType::createFromDiscriminatorValue); } /** - * Get the collection of [contentType][contentType] resources in a [list][]. + * The collection of content types present in this list. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -144,7 +142,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the collection of [contentType][contentType] resources in a [list][]. + * The collection of content types present in this list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -190,7 +188,7 @@ public ContentTypesRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri return new ContentTypesRequestBuilder(rawUrl, requestAdapter); } /** - * Get the collection of [contentType][contentType] resources in a [list][]. + * The collection of content types present in this list. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/contenttypes/addcopy/AddCopyRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/contenttypes/addcopy/AddCopyRequestBuilder.java index c3af711bae6..11570060fea 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/contenttypes/addcopy/AddCopyRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/contenttypes/addcopy/AddCopyRequestBuilder.java @@ -36,7 +36,7 @@ public AddCopyRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/lists/{list%2Did}/contentTypes/addCopy", rawUrl); } /** - * Add a copy of a [content type][contentType] from a [site][site] to a [list][list]. + * Add a copy of a content type from a site to a list. * @param body The request body * @return a {@link ContentType} * @throws ODataError When receiving a 4XX or 5XX status code @@ -47,7 +47,7 @@ public ContentType post(@jakarta.annotation.Nonnull final AddCopyPostRequestBody return post(body, null); } /** - * Add a copy of a [content type][contentType] from a [site][site] to a [list][list]. + * Add a copy of a content type from a site to a list. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ContentType} @@ -63,7 +63,7 @@ public ContentType post(@jakarta.annotation.Nonnull final AddCopyPostRequestBody return this.requestAdapter.send(requestInfo, errorMapping, ContentType::createFromDiscriminatorValue); } /** - * Add a copy of a [content type][contentType] from a [site][site] to a [list][list]. + * Add a copy of a content type from a site to a list. * @param body The request body * @return a {@link RequestInformation} */ @@ -72,7 +72,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add a copy of a [content type][contentType] from a [site][site] to a [list][list]. + * Add a copy of a content type from a site to a list. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/contenttypes/getcompatiblehubcontenttypes/GetCompatibleHubContentTypesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/contenttypes/getcompatiblehubcontenttypes/GetCompatibleHubContentTypesRequestBuilder.java index 51c6c4afa97..5a91daba7c9 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/contenttypes/getcompatiblehubcontenttypes/GetCompatibleHubContentTypesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/contenttypes/getcompatiblehubcontenttypes/GetCompatibleHubContentTypesRequestBuilder.java @@ -36,19 +36,21 @@ public GetCompatibleHubContentTypesRequestBuilder(@jakarta.annotation.Nonnull fi super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/lists/{list%2Did}/contentTypes/getCompatibleHubContentTypes(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function getCompatibleHubContentTypes + * Get a list of compatible content types from the content type hub that can be added to a target site or a list. This method is part of the content type publishing changes to optimize the syncing of published content types to sites and lists, effectively switching from a 'push everywhere' to 'pull as needed' approach. The method allows users to pull content types directly from the content type hub to a site or list. For more information, see contentType: addCopyFromContentTypeHub and the blog post Syntex Product Updates August 2021. * @return a {@link GetCompatibleHubContentTypesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetCompatibleHubContentTypesGetResponse get() { return get(null); } /** - * Invoke function getCompatibleHubContentTypes + * Get a list of compatible content types from the content type hub that can be added to a target site or a list. This method is part of the content type publishing changes to optimize the syncing of published content types to sites and lists, effectively switching from a 'push everywhere' to 'pull as needed' approach. The method allows users to pull content types directly from the content type hub to a site or list. For more information, see contentType: addCopyFromContentTypeHub and the blog post Syntex Product Updates August 2021. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GetCompatibleHubContentTypesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetCompatibleHubContentTypesGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public GetCompatibleHubContentTypesGetResponse get(@jakarta.annotation.Nullable return this.requestAdapter.send(requestInfo, errorMapping, GetCompatibleHubContentTypesGetResponse::createFromDiscriminatorValue); } /** - * Invoke function getCompatibleHubContentTypes + * Get a list of compatible content types from the content type hub that can be added to a target site or a list. This method is part of the content type publishing changes to optimize the syncing of published content types to sites and lists, effectively switching from a 'push everywhere' to 'pull as needed' approach. The method allows users to pull content types directly from the content type hub to a site or list. For more information, see contentType: addCopyFromContentTypeHub and the blog post Syntex Product Updates August 2021. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getCompatibleHubContentTypes + * Get a list of compatible content types from the content type hub that can be added to a target site or a list. This method is part of the content type publishing changes to optimize the syncing of published content types to sites and lists, effectively switching from a 'push everywhere' to 'pull as needed' approach. The method allows users to pull content types directly from the content type hub to a site or list. For more information, see contentType: addCopyFromContentTypeHub and the blog post Syntex Product Updates August 2021. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public GetCompatibleHubContentTypesRequestBuilder withUrl(@jakarta.annotation.No return new GetCompatibleHubContentTypesRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function getCompatibleHubContentTypes + * Get a list of compatible content types from the content type hub that can be added to a target site or a list. This method is part of the content type publishing changes to optimize the syncing of published content types to sites and lists, effectively switching from a 'push everywhere' to 'pull as needed' approach. The method allows users to pull content types directly from the content type hub to a site or list. For more information, see contentType: addCopyFromContentTypeHub and the blog post Syntex Product Updates August 2021. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/contenttypes/item/associatewithhubsites/AssociateWithHubSitesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/contenttypes/item/associatewithhubsites/AssociateWithHubSitesRequestBuilder.java index 8f488ff9a66..8cff1308776 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/contenttypes/item/associatewithhubsites/AssociateWithHubSitesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/contenttypes/item/associatewithhubsites/AssociateWithHubSitesRequestBuilder.java @@ -35,7 +35,7 @@ public AssociateWithHubSitesRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/lists/{list%2Did}/contentTypes/{contentType%2Did}/associateWithHubSites", rawUrl); } /** - * Associate a published [content type][contentType] present in a content type hub with a list of hub sites. + * Associate a published content type present in a content type hub with a list of hub sites. * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code * @see Find more info here @@ -44,7 +44,7 @@ public void post(@jakarta.annotation.Nonnull final AssociateWithHubSitesPostRequ post(body, null); } /** - * Associate a published [content type][contentType] present in a content type hub with a list of hub sites. + * Associate a published content type present in a content type hub with a list of hub sites. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code @@ -58,7 +58,7 @@ public void post(@jakarta.annotation.Nonnull final AssociateWithHubSitesPostRequ this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Associate a published [content type][contentType] present in a content type hub with a list of hub sites. + * Associate a published content type present in a content type hub with a list of hub sites. * @param body The request body * @return a {@link RequestInformation} */ @@ -67,7 +67,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Associate a published [content type][contentType] present in a content type hub with a list of hub sites. + * Associate a published content type present in a content type hub with a list of hub sites. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/contenttypes/item/columns/ColumnsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/contenttypes/item/columns/ColumnsRequestBuilder.java index 61813826ca6..c5193f4d7ea 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/contenttypes/item/columns/ColumnsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/contenttypes/item/columns/ColumnsRequestBuilder.java @@ -60,21 +60,19 @@ public ColumnsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/lists/{list%2Did}/contentTypes/{contentType%2Did}/columns{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [content type][contentType]. + * The collection of column definitions for this content type. * @return a {@link ColumnDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinitionCollectionResponse get() { return get(null); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [content type][contentType]. + * The collection of column definitions for this content type. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinitionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public ColumnDefinitionCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinitionCollectionResponse::createFromDiscriminatorValue); } /** - * Add a column to a [content type][contentType] in a site, or a list with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for groups * @param body The request body * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition body) { return post(body, null); } /** - * Add a column to a [content type][contentType] in a site, or a list with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinition::createFromDiscriminatorValue); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [content type][contentType]. + * The collection of column definitions for this content type. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [content type][contentType]. + * The collection of column definitions for this content type. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add a column to a [content type][contentType] in a site, or a list with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add a column to a [content type][contentType] in a site, or a list with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ColumnsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new ColumnsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [content type][contentType]. + * The collection of column definitions for this content type. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/contenttypes/item/columns/item/ColumnDefinitionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/contenttypes/item/columns/item/ColumnDefinitionItemRequestBuilder.java index 2c549415a7c..6c981504ef3 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/contenttypes/item/columns/item/ColumnDefinitionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/contenttypes/item/columns/item/ColumnDefinitionItemRequestBuilder.java @@ -46,18 +46,16 @@ public ColumnDefinitionItemRequestBuilder(@jakarta.annotation.Nonnull final Stri super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/lists/{list%2Did}/contentTypes/{contentType%2Did}/columns/{columnDefinition%2Did}{?%24expand,%24select}", rawUrl); } /** - * Remove a [column][columndefinition] from a [site][], a [list][], or a [content type][contentType]. + * Delete navigation property columns for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove a [column][columndefinition] from a [site][], a [list][], or a [content type][contentType]. + * Delete navigation property columns for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the metadata for a [site][], a [list][], or a [contentType][] [column][columnDefinition]. + * The collection of column definitions for this content type. * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition get() { return get(null); } /** - * Retrieve the metadata for a [site][], a [list][], or a [contentType][] [column][columnDefinition]. + * The collection of column definitions for this content type. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public ColumnDefinition get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinition::createFromDiscriminatorValue); } /** - * Update a [site][], a [list][], or a [content type][contentType] [column][columnDefinition]. + * Update the navigation property columns in groups * @param body The request body * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition patch(@jakarta.annotation.Nonnull final ColumnDefinition body) { return patch(body, null); } /** - * Update a [site][], a [list][], or a [content type][contentType] [column][columnDefinition]. + * Update the navigation property columns in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition patch(@jakarta.annotation.Nonnull final ColumnDefinition body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public ColumnDefinition patch(@jakarta.annotation.Nonnull final ColumnDefinition return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinition::createFromDiscriminatorValue); } /** - * Remove a [column][columndefinition] from a [site][], a [list][], or a [content type][contentType]. + * Delete navigation property columns for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove a [column][columndefinition] from a [site][], a [list][], or a [content type][contentType]. + * Delete navigation property columns for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the metadata for a [site][], a [list][], or a [contentType][] [column][columnDefinition]. + * The collection of column definitions for this content type. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the metadata for a [site][], a [list][], or a [contentType][] [column][columnDefinition]. + * The collection of column definitions for this content type. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update a [site][], a [list][], or a [content type][contentType] [column][columnDefinition]. + * Update the navigation property columns in groups * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update a [site][], a [list][], or a [content type][contentType] [column][columnDefinition]. + * Update the navigation property columns in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public ColumnDefinitionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fi public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the metadata for a [site][], a [list][], or a [contentType][] [column][columnDefinition]. + * The collection of column definitions for this content type. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/contenttypes/item/copytodefaultcontentlocation/CopyToDefaultContentLocationRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/contenttypes/item/copytodefaultcontentlocation/CopyToDefaultContentLocationRequestBuilder.java index c223ddb4e77..7042ddf1bed 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/contenttypes/item/copytodefaultcontentlocation/CopyToDefaultContentLocationRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/contenttypes/item/copytodefaultcontentlocation/CopyToDefaultContentLocationRequestBuilder.java @@ -35,7 +35,7 @@ public CopyToDefaultContentLocationRequestBuilder(@jakarta.annotation.Nonnull fi super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/lists/{list%2Did}/contentTypes/{contentType%2Did}/copyToDefaultContentLocation", rawUrl); } /** - * Copy a file to a default content location in a [content type][contentType]. The file can then be added as a default file or template via a POST operation. + * Copy a file to a default content location in a content type. The file can then be added as a default file or template via a POST operation. * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code * @see Find more info here @@ -44,7 +44,7 @@ public void post(@jakarta.annotation.Nonnull final CopyToDefaultContentLocationP post(body, null); } /** - * Copy a file to a default content location in a [content type][contentType]. The file can then be added as a default file or template via a POST operation. + * Copy a file to a default content location in a content type. The file can then be added as a default file or template via a POST operation. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code @@ -58,7 +58,7 @@ public void post(@jakarta.annotation.Nonnull final CopyToDefaultContentLocationP this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Copy a file to a default content location in a [content type][contentType]. The file can then be added as a default file or template via a POST operation. + * Copy a file to a default content location in a content type. The file can then be added as a default file or template via a POST operation. * @param body The request body * @return a {@link RequestInformation} */ @@ -67,7 +67,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Copy a file to a default content location in a [content type][contentType]. The file can then be added as a default file or template via a POST operation. + * Copy a file to a default content location in a content type. The file can then be added as a default file or template via a POST operation. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/contenttypes/item/ispublished/IsPublishedRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/contenttypes/item/ispublished/IsPublishedRequestBuilder.java index 3ce8bece223..916ac2cd3dc 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/contenttypes/item/ispublished/IsPublishedRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/contenttypes/item/ispublished/IsPublishedRequestBuilder.java @@ -35,19 +35,21 @@ public IsPublishedRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/lists/{list%2Did}/contentTypes/{contentType%2Did}/isPublished()", rawUrl); } /** - * Invoke function isPublished + * Check the publishing status of a contentType in a content type hub site. * @return a {@link IsPublishedGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public IsPublishedGetResponse get() { return get(null); } /** - * Invoke function isPublished + * Check the publishing status of a contentType in a content type hub site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link IsPublishedGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public IsPublishedGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -57,7 +59,7 @@ public IsPublishedGetResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, IsPublishedGetResponse::createFromDiscriminatorValue); } /** - * Invoke function isPublished + * Check the publishing status of a contentType in a content type hub site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -65,7 +67,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function isPublished + * Check the publishing status of a contentType in a content type hub site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/contenttypes/item/publish/PublishRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/contenttypes/item/publish/PublishRequestBuilder.java index e6ef0152bb7..2dce5241674 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/contenttypes/item/publish/PublishRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/contenttypes/item/publish/PublishRequestBuilder.java @@ -35,7 +35,7 @@ public PublishRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/lists/{list%2Did}/contentTypes/{contentType%2Did}/publish", rawUrl); } /** - * Publishes a [contentType][] present in the content type hub site. + * Publishes a contentType present in the content type hub site. * @throws ODataError When receiving a 4XX or 5XX status code * @see Find more info here */ @@ -43,7 +43,7 @@ public void post() { post(null); } /** - * Publishes a [contentType][] present in the content type hub site. + * Publishes a contentType present in the content type hub site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code * @see Find more info here @@ -55,7 +55,7 @@ public void post(@jakarta.annotation.Nullable final java.util.function.Consumer< this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Publishes a [contentType][] present in the content type hub site. + * Publishes a contentType present in the content type hub site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -63,7 +63,7 @@ public RequestInformation toPostRequestInformation() { return toPostRequestInformation(null); } /** - * Publishes a [contentType][] present in the content type hub site. + * Publishes a contentType present in the content type hub site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/contenttypes/item/unpublish/UnpublishRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/contenttypes/item/unpublish/UnpublishRequestBuilder.java index 2c80e76837c..58e3b45a70f 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/contenttypes/item/unpublish/UnpublishRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/contenttypes/item/unpublish/UnpublishRequestBuilder.java @@ -35,7 +35,7 @@ public UnpublishRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/lists/{list%2Did}/contentTypes/{contentType%2Did}/unpublish", rawUrl); } /** - * Unpublish a [contentType][] from a content type hub site. + * Unpublish a contentType from a content type hub site. * @throws ODataError When receiving a 4XX or 5XX status code * @see Find more info here */ @@ -43,7 +43,7 @@ public void post() { post(null); } /** - * Unpublish a [contentType][] from a content type hub site. + * Unpublish a contentType from a content type hub site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code * @see Find more info here @@ -55,7 +55,7 @@ public void post(@jakarta.annotation.Nullable final java.util.function.Consumer< this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Unpublish a [contentType][] from a content type hub site. + * Unpublish a contentType from a content type hub site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -63,7 +63,7 @@ public RequestInformation toPostRequestInformation() { return toPostRequestInformation(null); } /** - * Unpublish a [contentType][] from a content type hub site. + * Unpublish a contentType from a content type hub site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/items/ItemsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/items/ItemsRequestBuilder.java index 18a25c05097..a4953819292 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/items/ItemsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/items/ItemsRequestBuilder.java @@ -71,21 +71,19 @@ public DeltaWithTokenRequestBuilder deltaWithToken(@jakarta.annotation.Nonnull f return new DeltaWithTokenRequestBuilder(pathParameters, requestAdapter, token); } /** - * Get the collection of [items][item] in a [list][]. + * All items contained in the list. * @return a {@link ListItemCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListItemCollectionResponse get() { return get(null); } /** - * Get the collection of [items][item] in a [list][]. + * All items contained in the list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ListItemCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListItemCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -95,23 +93,21 @@ public ListItemCollectionResponse get(@jakarta.annotation.Nullable final java.ut return this.requestAdapter.send(requestInfo, errorMapping, ListItemCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new [listItem][] in a [list][]. + * Create new navigation property to items for groups * @param body The request body * @return a {@link ListItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListItem post(@jakarta.annotation.Nonnull final ListItem body) { return post(body, null); } /** - * Create a new [listItem][] in a [list][]. + * Create new navigation property to items for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ListItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListItem post(@jakarta.annotation.Nonnull final ListItem body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -122,7 +118,7 @@ public ListItem post(@jakarta.annotation.Nonnull final ListItem body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, ListItem::createFromDiscriminatorValue); } /** - * Get the collection of [items][item] in a [list][]. + * All items contained in the list. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -130,7 +126,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the collection of [items][item] in a [list][]. + * All items contained in the list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -142,7 +138,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new [listItem][] in a [list][]. + * Create new navigation property to items for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -151,7 +147,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new [listItem][] in a [list][]. + * Create new navigation property to items for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -176,7 +172,7 @@ public ItemsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new ItemsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the collection of [items][item] in a [list][]. + * All items contained in the list. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/items/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/items/delta/DeltaRequestBuilder.java index 7f3650c6f12..561d73983f9 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/items/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/items/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/lists/{list%2Did}/items/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Get newly created, updated, or deleted list items without having to perform a full read of the entire items collection. Your app begins by calling delta without any parameters.The service starts enumerating the hierarchy of the list, returning pages of items, and either an @odata.nextLink or an @odata.deltaLink.Your app should continue calling with the @odata.nextLink until you see an @odata.deltaLink returned. After you received all thechanges, you can apply them to your local state.To check for changes in thefuture, call delta again with the @odata.deltaLink from the previous response. The delta feed shows the latest state for each item, not each change. If an item was renamed twice, it only shows up once, with its latest name.The same item might appear more than once in a delta feed, for various reasons. You should use the last occurrence you see. Items with this property should be removed from your local state. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Get newly created, updated, or deleted list items without having to perform a full read of the entire items collection. Your app begins by calling delta without any parameters.The service starts enumerating the hierarchy of the list, returning pages of items, and either an @odata.nextLink or an @odata.deltaLink.Your app should continue calling with the @odata.nextLink until you see an @odata.deltaLink returned. After you received all thechanges, you can apply them to your local state.To check for changes in thefuture, call delta again with the @odata.deltaLink from the previous response. The delta feed shows the latest state for each item, not each change. If an item was renamed twice, it only shows up once, with its latest name.The same item might appear more than once in a delta feed, for various reasons. You should use the last occurrence you see. Items with this property should be removed from your local state. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Get newly created, updated, or deleted list items without having to perform a full read of the entire items collection. Your app begins by calling delta without any parameters.The service starts enumerating the hierarchy of the list, returning pages of items, and either an @odata.nextLink or an @odata.deltaLink.Your app should continue calling with the @odata.nextLink until you see an @odata.deltaLink returned. After you received all thechanges, you can apply them to your local state.To check for changes in thefuture, call delta again with the @odata.deltaLink from the previous response. The delta feed shows the latest state for each item, not each change. If an item was renamed twice, it only shows up once, with its latest name.The same item might appear more than once in a delta feed, for various reasons. You should use the last occurrence you see. Items with this property should be removed from your local state. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Get newly created, updated, or deleted list items without having to perform a full read of the entire items collection. Your app begins by calling delta without any parameters.The service starts enumerating the hierarchy of the list, returning pages of items, and either an @odata.nextLink or an @odata.deltaLink.Your app should continue calling with the @odata.nextLink until you see an @odata.deltaLink returned. After you received all thechanges, you can apply them to your local state.To check for changes in thefuture, call delta again with the @odata.deltaLink from the previous response. The delta feed shows the latest state for each item, not each change. If an item was renamed twice, it only shows up once, with its latest name.The same item might appear more than once in a delta feed, for various reasons. You should use the last occurrence you see. Items with this property should be removed from your local state. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Get newly created, updated, or deleted list items without having to perform a full read of the entire items collection. Your app begins by calling delta without any parameters.The service starts enumerating the hierarchy of the list, returning pages of items, and either an @odata.nextLink or an @odata.deltaLink.Your app should continue calling with the @odata.nextLink until you see an @odata.deltaLink returned. After you received all thechanges, you can apply them to your local state.To check for changes in thefuture, call delta again with the @odata.deltaLink from the previous response. The delta feed shows the latest state for each item, not each change. If an item was renamed twice, it only shows up once, with its latest name.The same item might appear more than once in a delta feed, for various reasons. You should use the last occurrence you see. Items with this property should be removed from your local state. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/items/item/ListItemItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/items/item/ListItemItemRequestBuilder.java index 3cabbafdcda..9f1e6c21588 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/items/item/ListItemItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/items/item/ListItemItemRequestBuilder.java @@ -119,18 +119,16 @@ public ListItemItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/lists/{list%2Did}/items/{listItem%2Did}{?%24expand,%24select}", rawUrl); } /** - * Removes an item from a [list][]. + * Delete navigation property items for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Removes an item from a [list][]. + * Delete navigation property items for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -139,21 +137,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Returns the metadata for an [item][] in a [list][]. + * All items contained in the list. * @return a {@link ListItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListItem get() { return get(null); } /** - * Returns the metadata for an [item][] in a [list][]. + * All items contained in the list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ListItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListItem get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -202,7 +198,7 @@ public ListItem patch(@jakarta.annotation.Nonnull final ListItem body, @jakarta. return this.requestAdapter.send(requestInfo, errorMapping, ListItem::createFromDiscriminatorValue); } /** - * Removes an item from a [list][]. + * Delete navigation property items for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -210,7 +206,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Removes an item from a [list][]. + * Delete navigation property items for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -222,7 +218,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Returns the metadata for an [item][] in a [list][]. + * All items contained in the list. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -230,7 +226,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Returns the metadata for an [item][] in a [list][]. + * All items contained in the list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -282,7 +278,7 @@ public ListItemItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Returns the metadata for an [item][] in a [list][]. + * All items contained in the list. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/items/item/documentsetversions/DocumentSetVersionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/items/item/documentsetversions/DocumentSetVersionsRequestBuilder.java index 7d96fb35fa9..97265938d72 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/items/item/documentsetversions/DocumentSetVersionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/items/item/documentsetversions/DocumentSetVersionsRequestBuilder.java @@ -60,21 +60,19 @@ public DocumentSetVersionsRequestBuilder(@jakarta.annotation.Nonnull final Strin super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/lists/{list%2Did}/items/{listItem%2Did}/documentSetVersions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the versions of a document set item in a list. + * Version information for a document set version created by a user. * @return a {@link DocumentSetVersionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DocumentSetVersionCollectionResponse get() { return get(null); } /** - * Get a list of the versions of a document set item in a list. + * Version information for a document set version created by a user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DocumentSetVersionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DocumentSetVersionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public DocumentSetVersionCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, DocumentSetVersionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new version of a document set item in a list. + * Create new navigation property to documentSetVersions for groups * @param body The request body * @return a {@link DocumentSetVersion} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DocumentSetVersion post(@jakarta.annotation.Nonnull final DocumentSetVersion body) { return post(body, null); } /** - * Create a new version of a document set item in a list. + * Create new navigation property to documentSetVersions for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DocumentSetVersion} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DocumentSetVersion post(@jakarta.annotation.Nonnull final DocumentSetVersion body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public DocumentSetVersion post(@jakarta.annotation.Nonnull final DocumentSetVers return this.requestAdapter.send(requestInfo, errorMapping, DocumentSetVersion::createFromDiscriminatorValue); } /** - * Get a list of the versions of a document set item in a list. + * Version information for a document set version created by a user. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the versions of a document set item in a list. + * Version information for a document set version created by a user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new version of a document set item in a list. + * Create new navigation property to documentSetVersions for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new version of a document set item in a list. + * Create new navigation property to documentSetVersions for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public DocumentSetVersionsRequestBuilder withUrl(@jakarta.annotation.Nonnull fin return new DocumentSetVersionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the versions of a document set item in a list. + * Version information for a document set version created by a user. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/items/item/documentsetversions/item/DocumentSetVersionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/items/item/documentsetversions/item/DocumentSetVersionItemRequestBuilder.java index ef3c01c016c..0ab05feaa58 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/items/item/documentsetversions/item/DocumentSetVersionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/items/item/documentsetversions/item/DocumentSetVersionItemRequestBuilder.java @@ -55,18 +55,16 @@ public DocumentSetVersionItemRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/lists/{list%2Did}/items/{listItem%2Did}/documentSetVersions/{documentSetVersion%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a version of a document set in a list. + * Delete navigation property documentSetVersions for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a version of a document set in a list. + * Delete navigation property documentSetVersions for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -75,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a documentSetVersion object. + * Version information for a document set version created by a user. * @return a {@link DocumentSetVersion} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DocumentSetVersion get() { return get(null); } /** - * Read the properties and relationships of a documentSetVersion object. + * Version information for a document set version created by a user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DocumentSetVersion} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DocumentSetVersion get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +120,7 @@ public DocumentSetVersion patch(@jakarta.annotation.Nonnull final DocumentSetVer return this.requestAdapter.send(requestInfo, errorMapping, DocumentSetVersion::createFromDiscriminatorValue); } /** - * Delete a version of a document set in a list. + * Delete navigation property documentSetVersions for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +128,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a version of a document set in a list. + * Delete navigation property documentSetVersions for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -144,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a documentSetVersion object. + * Version information for a document set version created by a user. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -152,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a documentSetVersion object. + * Version information for a document set version created by a user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -204,7 +200,7 @@ public DocumentSetVersionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a documentSetVersion object. + * Version information for a document set version created by a user. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/items/item/driveitem/DriveItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/items/item/driveitem/DriveItemRequestBuilder.java index 1c219b14584..58893b314b9 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/items/item/driveitem/DriveItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/items/item/driveitem/DriveItemRequestBuilder.java @@ -46,7 +46,7 @@ public DriveItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/lists/{list%2Did}/items/{listItem%2Did}/driveItem{?%24expand,%24select}", rawUrl); } /** - * For document libraries, the driveItem relationship exposes the listItem as a [driveItem][] + * For document libraries, the driveItem relationship exposes the listItem as a driveItem * @return a {@link DriveItem} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -55,7 +55,7 @@ public DriveItem get() { return get(null); } /** - * For document libraries, the driveItem relationship exposes the listItem as a [driveItem][] + * For document libraries, the driveItem relationship exposes the listItem as a driveItem * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DriveItem} * @throws ODataError When receiving a 4XX or 5XX status code @@ -68,7 +68,7 @@ public DriveItem get(@jakarta.annotation.Nullable final java.util.function.Consu return this.requestAdapter.send(requestInfo, errorMapping, DriveItem::createFromDiscriminatorValue); } /** - * For document libraries, the driveItem relationship exposes the listItem as a [driveItem][] + * For document libraries, the driveItem relationship exposes the listItem as a driveItem * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -76,7 +76,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * For document libraries, the driveItem relationship exposes the listItem as a [driveItem][] + * For document libraries, the driveItem relationship exposes the listItem as a driveItem * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -98,7 +98,7 @@ public DriveItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new DriveItemRequestBuilder(rawUrl, requestAdapter); } /** - * For document libraries, the driveItem relationship exposes the listItem as a [driveItem][] + * For document libraries, the driveItem relationship exposes the listItem as a driveItem */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/items/item/fields/FieldsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/items/item/fields/FieldsRequestBuilder.java index e12a2229c64..3e10b162103 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/items/item/fields/FieldsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/items/item/fields/FieldsRequestBuilder.java @@ -77,23 +77,21 @@ public FieldValueSet get(@jakarta.annotation.Nullable final java.util.function.C return this.requestAdapter.send(requestInfo, errorMapping, FieldValueSet::createFromDiscriminatorValue); } /** - * Update the properties on a [listItem][]. + * Update the navigation property fields in groups * @param body The request body * @return a {@link FieldValueSet} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public FieldValueSet patch(@jakarta.annotation.Nonnull final FieldValueSet body) { return patch(body, null); } /** - * Update the properties on a [listItem][]. + * Update the navigation property fields in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FieldValueSet} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public FieldValueSet patch(@jakarta.annotation.Nonnull final FieldValueSet body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -144,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties on a [listItem][]. + * Update the navigation property fields in groups * @param body The request body * @return a {@link RequestInformation} */ @@ -153,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties on a [listItem][]. + * Update the navigation property fields in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/items/item/versions/VersionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/items/item/versions/VersionsRequestBuilder.java index d68226f84e8..624bc20af13 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/items/item/versions/VersionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/items/item/versions/VersionsRequestBuilder.java @@ -60,21 +60,19 @@ public VersionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/lists/{list%2Did}/items/{listItem%2Did}/versions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * SharePoint can be configured to retain the history for list items. Previous versions may be retained for a finite period of time depending on admin settings which may be unique per user or location. + * The list of previous versions of the list item. * @return a {@link ListItemVersionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListItemVersionCollectionResponse get() { return get(null); } /** - * SharePoint can be configured to retain the history for list items. Previous versions may be retained for a finite period of time depending on admin settings which may be unique per user or location. + * The list of previous versions of the list item. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ListItemVersionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListItemVersionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ListItemVersion post(@jakarta.annotation.Nonnull final ListItemVersion bo return this.requestAdapter.send(requestInfo, errorMapping, ListItemVersion::createFromDiscriminatorValue); } /** - * SharePoint can be configured to retain the history for list items. Previous versions may be retained for a finite period of time depending on admin settings which may be unique per user or location. + * The list of previous versions of the list item. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * SharePoint can be configured to retain the history for list items. Previous versions may be retained for a finite period of time depending on admin settings which may be unique per user or location. + * The list of previous versions of the list item. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public VersionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new VersionsRequestBuilder(rawUrl, requestAdapter); } /** - * SharePoint can be configured to retain the history for list items. Previous versions may be retained for a finite period of time depending on admin settings which may be unique per user or location. + * The list of previous versions of the list item. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/items/item/versions/item/ListItemVersionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/items/item/versions/item/ListItemVersionItemRequestBuilder.java index b4643b72642..d59ceb96fc8 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/items/item/versions/item/ListItemVersionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/lists/item/items/item/versions/item/ListItemVersionItemRequestBuilder.java @@ -73,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the metadata for a specific version of a ListItem. + * The list of previous versions of the list item. * @return a {@link ListItemVersion} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListItemVersion get() { return get(null); } /** - * Retrieve the metadata for a specific version of a ListItem. + * The list of previous versions of the list item. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ListItemVersion} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListItemVersion get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -142,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the metadata for a specific version of a ListItem. + * The list of previous versions of the list item. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -150,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the metadata for a specific version of a ListItem. + * The list of previous versions of the list item. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -202,7 +200,7 @@ public ListItemVersionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fin public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the metadata for a specific version of a ListItem. + * The list of previous versions of the list item. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/NotebooksRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/NotebooksRequestBuilder.java index e0626b12159..5d959c87406 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/NotebooksRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/NotebooksRequestBuilder.java @@ -70,21 +70,19 @@ public NotebooksRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/onenote/notebooks{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of notebook objects. + * The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link NotebookCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public NotebookCollectionResponse get() { return get(null); } /** - * Retrieve a list of notebook objects. + * The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link NotebookCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public NotebookCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -104,23 +102,21 @@ public GetRecentNotebooksWithIncludePersonalNotebooksRequestBuilder getRecentNot return new GetRecentNotebooksWithIncludePersonalNotebooksRequestBuilder(pathParameters, requestAdapter, includePersonalNotebooks); } /** - * Create a new OneNote notebook. + * Create new navigation property to notebooks for groups * @param body The request body * @return a {@link Notebook} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Notebook post(@jakarta.annotation.Nonnull final Notebook body) { return post(body, null); } /** - * Create a new OneNote notebook. + * Create new navigation property to notebooks for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Notebook} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Notebook post(@jakarta.annotation.Nonnull final Notebook body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -131,7 +127,7 @@ public Notebook post(@jakarta.annotation.Nonnull final Notebook body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, Notebook::createFromDiscriminatorValue); } /** - * Retrieve a list of notebook objects. + * The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -139,7 +135,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of notebook objects. + * The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -151,7 +147,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new OneNote notebook. + * Create new navigation property to notebooks for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -160,7 +156,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new OneNote notebook. + * Create new navigation property to notebooks for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -185,7 +181,7 @@ public NotebooksRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new NotebooksRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of notebook objects. + * The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/getrecentnotebookswithincludepersonalnotebooks/GetRecentNotebooksWithIncludePersonalNotebooksRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/getrecentnotebookswithincludepersonalnotebooks/GetRecentNotebooksWithIncludePersonalNotebooksRequestBuilder.java index 981733b060d..ce41a681c30 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/getrecentnotebookswithincludepersonalnotebooks/GetRecentNotebooksWithIncludePersonalNotebooksRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/getrecentnotebookswithincludepersonalnotebooks/GetRecentNotebooksWithIncludePersonalNotebooksRequestBuilder.java @@ -38,19 +38,21 @@ public GetRecentNotebooksWithIncludePersonalNotebooksRequestBuilder(@jakarta.ann super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/onenote/notebooks/getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks}){?%24count,%24filter,%24search,%24skip,%24top}", rawUrl); } /** - * Invoke function getRecentNotebooks + * Get a list of recentNotebook instances that have been accessed by the signed-in user. * @return a {@link GetRecentNotebooksWithIncludePersonalNotebooksGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetRecentNotebooksWithIncludePersonalNotebooksGetResponse get() { return get(null); } /** - * Invoke function getRecentNotebooks + * Get a list of recentNotebook instances that have been accessed by the signed-in user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GetRecentNotebooksWithIncludePersonalNotebooksGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetRecentNotebooksWithIncludePersonalNotebooksGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public GetRecentNotebooksWithIncludePersonalNotebooksGetResponse get(@jakarta.an return this.requestAdapter.send(requestInfo, errorMapping, GetRecentNotebooksWithIncludePersonalNotebooksGetResponse::createFromDiscriminatorValue); } /** - * Invoke function getRecentNotebooks + * Get a list of recentNotebook instances that have been accessed by the signed-in user. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getRecentNotebooks + * Get a list of recentNotebook instances that have been accessed by the signed-in user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -90,7 +92,7 @@ public GetRecentNotebooksWithIncludePersonalNotebooksRequestBuilder withUrl(@jak return new GetRecentNotebooksWithIncludePersonalNotebooksRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function getRecentNotebooks + * Get a list of recentNotebook instances that have been accessed by the signed-in user. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/item/NotebookItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/item/NotebookItemRequestBuilder.java index 6c2bfa0e110..947b43470bf 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/item/NotebookItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/item/NotebookItemRequestBuilder.java @@ -82,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a notebook object. + * The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link Notebook} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Notebook get() { return get(null); } /** - * Retrieve the properties and relationships of a notebook object. + * The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Notebook} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Notebook get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -151,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a notebook object. + * The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -159,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a notebook object. + * The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -211,7 +209,7 @@ public NotebookItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a notebook object. + * The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/item/sectiongroups/SectionGroupsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/item/sectiongroups/SectionGroupsRequestBuilder.java index 5a8ad9ca026..7ad6361ccc0 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/item/sectiongroups/SectionGroupsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/item/sectiongroups/SectionGroupsRequestBuilder.java @@ -60,21 +60,19 @@ public SectionGroupsRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/onenote/notebooks/{notebook%2Did}/sectionGroups{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of section groups from the specified notebook. + * The section groups in the notebook. Read-only. Nullable. * @return a {@link SectionGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroupCollectionResponse get() { return get(null); } /** - * Retrieve a list of section groups from the specified notebook. + * The section groups in the notebook. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SectionGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroupCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public SectionGroupCollectionResponse get(@jakarta.annotation.Nullable final jav return this.requestAdapter.send(requestInfo, errorMapping, SectionGroupCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new section group in the specified notebook. + * Create new navigation property to sectionGroups for groups * @param body The request body * @return a {@link SectionGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroup post(@jakarta.annotation.Nonnull final SectionGroup body) { return post(body, null); } /** - * Create a new section group in the specified notebook. + * Create new navigation property to sectionGroups for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SectionGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroup post(@jakarta.annotation.Nonnull final SectionGroup body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public SectionGroup post(@jakarta.annotation.Nonnull final SectionGroup body, @j return this.requestAdapter.send(requestInfo, errorMapping, SectionGroup::createFromDiscriminatorValue); } /** - * Retrieve a list of section groups from the specified notebook. + * The section groups in the notebook. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of section groups from the specified notebook. + * The section groups in the notebook. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new section group in the specified notebook. + * Create new navigation property to sectionGroups for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new section group in the specified notebook. + * Create new navigation property to sectionGroups for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public SectionGroupsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new SectionGroupsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of section groups from the specified notebook. + * The section groups in the notebook. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/item/sectiongroups/item/sectiongroups/SectionGroupsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/item/sectiongroups/item/sectiongroups/SectionGroupsRequestBuilder.java index dc0f98baf8a..37d7efa9ffb 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/item/sectiongroups/item/sectiongroups/SectionGroupsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/item/sectiongroups/item/sectiongroups/SectionGroupsRequestBuilder.java @@ -59,21 +59,19 @@ public SectionGroupsRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/onenote/notebooks/{notebook%2Did}/sectionGroups/{sectionGroup%2Did}/sectionGroups{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of section groups from the specified section group. + * The section groups in the section. Read-only. Nullable. * @return a {@link SectionGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroupCollectionResponse get() { return get(null); } /** - * Retrieve a list of section groups from the specified section group. + * The section groups in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SectionGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroupCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public SectionGroupCollectionResponse get(@jakarta.annotation.Nullable final jav return this.requestAdapter.send(requestInfo, errorMapping, SectionGroupCollectionResponse::createFromDiscriminatorValue); } /** - * Retrieve a list of section groups from the specified section group. + * The section groups in the section. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of section groups from the specified section group. + * The section groups in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public SectionGroupsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new SectionGroupsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of section groups from the specified section group. + * The section groups in the section. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/item/sectiongroups/item/sections/SectionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/item/sectiongroups/item/sections/SectionsRequestBuilder.java index bf25b376504..411ccd114b3 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/item/sectiongroups/item/sections/SectionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/item/sectiongroups/item/sections/SectionsRequestBuilder.java @@ -60,21 +60,19 @@ public SectionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/onenote/notebooks/{notebook%2Did}/sectionGroups/{sectionGroup%2Did}/sections{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of onenoteSection objects from the specified section group. + * The sections in the section group. Read-only. Nullable. * @return a {@link OnenoteSectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSectionCollectionResponse get() { return get(null); } /** - * Retrieve a list of onenoteSection objects from the specified section group. + * The sections in the section group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenoteSectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSectionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OnenoteSectionCollectionResponse get(@jakarta.annotation.Nullable final j return this.requestAdapter.send(requestInfo, errorMapping, OnenoteSectionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new onenoteSection in the specified section group. + * Create new navigation property to sections for groups * @param body The request body * @return a {@link OnenoteSection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSection post(@jakarta.annotation.Nonnull final OnenoteSection body) { return post(body, null); } /** - * Create a new onenoteSection in the specified section group. + * Create new navigation property to sections for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenoteSection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSection post(@jakarta.annotation.Nonnull final OnenoteSection body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OnenoteSection post(@jakarta.annotation.Nonnull final OnenoteSection body return this.requestAdapter.send(requestInfo, errorMapping, OnenoteSection::createFromDiscriminatorValue); } /** - * Retrieve a list of onenoteSection objects from the specified section group. + * The sections in the section group. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of onenoteSection objects from the specified section group. + * The sections in the section group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new onenoteSection in the specified section group. + * Create new navigation property to sections for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new onenoteSection in the specified section group. + * Create new navigation property to sections for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public SectionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new SectionsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of onenoteSection objects from the specified section group. + * The sections in the section group. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/item/sectiongroups/item/sections/item/pages/PagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/item/sectiongroups/item/sections/item/pages/PagesRequestBuilder.java index 5105ac90f03..0d63e35d9de 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/item/sectiongroups/item/sections/item/pages/PagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/item/sectiongroups/item/sections/item/pages/PagesRequestBuilder.java @@ -60,21 +60,19 @@ public PagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/onenote/notebooks/{notebook%2Did}/sectionGroups/{sectionGroup%2Did}/sections/{onenoteSection%2Did}/pages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @return a {@link OnenotePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePageCollectionResponse get() { return get(null); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OnenotePageCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, OnenotePageCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for groups * @param body The request body * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body) { return post(body, null); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body, @jak return this.requestAdapter.send(requestInfo, errorMapping, OnenotePage::createFromDiscriminatorValue); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new page in the specified section. + * Create new navigation property to pages for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public PagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new PagesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/item/sectiongroups/item/sections/item/pages/item/content/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/item/sectiongroups/item/sections/item/pages/item/content/ContentRequestBuilder.java index fc0958a84c5..1599a9a8b84 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/item/sectiongroups/item/sections/item/pages/item/content/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/item/sectiongroups/item/sections/item/pages/item/content/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * The page's HTML content. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/item/sections/SectionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/item/sections/SectionsRequestBuilder.java index 6aaa2785211..af364978e56 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/item/sections/SectionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/item/sections/SectionsRequestBuilder.java @@ -60,21 +60,19 @@ public SectionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/onenote/notebooks/{notebook%2Did}/sections{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of onenoteSection objects from the specified notebook. + * The sections in the notebook. Read-only. Nullable. * @return a {@link OnenoteSectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSectionCollectionResponse get() { return get(null); } /** - * Retrieve a list of onenoteSection objects from the specified notebook. + * The sections in the notebook. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenoteSectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSectionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OnenoteSectionCollectionResponse get(@jakarta.annotation.Nullable final j return this.requestAdapter.send(requestInfo, errorMapping, OnenoteSectionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new onenoteSection in the specified notebook. + * Create new navigation property to sections for groups * @param body The request body * @return a {@link OnenoteSection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSection post(@jakarta.annotation.Nonnull final OnenoteSection body) { return post(body, null); } /** - * Create a new onenoteSection in the specified notebook. + * Create new navigation property to sections for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenoteSection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSection post(@jakarta.annotation.Nonnull final OnenoteSection body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OnenoteSection post(@jakarta.annotation.Nonnull final OnenoteSection body return this.requestAdapter.send(requestInfo, errorMapping, OnenoteSection::createFromDiscriminatorValue); } /** - * Retrieve a list of onenoteSection objects from the specified notebook. + * The sections in the notebook. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of onenoteSection objects from the specified notebook. + * The sections in the notebook. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new onenoteSection in the specified notebook. + * Create new navigation property to sections for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new onenoteSection in the specified notebook. + * Create new navigation property to sections for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public SectionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new SectionsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of onenoteSection objects from the specified notebook. + * The sections in the notebook. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/item/sections/item/pages/PagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/item/sections/item/pages/PagesRequestBuilder.java index 40d8c4b18db..aa4178b1d15 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/item/sections/item/pages/PagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/item/sections/item/pages/PagesRequestBuilder.java @@ -60,21 +60,19 @@ public PagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/onenote/notebooks/{notebook%2Did}/sections/{onenoteSection%2Did}/pages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @return a {@link OnenotePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePageCollectionResponse get() { return get(null); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OnenotePageCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, OnenotePageCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for groups * @param body The request body * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body) { return post(body, null); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body, @jak return this.requestAdapter.send(requestInfo, errorMapping, OnenotePage::createFromDiscriminatorValue); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new page in the specified section. + * Create new navigation property to pages for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public PagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new PagesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/item/sections/item/pages/item/content/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/item/sections/item/pages/item/content/ContentRequestBuilder.java index 15a0a04e7b0..404c33623ae 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/item/sections/item/pages/item/content/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/notebooks/item/sections/item/pages/item/content/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * The page's HTML content. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/operations/OperationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/operations/OperationsRequestBuilder.java index 8f8e149c713..832840950af 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/operations/OperationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/operations/OperationsRequestBuilder.java @@ -60,7 +60,7 @@ public OperationsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/onenote/operations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the status of a long-running OneNote operation. This applies to operations that return the Operation-Location header in the response, such as CopyNotebook, CopyToNotebook, CopyToSectionGroup, and CopyToSection. You can poll the Operation-Location endpoint until the status property returns completed or failed. If the status is completed, the resourceLocation property contains the resource endpoint URI. If the status is failed, the error and @api.diagnostics properties provide error information. + * The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. * @return a {@link OnenoteOperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public OnenoteOperationCollectionResponse get() { return get(null); } /** - * Get the status of a long-running OneNote operation. This applies to operations that return the Operation-Location header in the response, such as CopyNotebook, CopyToNotebook, CopyToSectionGroup, and CopyToSection. You can poll the Operation-Location endpoint until the status property returns completed or failed. If the status is completed, the resourceLocation property contains the resource endpoint URI. If the status is failed, the error and @api.diagnostics properties provide error information. + * The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenoteOperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public OnenoteOperation post(@jakarta.annotation.Nonnull final OnenoteOperation return this.requestAdapter.send(requestInfo, errorMapping, OnenoteOperation::createFromDiscriminatorValue); } /** - * Get the status of a long-running OneNote operation. This applies to operations that return the Operation-Location header in the response, such as CopyNotebook, CopyToNotebook, CopyToSectionGroup, and CopyToSection. You can poll the Operation-Location endpoint until the status property returns completed or failed. If the status is completed, the resourceLocation property contains the resource endpoint URI. If the status is failed, the error and @api.diagnostics properties provide error information. + * The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the status of a long-running OneNote operation. This applies to operations that return the Operation-Location header in the response, such as CopyNotebook, CopyToNotebook, CopyToSectionGroup, and CopyToSection. You can poll the Operation-Location endpoint until the status property returns completed or failed. If the status is completed, the resourceLocation property contains the resource endpoint URI. If the status is failed, the error and @api.diagnostics properties provide error information. + * The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public OperationsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new OperationsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the status of a long-running OneNote operation. This applies to operations that return the Operation-Location header in the response, such as CopyNotebook, CopyToNotebook, CopyToSectionGroup, and CopyToSection. You can poll the Operation-Location endpoint until the status property returns completed or failed. If the status is completed, the resourceLocation property contains the resource endpoint URI. If the status is failed, the error and @api.diagnostics properties provide error information. + * The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/operations/item/OnenoteOperationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/operations/item/OnenoteOperationItemRequestBuilder.java index 9c0960aaca6..ea55d961603 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/operations/item/OnenoteOperationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/operations/item/OnenoteOperationItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the status of a long-running OneNote operation. This applies to operations that return the Operation-Location header in the response, such as CopyNotebook, CopyToNotebook, CopyToSectionGroup, and CopyToSection. You can poll the Operation-Location endpoint until the status property returns completed or failed. If the status is completed, the resourceLocation property contains the resource endpoint URI. If the status is failed, the error and @api.diagnostics properties provide error information. + * The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. * @return a {@link OnenoteOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteOperation get() { return get(null); } /** - * Get the status of a long-running OneNote operation. This applies to operations that return the Operation-Location header in the response, such as CopyNotebook, CopyToNotebook, CopyToSectionGroup, and CopyToSection. You can poll the Operation-Location endpoint until the status property returns completed or failed. If the status is completed, the resourceLocation property contains the resource endpoint URI. If the status is failed, the error and @api.diagnostics properties provide error information. + * The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenoteOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteOperation get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the status of a long-running OneNote operation. This applies to operations that return the Operation-Location header in the response, such as CopyNotebook, CopyToNotebook, CopyToSectionGroup, and CopyToSection. You can poll the Operation-Location endpoint until the status property returns completed or failed. If the status is completed, the resourceLocation property contains the resource endpoint URI. If the status is failed, the error and @api.diagnostics properties provide error information. + * The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the status of a long-running OneNote operation. This applies to operations that return the Operation-Location header in the response, such as CopyNotebook, CopyToNotebook, CopyToSectionGroup, and CopyToSection. You can poll the Operation-Location endpoint until the status property returns completed or failed. If the status is completed, the resourceLocation property contains the resource endpoint URI. If the status is failed, the error and @api.diagnostics properties provide error information. + * The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public OnenoteOperationItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fi public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the status of a long-running OneNote operation. This applies to operations that return the Operation-Location header in the response, such as CopyNotebook, CopyToNotebook, CopyToSectionGroup, and CopyToSection. You can poll the Operation-Location endpoint until the status property returns completed or failed. If the status is completed, the resourceLocation property contains the resource endpoint URI. If the status is failed, the error and @api.diagnostics properties provide error information. + * The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/pages/PagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/pages/PagesRequestBuilder.java index 01c4e4252ca..f40dbacd8aa 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/pages/PagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/pages/PagesRequestBuilder.java @@ -60,21 +60,19 @@ public PagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/onenote/pages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of page objects. + * The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link OnenotePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePageCollectionResponse get() { return get(null); } /** - * Retrieve a list of page objects. + * The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OnenotePageCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, OnenotePageCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new OneNote page in the default section of the default notebook. To create a page in a different section in the default notebook, you can use the sectionName query parameter. Example: ../onenote/pages?sectionName=My%20section The POST /onenote/pages operation is used only to create pages in the current user's default notebook. If you're targeting other notebooks, you can create pages in a specified section. + * Create new navigation property to pages for groups * @param body The request body * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body) { return post(body, null); } /** - * Create a new OneNote page in the default section of the default notebook. To create a page in a different section in the default notebook, you can use the sectionName query parameter. Example: ../onenote/pages?sectionName=My%20section The POST /onenote/pages operation is used only to create pages in the current user's default notebook. If you're targeting other notebooks, you can create pages in a specified section. + * Create new navigation property to pages for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body, @jak return this.requestAdapter.send(requestInfo, errorMapping, OnenotePage::createFromDiscriminatorValue); } /** - * Retrieve a list of page objects. + * The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of page objects. + * The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new OneNote page in the default section of the default notebook. To create a page in a different section in the default notebook, you can use the sectionName query parameter. Example: ../onenote/pages?sectionName=My%20section The POST /onenote/pages operation is used only to create pages in the current user's default notebook. If you're targeting other notebooks, you can create pages in a specified section. + * Create new navigation property to pages for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new OneNote page in the default section of the default notebook. To create a page in a different section in the default notebook, you can use the sectionName query parameter. Example: ../onenote/pages?sectionName=My%20section The POST /onenote/pages operation is used only to create pages in the current user's default notebook. If you're targeting other notebooks, you can create pages in a specified section. + * Create new navigation property to pages for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public PagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new PagesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of page objects. + * The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/pages/item/OnenotePageItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/pages/item/OnenotePageItemRequestBuilder.java index eefea921047..52292011762 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/pages/item/OnenotePageItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/pages/item/OnenotePageItemRequestBuilder.java @@ -91,18 +91,16 @@ public OnenotePageItemRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/onenote/pages/{onenotePage%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a OneNote page. + * Delete navigation property pages for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a OneNote page. + * Delete navigation property pages for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -111,21 +109,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a page object. Getting page information Access a page's metadata by page identifier: Getting page content You can use the page's content endpoint to get the HTML content of a page: The includeIDs=true query option is used to update pages. + * The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage get() { return get(null); } /** - * Retrieve the properties and relationships of a page object. Getting page information Access a page's metadata by page identifier: Getting page content You can use the page's content endpoint to get the HTML content of a page: The includeIDs=true query option is used to update pages. + * The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -160,7 +156,7 @@ public OnenotePage patch(@jakarta.annotation.Nonnull final OnenotePage body, @ja return this.requestAdapter.send(requestInfo, errorMapping, OnenotePage::createFromDiscriminatorValue); } /** - * Delete a OneNote page. + * Delete navigation property pages for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -168,7 +164,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a OneNote page. + * Delete navigation property pages for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -180,7 +176,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a page object. Getting page information Access a page's metadata by page identifier: Getting page content You can use the page's content endpoint to get the HTML content of a page: The includeIDs=true query option is used to update pages. + * The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -188,7 +184,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a page object. Getting page information Access a page's metadata by page identifier: Getting page content You can use the page's content endpoint to get the HTML content of a page: The includeIDs=true query option is used to update pages. + * The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -240,7 +236,7 @@ public OnenotePageItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final S public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a page object. Getting page information Access a page's metadata by page identifier: Getting page content You can use the page's content endpoint to get the HTML content of a page: The includeIDs=true query option is used to update pages. + * The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/pages/item/content/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/pages/item/content/ContentRequestBuilder.java index 5a88bbff991..07202d3922e 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/pages/item/content/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/pages/item/content/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * The page's HTML content. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/sectiongroups/SectionGroupsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/sectiongroups/SectionGroupsRequestBuilder.java index a6f1327d370..2516bd4baa0 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/sectiongroups/SectionGroupsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/sectiongroups/SectionGroupsRequestBuilder.java @@ -60,21 +60,19 @@ public SectionGroupsRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/onenote/sectionGroups{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of sectionGroup objects. + * The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link SectionGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroupCollectionResponse get() { return get(null); } /** - * Retrieve a list of sectionGroup objects. + * The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SectionGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroupCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public SectionGroup post(@jakarta.annotation.Nonnull final SectionGroup body, @j return this.requestAdapter.send(requestInfo, errorMapping, SectionGroup::createFromDiscriminatorValue); } /** - * Retrieve a list of sectionGroup objects. + * The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of sectionGroup objects. + * The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public SectionGroupsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new SectionGroupsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of sectionGroup objects. + * The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/sectiongroups/item/SectionGroupItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/sectiongroups/item/SectionGroupItemRequestBuilder.java index 7959c75ca80..e86a6ac075d 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/sectiongroups/item/SectionGroupItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/sectiongroups/item/SectionGroupItemRequestBuilder.java @@ -91,21 +91,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a sectionGroup object. + * The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link SectionGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroup get() { return get(null); } /** - * Retrieve the properties and relationships of a sectionGroup object. + * The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SectionGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroup get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -160,7 +158,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a sectionGroup object. + * The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -168,7 +166,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a sectionGroup object. + * The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -220,7 +218,7 @@ public SectionGroupItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a sectionGroup object. + * The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/sectiongroups/item/sectiongroups/SectionGroupsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/sectiongroups/item/sectiongroups/SectionGroupsRequestBuilder.java index e3df456c9f9..c981d8b626c 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/sectiongroups/item/sectiongroups/SectionGroupsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/sectiongroups/item/sectiongroups/SectionGroupsRequestBuilder.java @@ -59,21 +59,19 @@ public SectionGroupsRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/onenote/sectionGroups/{sectionGroup%2Did}/sectionGroups{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of section groups from the specified section group. + * The section groups in the section. Read-only. Nullable. * @return a {@link SectionGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroupCollectionResponse get() { return get(null); } /** - * Retrieve a list of section groups from the specified section group. + * The section groups in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SectionGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroupCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public SectionGroupCollectionResponse get(@jakarta.annotation.Nullable final jav return this.requestAdapter.send(requestInfo, errorMapping, SectionGroupCollectionResponse::createFromDiscriminatorValue); } /** - * Retrieve a list of section groups from the specified section group. + * The section groups in the section. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of section groups from the specified section group. + * The section groups in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public SectionGroupsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new SectionGroupsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of section groups from the specified section group. + * The section groups in the section. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/sectiongroups/item/sections/SectionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/sectiongroups/item/sections/SectionsRequestBuilder.java index 89b8fbf2b01..1dce88bc5ef 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/sectiongroups/item/sections/SectionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/sectiongroups/item/sections/SectionsRequestBuilder.java @@ -60,21 +60,19 @@ public SectionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/onenote/sectionGroups/{sectionGroup%2Did}/sections{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of onenoteSection objects from the specified section group. + * The sections in the section group. Read-only. Nullable. * @return a {@link OnenoteSectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSectionCollectionResponse get() { return get(null); } /** - * Retrieve a list of onenoteSection objects from the specified section group. + * The sections in the section group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenoteSectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSectionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OnenoteSectionCollectionResponse get(@jakarta.annotation.Nullable final j return this.requestAdapter.send(requestInfo, errorMapping, OnenoteSectionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new onenoteSection in the specified section group. + * Create new navigation property to sections for groups * @param body The request body * @return a {@link OnenoteSection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSection post(@jakarta.annotation.Nonnull final OnenoteSection body) { return post(body, null); } /** - * Create a new onenoteSection in the specified section group. + * Create new navigation property to sections for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenoteSection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSection post(@jakarta.annotation.Nonnull final OnenoteSection body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OnenoteSection post(@jakarta.annotation.Nonnull final OnenoteSection body return this.requestAdapter.send(requestInfo, errorMapping, OnenoteSection::createFromDiscriminatorValue); } /** - * Retrieve a list of onenoteSection objects from the specified section group. + * The sections in the section group. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of onenoteSection objects from the specified section group. + * The sections in the section group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new onenoteSection in the specified section group. + * Create new navigation property to sections for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new onenoteSection in the specified section group. + * Create new navigation property to sections for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public SectionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new SectionsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of onenoteSection objects from the specified section group. + * The sections in the section group. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/sectiongroups/item/sections/item/pages/PagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/sectiongroups/item/sections/item/pages/PagesRequestBuilder.java index afcbf480de5..769d5f50c26 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/sectiongroups/item/sections/item/pages/PagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/sectiongroups/item/sections/item/pages/PagesRequestBuilder.java @@ -60,21 +60,19 @@ public PagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/onenote/sectionGroups/{sectionGroup%2Did}/sections/{onenoteSection%2Did}/pages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @return a {@link OnenotePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePageCollectionResponse get() { return get(null); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OnenotePageCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, OnenotePageCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for groups * @param body The request body * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body) { return post(body, null); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body, @jak return this.requestAdapter.send(requestInfo, errorMapping, OnenotePage::createFromDiscriminatorValue); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new page in the specified section. + * Create new navigation property to pages for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public PagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new PagesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/sectiongroups/item/sections/item/pages/item/content/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/sectiongroups/item/sections/item/pages/item/content/ContentRequestBuilder.java index ef6b59865fd..a04baed2fd3 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/sectiongroups/item/sections/item/pages/item/content/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/sectiongroups/item/sections/item/pages/item/content/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * The page's HTML content. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/sections/SectionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/sections/SectionsRequestBuilder.java index a971ef131e8..7020a54e57a 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/sections/SectionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/sections/SectionsRequestBuilder.java @@ -60,21 +60,19 @@ public SectionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/onenote/sections{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of onenoteSection objects. + * The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link OnenoteSectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSectionCollectionResponse get() { return get(null); } /** - * Retrieve a list of onenoteSection objects. + * The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenoteSectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSectionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public OnenoteSection post(@jakarta.annotation.Nonnull final OnenoteSection body return this.requestAdapter.send(requestInfo, errorMapping, OnenoteSection::createFromDiscriminatorValue); } /** - * Retrieve a list of onenoteSection objects. + * The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of onenoteSection objects. + * The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public SectionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new SectionsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of onenoteSection objects. + * The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/sections/item/OnenoteSectionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/sections/item/OnenoteSectionItemRequestBuilder.java index 6779d71c8b8..5b6fc28d2dd 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/sections/item/OnenoteSectionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/sections/item/OnenoteSectionItemRequestBuilder.java @@ -100,21 +100,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a onenoteSection object. + * The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link OnenoteSection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSection get() { return get(null); } /** - * Retrieve the properties and relationships of a onenoteSection object. + * The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenoteSection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSection get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -169,7 +167,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a onenoteSection object. + * The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -177,7 +175,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a onenoteSection object. + * The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -229,7 +227,7 @@ public OnenoteSectionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fina public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a onenoteSection object. + * The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/sections/item/pages/PagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/sections/item/pages/PagesRequestBuilder.java index e6c551e7ee6..c1a47b651b8 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/sections/item/pages/PagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/sections/item/pages/PagesRequestBuilder.java @@ -60,21 +60,19 @@ public PagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/onenote/sections/{onenoteSection%2Did}/pages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @return a {@link OnenotePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePageCollectionResponse get() { return get(null); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OnenotePageCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, OnenotePageCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for groups * @param body The request body * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body) { return post(body, null); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body, @jak return this.requestAdapter.send(requestInfo, errorMapping, OnenotePage::createFromDiscriminatorValue); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new page in the specified section. + * Create new navigation property to pages for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public PagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new PagesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/sections/item/pages/item/content/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/sections/item/pages/item/content/ContentRequestBuilder.java index c4f3fe26387..30424dcaafd 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/sections/item/pages/item/content/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/onenote/sections/item/pages/item/content/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * The page's HTML content. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/operations/OperationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/operations/OperationsRequestBuilder.java index f406ae26f32..2b7aefe05d6 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/operations/OperationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/operations/OperationsRequestBuilder.java @@ -60,21 +60,19 @@ public OperationsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/operations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of rich long-running operations associated with a site. + * The collection of long-running operations on the site. * @return a {@link RichLongRunningOperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RichLongRunningOperationCollectionResponse get() { return get(null); } /** - * Get a list of rich long-running operations associated with a site. + * The collection of long-running operations on the site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RichLongRunningOperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RichLongRunningOperationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public RichLongRunningOperation post(@jakarta.annotation.Nonnull final RichLongR return this.requestAdapter.send(requestInfo, errorMapping, RichLongRunningOperation::createFromDiscriminatorValue); } /** - * Get a list of rich long-running operations associated with a site. + * The collection of long-running operations on the site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of rich long-running operations associated with a site. + * The collection of long-running operations on the site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public OperationsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new OperationsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of rich long-running operations associated with a site. + * The collection of long-running operations on the site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/operations/item/RichLongRunningOperationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/operations/item/RichLongRunningOperationItemRequestBuilder.java index 3c54eb8ad19..f7214cfaeef 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/operations/item/RichLongRunningOperationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/operations/item/RichLongRunningOperationItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the status of a rich long-running operation on a site or a list. + * The collection of long-running operations on the site. * @return a {@link RichLongRunningOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RichLongRunningOperation get() { return get(null); } /** - * Get the status of a rich long-running operation on a site or a list. + * The collection of long-running operations on the site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RichLongRunningOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RichLongRunningOperation get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the status of a rich long-running operation on a site or a list. + * The collection of long-running operations on the site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the status of a rich long-running operation on a site or a list. + * The collection of long-running operations on the site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public RichLongRunningOperationItemRequestBuilder withUrl(@jakarta.annotation.No public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the status of a rich long-running operation on a site or a list. + * The collection of long-running operations on the site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/pages/PagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/pages/PagesRequestBuilder.java index 592c2a5f59c..bf3c4a98c04 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/pages/PagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/pages/PagesRequestBuilder.java @@ -69,21 +69,19 @@ public PagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/pages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the collection of [baseSitePage][] objects from the site pages [list][] in a [site][]. All pages in the site are returned (with pagination). Sort alphabetically by name in ascending order. The following table lists the available subtypes. + * The collection of pages in the baseSitePages list in this site. * @return a {@link BaseSitePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BaseSitePageCollectionResponse get() { return get(null); } /** - * Get the collection of [baseSitePage][] objects from the site pages [list][] in a [site][]. All pages in the site are returned (with pagination). Sort alphabetically by name in ascending order. The following table lists the available subtypes. + * The collection of pages in the baseSitePages list in this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BaseSitePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BaseSitePageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public BaseSitePageCollectionResponse get(@jakarta.annotation.Nullable final jav return this.requestAdapter.send(requestInfo, errorMapping, BaseSitePageCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new [sitePage][] in the site pages [list][] in a [site][]. + * Create new navigation property to pages for groups * @param body The request body * @return a {@link BaseSitePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BaseSitePage post(@jakarta.annotation.Nonnull final BaseSitePage body) { return post(body, null); } /** - * Create a new [sitePage][] in the site pages [list][] in a [site][]. + * Create new navigation property to pages for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BaseSitePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BaseSitePage post(@jakarta.annotation.Nonnull final BaseSitePage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public BaseSitePage post(@jakarta.annotation.Nonnull final BaseSitePage body, @j return this.requestAdapter.send(requestInfo, errorMapping, BaseSitePage::createFromDiscriminatorValue); } /** - * Get the collection of [baseSitePage][] objects from the site pages [list][] in a [site][]. All pages in the site are returned (with pagination). Sort alphabetically by name in ascending order. The following table lists the available subtypes. + * The collection of pages in the baseSitePages list in this site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the collection of [baseSitePage][] objects from the site pages [list][] in a [site][]. All pages in the site are returned (with pagination). Sort alphabetically by name in ascending order. The following table lists the available subtypes. + * The collection of pages in the baseSitePages list in this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new [sitePage][] in the site pages [list][] in a [site][]. + * Create new navigation property to pages for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new [sitePage][] in the site pages [list][] in a [site][]. + * Create new navigation property to pages for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public PagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new PagesRequestBuilder(rawUrl, requestAdapter); } /** - * Get the collection of [baseSitePage][] objects from the site pages [list][] in a [site][]. All pages in the site are returned (with pagination). Sort alphabetically by name in ascending order. The following table lists the available subtypes. + * The collection of pages in the baseSitePages list in this site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/pages/item/BaseSitePageItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/pages/item/BaseSitePageItemRequestBuilder.java index 7e0a9becc51..0afbc993a67 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/pages/item/BaseSitePageItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/pages/item/BaseSitePageItemRequestBuilder.java @@ -64,18 +64,16 @@ public BaseSitePageItemRequestBuilder(@jakarta.annotation.Nonnull final String r super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/pages/{baseSitePage%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a [baseSitePage][] from the site pages [list][] in a [site][]. + * Delete navigation property pages for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a [baseSitePage][] from the site pages [list][] in a [site][]. + * Delete navigation property pages for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -84,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the metadata for a [baseSitePage][] in the site pages [list][] in a [site][]. + * The collection of pages in the baseSitePages list in this site. * @return a {@link BaseSitePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BaseSitePage get() { return get(null); } /** - * Get the metadata for a [baseSitePage][] in the site pages [list][] in a [site][]. + * The collection of pages in the baseSitePages list in this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BaseSitePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BaseSitePage get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +129,7 @@ public BaseSitePage patch(@jakarta.annotation.Nonnull final BaseSitePage body, @ return this.requestAdapter.send(requestInfo, errorMapping, BaseSitePage::createFromDiscriminatorValue); } /** - * Delete a [baseSitePage][] from the site pages [list][] in a [site][]. + * Delete navigation property pages for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +137,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a [baseSitePage][] from the site pages [list][] in a [site][]. + * Delete navigation property pages for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -153,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the metadata for a [baseSitePage][] in the site pages [list][] in a [site][]. + * The collection of pages in the baseSitePages list in this site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -161,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the metadata for a [baseSitePage][] in the site pages [list][] in a [site][]. + * The collection of pages in the baseSitePages list in this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -213,7 +209,7 @@ public BaseSitePageItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the metadata for a [baseSitePage][] in the site pages [list][] in a [site][]. + * The collection of pages in the baseSitePages list in this site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/permissions/PermissionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/permissions/PermissionsRequestBuilder.java index f600d2dbc7b..5c9aafd1f76 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/permissions/PermissionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/permissions/PermissionsRequestBuilder.java @@ -60,21 +60,19 @@ public PermissionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/permissions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the permission resources from the permissions navigation property on a site. + * The permissions associated with the site. Nullable. * @return a {@link PermissionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PermissionCollectionResponse get() { return get(null); } /** - * Get the permission resources from the permissions navigation property on a site. + * The permissions associated with the site. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PermissionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PermissionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public PermissionCollectionResponse get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, PermissionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new permission object on a site. + * Create new navigation property to permissions for groups * @param body The request body * @return a {@link Permission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Permission post(@jakarta.annotation.Nonnull final Permission body) { return post(body, null); } /** - * Create a new permission object on a site. + * Create new navigation property to permissions for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Permission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Permission post(@jakarta.annotation.Nonnull final Permission body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public Permission post(@jakarta.annotation.Nonnull final Permission body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, Permission::createFromDiscriminatorValue); } /** - * Get the permission resources from the permissions navigation property on a site. + * The permissions associated with the site. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the permission resources from the permissions navigation property on a site. + * The permissions associated with the site. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new permission object on a site. + * Create new navigation property to permissions for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new permission object on a site. + * Create new navigation property to permissions for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public PermissionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new PermissionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the permission resources from the permissions navigation property on a site. + * The permissions associated with the site. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/permissions/item/PermissionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/permissions/item/PermissionItemRequestBuilder.java index 4a940adf2c6..16fb541187f 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/permissions/item/PermissionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/permissions/item/PermissionItemRequestBuilder.java @@ -46,18 +46,16 @@ public PermissionItemRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/permissions/{permission%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a permission object on a site. + * Delete navigation property permissions for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a permission object on a site. + * Delete navigation property permissions for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a permission object on a site. + * The permissions associated with the site. Nullable. * @return a {@link Permission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Permission get() { return get(null); } /** - * Retrieve the properties and relationships of a permission object on a site. + * The permissions associated with the site. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Permission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Permission get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public Permission get(@jakarta.annotation.Nullable final java.util.function.Cons return this.requestAdapter.send(requestInfo, errorMapping, Permission::createFromDiscriminatorValue); } /** - * Update an application permission object on a site. + * Update the navigation property permissions in groups * @param body The request body * @return a {@link Permission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Permission patch(@jakarta.annotation.Nonnull final Permission body) { return patch(body, null); } /** - * Update an application permission object on a site. + * Update the navigation property permissions in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Permission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Permission patch(@jakarta.annotation.Nonnull final Permission body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public Permission patch(@jakarta.annotation.Nonnull final Permission body, @jaka return this.requestAdapter.send(requestInfo, errorMapping, Permission::createFromDiscriminatorValue); } /** - * Delete a permission object on a site. + * Delete navigation property permissions for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a permission object on a site. + * Delete navigation property permissions for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a permission object on a site. + * The permissions associated with the site. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a permission object on a site. + * The permissions associated with the site. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update an application permission object on a site. + * Update the navigation property permissions in groups * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update an application permission object on a site. + * Update the navigation property permissions in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public PermissionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final St public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a permission object on a site. + * The permissions associated with the site. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/permissions/item/grant/GrantRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/permissions/item/grant/GrantRequestBuilder.java index 2cc80156e04..17ef886ba33 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/permissions/item/grant/GrantRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/permissions/item/grant/GrantRequestBuilder.java @@ -35,7 +35,7 @@ public GrantRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/permissions/{permission%2Did}/grant", rawUrl); } /** - * Grant users access to a link represented by a [permission][]. + * Grant users access to a link represented by a permission. * @param body The request body * @return a {@link GrantPostResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -46,7 +46,7 @@ public GrantPostResponse post(@jakarta.annotation.Nonnull final GrantPostRequest return post(body, null); } /** - * Grant users access to a link represented by a [permission][]. + * Grant users access to a link represented by a permission. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GrantPostResponse} @@ -62,7 +62,7 @@ public GrantPostResponse post(@jakarta.annotation.Nonnull final GrantPostRequest return this.requestAdapter.send(requestInfo, errorMapping, GrantPostResponse::createFromDiscriminatorValue); } /** - * Grant users access to a link represented by a [permission][]. + * Grant users access to a link represented by a permission. * @param body The request body * @return a {@link RequestInformation} */ @@ -71,7 +71,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Grant users access to a link represented by a [permission][]. + * Grant users access to a link represented by a permission. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/sites/SitesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/sites/SitesRequestBuilder.java index 17983267244..426a6cf90f9 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/sites/SitesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/sites/SitesRequestBuilder.java @@ -59,21 +59,19 @@ public SitesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/sites{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a collection of subsites defined for a [site][]. + * The collection of the sub-sites under this site. * @return a {@link SiteCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SiteCollectionResponse get() { return get(null); } /** - * Get a collection of subsites defined for a [site][]. + * The collection of the sub-sites under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SiteCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SiteCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public SiteCollectionResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, SiteCollectionResponse::createFromDiscriminatorValue); } /** - * Get a collection of subsites defined for a [site][]. + * The collection of the sub-sites under this site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a collection of subsites defined for a [site][]. + * The collection of the sub-sites under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public SitesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new SitesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a collection of subsites defined for a [site][]. + * The collection of the sub-sites under this site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/TermStoreRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/TermStoreRequestBuilder.java index e492ac63274..220ad49ee6e 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/TermStoreRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/TermStoreRequestBuilder.java @@ -73,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a store object. + * The default termStore under this site. * @return a {@link Store} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Store get() { return get(null); } /** - * Read the properties and relationships of a store object. + * The default termStore under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Store} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Store get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -97,23 +95,21 @@ public Store get(@jakarta.annotation.Nullable final java.util.function.Consumer< return this.requestAdapter.send(requestInfo, errorMapping, Store::createFromDiscriminatorValue); } /** - * Update the properties of a store object. + * Update the navigation property termStore in groups * @param body The request body * @return a {@link Store} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Store patch(@jakarta.annotation.Nonnull final Store body) { return patch(body, null); } /** - * Update the properties of a store object. + * Update the navigation property termStore in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Store} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Store patch(@jakarta.annotation.Nonnull final Store body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -144,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a store object. + * The default termStore under this site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -152,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a store object. + * The default termStore under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -164,7 +160,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a store object. + * Update the navigation property termStore in groups * @param body The request body * @return a {@link RequestInformation} */ @@ -173,7 +169,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a store object. + * Update the navigation property termStore in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -204,7 +200,7 @@ public TermStoreRequestBuilder withUrl(@jakarta.annotation.Nonnull final String public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a store object. + * The default termStore under this site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/groups/GroupsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/groups/GroupsRequestBuilder.java index b6649413cf6..c8dd9f74e9a 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/groups/GroupsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/groups/GroupsRequestBuilder.java @@ -60,21 +60,19 @@ public GroupsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/termStore/groups{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of group objects in a term store. + * Collection of all groups available in the term store. * @return a {@link GroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public GroupCollectionResponse get() { return get(null); } /** - * Get a list of group objects in a term store. + * Collection of all groups available in the term store. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public GroupCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public GroupCollectionResponse get(@jakarta.annotation.Nullable final java.util. return this.requestAdapter.send(requestInfo, errorMapping, GroupCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new group object in a term store. + * Create new navigation property to groups for groups * @param body The request body * @return a {@link Group} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Group post(@jakarta.annotation.Nonnull final Group body) { return post(body, null); } /** - * Create a new group object in a term store. + * Create new navigation property to groups for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Group} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Group post(@jakarta.annotation.Nonnull final Group body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public Group post(@jakarta.annotation.Nonnull final Group body, @jakarta.annotat return this.requestAdapter.send(requestInfo, errorMapping, Group::createFromDiscriminatorValue); } /** - * Get a list of group objects in a term store. + * Collection of all groups available in the term store. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of group objects in a term store. + * Collection of all groups available in the term store. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new group object in a term store. + * Create new navigation property to groups for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new group object in a term store. + * Create new navigation property to groups for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public GroupsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw return new GroupsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of group objects in a term store. + * Collection of all groups available in the term store. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/groups/item/GroupItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/groups/item/GroupItemRequestBuilder.java index 36d07fe3b62..2db472c08c4 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/groups/item/GroupItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/groups/item/GroupItemRequestBuilder.java @@ -46,18 +46,16 @@ public GroupItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/termStore/groups/{group%2Did1}{?%24expand,%24select}", rawUrl); } /** - * Delete a group object in a term [store]. + * Delete navigation property groups for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a group object in a term [store]. + * Delete navigation property groups for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a term store group object. + * Collection of all groups available in the term store. * @return a {@link Group} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Group get() { return get(null); } /** - * Read the properties and relationships of a term store group object. + * Collection of all groups available in the term store. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Group} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Group get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -115,7 +111,7 @@ public Group patch(@jakarta.annotation.Nonnull final Group body, @jakarta.annota return this.requestAdapter.send(requestInfo, errorMapping, Group::createFromDiscriminatorValue); } /** - * Delete a group object in a term [store]. + * Delete navigation property groups for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -123,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a group object in a term [store]. + * Delete navigation property groups for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -135,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a term store group object. + * Collection of all groups available in the term store. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a term store group object. + * Collection of all groups available in the term store. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -195,7 +191,7 @@ public GroupItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a term store group object. + * Collection of all groups available in the term store. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/groups/item/sets/SetsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/groups/item/sets/SetsRequestBuilder.java index 5a850c96fd1..b336af117cc 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/groups/item/sets/SetsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/groups/item/sets/SetsRequestBuilder.java @@ -60,21 +60,19 @@ public SetsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/termStore/groups/{group%2Did1}/sets{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the set objects and their properties. + * All sets under the group in a term [store]. * @return a {@link SetCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SetCollectionResponse get() { return get(null); } /** - * Get a list of the set objects and their properties. + * All sets under the group in a term [store]. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SetCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SetCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Set post(@jakarta.annotation.Nonnull final Set body, @jakarta.annotation. return this.requestAdapter.send(requestInfo, errorMapping, Set::createFromDiscriminatorValue); } /** - * Get a list of the set objects and their properties. + * All sets under the group in a term [store]. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the set objects and their properties. + * All sets under the group in a term [store]. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public SetsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr return new SetsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the set objects and their properties. + * All sets under the group in a term [store]. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/groups/item/sets/item/children/ChildrenRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/groups/item/sets/item/children/ChildrenRequestBuilder.java index 2cedbc2da56..c38f23a75e7 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/groups/item/sets/item/children/ChildrenRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/groups/item/sets/item/children/ChildrenRequestBuilder.java @@ -60,21 +60,19 @@ public ChildrenRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/termStore/groups/{group%2Did1}/sets/{set%2Did}/children{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermCollectionResponse get() { return get(null); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TermCollectionResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, TermCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new term object. + * Create new navigation property to children for groups * @param body The request body * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term post(@jakarta.annotation.Nonnull final Term body) { return post(body, null); } /** - * Create a new term object. + * Create new navigation property to children for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term post(@jakarta.annotation.Nonnull final Term body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public Term post(@jakarta.annotation.Nonnull final Term body, @jakarta.annotatio return this.requestAdapter.send(requestInfo, errorMapping, Term::createFromDiscriminatorValue); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new term object. + * Create new navigation property to children for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new term object. + * Create new navigation property to children for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ChildrenRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new ChildrenRequestBuilder(rawUrl, requestAdapter); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/groups/item/sets/item/relations/RelationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/groups/item/sets/item/relations/RelationsRequestBuilder.java index 047aa569fa7..bdd2525e023 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/groups/item/sets/item/relations/RelationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/groups/item/sets/item/relations/RelationsRequestBuilder.java @@ -60,21 +60,19 @@ public RelationsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/termStore/groups/{group%2Did1}/sets/{set%2Did}/relations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @return a {@link RelationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RelationCollectionResponse get() { return get(null); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RelationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RelationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Relation post(@jakarta.annotation.Nonnull final Relation body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, Relation::createFromDiscriminatorValue); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public RelationsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new RelationsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/groups/item/sets/item/terms/TermsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/groups/item/sets/item/terms/TermsRequestBuilder.java index 37b25619a70..4d93d08c370 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/groups/item/sets/item/terms/TermsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/groups/item/sets/item/terms/TermsRequestBuilder.java @@ -60,7 +60,7 @@ public TermsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/termStore/groups/{group%2Did1}/sets/{set%2Did}/terms{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public TermCollectionResponse get() { return get(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public Term post(@jakarta.annotation.Nonnull final Term body, @jakarta.annotatio return this.requestAdapter.send(requestInfo, errorMapping, Term::createFromDiscriminatorValue); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public TermsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new TermsRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/groups/item/sets/item/terms/item/TermItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/groups/item/sets/item/terms/item/TermItemRequestBuilder.java index 7279179c8ee..7f0f166de83 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/groups/item/sets/item/terms/item/TermItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/groups/item/sets/item/terms/item/TermItemRequestBuilder.java @@ -64,18 +64,16 @@ public TermItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/termStore/groups/{group%2Did1}/sets/{set%2Did}/terms/{term%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a term object. + * Delete navigation property terms for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a term object. + * Delete navigation property terms for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -84,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term get() { return get(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,23 +104,21 @@ public Term get(@jakarta.annotation.Nullable final java.util.function.ConsumerFind more info here */ @jakarta.annotation.Nullable public Term patch(@jakarta.annotation.Nonnull final Term body) { return patch(body, null); } /** - * Update the properties of a term object. + * Update the navigation property terms in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term patch(@jakarta.annotation.Nonnull final Term body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +129,7 @@ public Term patch(@jakarta.annotation.Nonnull final Term body, @jakarta.annotati return this.requestAdapter.send(requestInfo, errorMapping, Term::createFromDiscriminatorValue); } /** - * Delete a term object. + * Delete navigation property terms for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +137,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a term object. + * Delete navigation property terms for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -163,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -175,7 +169,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a term object. + * Update the navigation property terms in groups * @param body The request body * @return a {@link RequestInformation} */ @@ -184,7 +178,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a term object. + * Update the navigation property terms in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -215,7 +209,7 @@ public TermItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a term object. + * All the terms under the set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/SetsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/SetsRequestBuilder.java index 8d1b145ba94..dfbdd7b8488 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/SetsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/SetsRequestBuilder.java @@ -60,7 +60,7 @@ public SetsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/termStore/sets{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Read the properties and relationships of a set object. + * Collection of all sets available in the term store. This relationship can only be used to load a specific term set. * @return a {@link SetCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public SetCollectionResponse get() { return get(null); } /** - * Read the properties and relationships of a set object. + * Collection of all sets available in the term store. This relationship can only be used to load a specific term set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SetCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -82,23 +82,21 @@ public SetCollectionResponse get(@jakarta.annotation.Nullable final java.util.fu return this.requestAdapter.send(requestInfo, errorMapping, SetCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new set object. + * Create new navigation property to sets for groups * @param body The request body * @return a {@link Set} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Set post(@jakarta.annotation.Nonnull final Set body) { return post(body, null); } /** - * Create a new set object. + * Create new navigation property to sets for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Set} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Set post(@jakarta.annotation.Nonnull final Set body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Set post(@jakarta.annotation.Nonnull final Set body, @jakarta.annotation. return this.requestAdapter.send(requestInfo, errorMapping, Set::createFromDiscriminatorValue); } /** - * Read the properties and relationships of a set object. + * Collection of all sets available in the term store. This relationship can only be used to load a specific term set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a set object. + * Collection of all sets available in the term store. This relationship can only be used to load a specific term set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -129,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new set object. + * Create new navigation property to sets for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -138,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new set object. + * Create new navigation property to sets for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -163,7 +161,7 @@ public SetsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr return new SetsRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of a set object. + * Collection of all sets available in the term store. This relationship can only be used to load a specific term set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/item/SetItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/item/SetItemRequestBuilder.java index ac798fb05ee..07a1c120486 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/item/SetItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/item/SetItemRequestBuilder.java @@ -73,18 +73,16 @@ public SetItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/termStore/sets/{set%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a set object. + * Delete navigation property sets for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a set object. + * Delete navigation property sets for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -93,21 +91,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a set object. + * Collection of all sets available in the term store. This relationship can only be used to load a specific term set. * @return a {@link Set} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Set get() { return get(null); } /** - * Read the properties and relationships of a set object. + * Collection of all sets available in the term store. This relationship can only be used to load a specific term set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Set} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Set get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,23 +113,21 @@ public Set get(@jakarta.annotation.Nullable final java.util.function.ConsumerFind more info here */ @jakarta.annotation.Nullable public Set patch(@jakarta.annotation.Nonnull final Set body) { return patch(body, null); } /** - * Update the properties of a set object. + * Update the navigation property sets in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Set} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Set patch(@jakarta.annotation.Nonnull final Set body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -144,7 +138,7 @@ public Set patch(@jakarta.annotation.Nonnull final Set body, @jakarta.annotation return this.requestAdapter.send(requestInfo, errorMapping, Set::createFromDiscriminatorValue); } /** - * Delete a set object. + * Delete navigation property sets for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -152,7 +146,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a set object. + * Delete navigation property sets for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -164,7 +158,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a set object. + * Collection of all sets available in the term store. This relationship can only be used to load a specific term set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -172,7 +166,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a set object. + * Collection of all sets available in the term store. This relationship can only be used to load a specific term set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +178,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a set object. + * Update the navigation property sets in groups * @param body The request body * @return a {@link RequestInformation} */ @@ -193,7 +187,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a set object. + * Update the navigation property sets in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -224,7 +218,7 @@ public SetItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a set object. + * Collection of all sets available in the term store. This relationship can only be used to load a specific term set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/item/children/ChildrenRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/item/children/ChildrenRequestBuilder.java index 179b847f344..495225bf9c9 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/item/children/ChildrenRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/item/children/ChildrenRequestBuilder.java @@ -60,21 +60,19 @@ public ChildrenRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/termStore/sets/{set%2Did}/children{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermCollectionResponse get() { return get(null); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TermCollectionResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, TermCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new term object. + * Create new navigation property to children for groups * @param body The request body * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term post(@jakarta.annotation.Nonnull final Term body) { return post(body, null); } /** - * Create a new term object. + * Create new navigation property to children for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term post(@jakarta.annotation.Nonnull final Term body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public Term post(@jakarta.annotation.Nonnull final Term body, @jakarta.annotatio return this.requestAdapter.send(requestInfo, errorMapping, Term::createFromDiscriminatorValue); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new term object. + * Create new navigation property to children for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new term object. + * Create new navigation property to children for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ChildrenRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new ChildrenRequestBuilder(rawUrl, requestAdapter); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/item/parentgroup/sets/SetsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/item/parentgroup/sets/SetsRequestBuilder.java index 451732a2b7e..a035feefbf5 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/item/parentgroup/sets/SetsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/item/parentgroup/sets/SetsRequestBuilder.java @@ -60,21 +60,19 @@ public SetsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/termStore/sets/{set%2Did}/parentGroup/sets{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the set objects and their properties. + * All sets under the group in a term [store]. * @return a {@link SetCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SetCollectionResponse get() { return get(null); } /** - * Get a list of the set objects and their properties. + * All sets under the group in a term [store]. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SetCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SetCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Set post(@jakarta.annotation.Nonnull final Set body, @jakarta.annotation. return this.requestAdapter.send(requestInfo, errorMapping, Set::createFromDiscriminatorValue); } /** - * Get a list of the set objects and their properties. + * All sets under the group in a term [store]. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the set objects and their properties. + * All sets under the group in a term [store]. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public SetsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr return new SetsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the set objects and their properties. + * All sets under the group in a term [store]. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/item/parentgroup/sets/item/children/ChildrenRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/item/parentgroup/sets/item/children/ChildrenRequestBuilder.java index 1674ff612a7..3333a5af5ef 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/item/parentgroup/sets/item/children/ChildrenRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/item/parentgroup/sets/item/children/ChildrenRequestBuilder.java @@ -60,21 +60,19 @@ public ChildrenRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/termStore/sets/{set%2Did}/parentGroup/sets/{set%2Did1}/children{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermCollectionResponse get() { return get(null); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TermCollectionResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, TermCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new term object. + * Create new navigation property to children for groups * @param body The request body * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term post(@jakarta.annotation.Nonnull final Term body) { return post(body, null); } /** - * Create a new term object. + * Create new navigation property to children for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term post(@jakarta.annotation.Nonnull final Term body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public Term post(@jakarta.annotation.Nonnull final Term body, @jakarta.annotatio return this.requestAdapter.send(requestInfo, errorMapping, Term::createFromDiscriminatorValue); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new term object. + * Create new navigation property to children for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new term object. + * Create new navigation property to children for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ChildrenRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new ChildrenRequestBuilder(rawUrl, requestAdapter); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/item/parentgroup/sets/item/relations/RelationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/item/parentgroup/sets/item/relations/RelationsRequestBuilder.java index a7b9a765cc6..5ccab9cffed 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/item/parentgroup/sets/item/relations/RelationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/item/parentgroup/sets/item/relations/RelationsRequestBuilder.java @@ -60,21 +60,19 @@ public RelationsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/termStore/sets/{set%2Did}/parentGroup/sets/{set%2Did1}/relations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @return a {@link RelationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RelationCollectionResponse get() { return get(null); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RelationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RelationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Relation post(@jakarta.annotation.Nonnull final Relation body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, Relation::createFromDiscriminatorValue); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public RelationsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new RelationsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/item/parentgroup/sets/item/terms/TermsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/item/parentgroup/sets/item/terms/TermsRequestBuilder.java index fc82c6338f2..4e7c5821581 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/item/parentgroup/sets/item/terms/TermsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/item/parentgroup/sets/item/terms/TermsRequestBuilder.java @@ -60,7 +60,7 @@ public TermsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/termStore/sets/{set%2Did}/parentGroup/sets/{set%2Did1}/terms{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public TermCollectionResponse get() { return get(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public Term post(@jakarta.annotation.Nonnull final Term body, @jakarta.annotatio return this.requestAdapter.send(requestInfo, errorMapping, Term::createFromDiscriminatorValue); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public TermsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new TermsRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/item/parentgroup/sets/item/terms/item/TermItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/item/parentgroup/sets/item/terms/item/TermItemRequestBuilder.java index c0195184470..e15afacaf03 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/item/parentgroup/sets/item/terms/item/TermItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/item/parentgroup/sets/item/terms/item/TermItemRequestBuilder.java @@ -64,18 +64,16 @@ public TermItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/termStore/sets/{set%2Did}/parentGroup/sets/{set%2Did1}/terms/{term%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a term object. + * Delete navigation property terms for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a term object. + * Delete navigation property terms for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -84,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term get() { return get(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,23 +104,21 @@ public Term get(@jakarta.annotation.Nullable final java.util.function.ConsumerFind more info here */ @jakarta.annotation.Nullable public Term patch(@jakarta.annotation.Nonnull final Term body) { return patch(body, null); } /** - * Update the properties of a term object. + * Update the navigation property terms in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term patch(@jakarta.annotation.Nonnull final Term body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +129,7 @@ public Term patch(@jakarta.annotation.Nonnull final Term body, @jakarta.annotati return this.requestAdapter.send(requestInfo, errorMapping, Term::createFromDiscriminatorValue); } /** - * Delete a term object. + * Delete navigation property terms for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +137,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a term object. + * Delete navigation property terms for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -163,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -175,7 +169,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a term object. + * Update the navigation property terms in groups * @param body The request body * @return a {@link RequestInformation} */ @@ -184,7 +178,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a term object. + * Update the navigation property terms in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -215,7 +209,7 @@ public TermItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a term object. + * All the terms under the set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/item/relations/RelationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/item/relations/RelationsRequestBuilder.java index 83421cf2622..210eae75ee0 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/item/relations/RelationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/item/relations/RelationsRequestBuilder.java @@ -60,21 +60,19 @@ public RelationsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/termStore/sets/{set%2Did}/relations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @return a {@link RelationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RelationCollectionResponse get() { return get(null); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RelationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RelationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Relation post(@jakarta.annotation.Nonnull final Relation body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, Relation::createFromDiscriminatorValue); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public RelationsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new RelationsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/item/terms/TermsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/item/terms/TermsRequestBuilder.java index 10cc9da34ba..5a3f0fc0c6a 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/item/terms/TermsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/item/terms/TermsRequestBuilder.java @@ -60,7 +60,7 @@ public TermsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/termStore/sets/{set%2Did}/terms{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public TermCollectionResponse get() { return get(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public Term post(@jakarta.annotation.Nonnull final Term body, @jakarta.annotatio return this.requestAdapter.send(requestInfo, errorMapping, Term::createFromDiscriminatorValue); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public TermsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new TermsRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/item/terms/item/TermItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/item/terms/item/TermItemRequestBuilder.java index b6823dbf4c8..0d882c88931 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/item/terms/item/TermItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstore/sets/item/terms/item/TermItemRequestBuilder.java @@ -64,18 +64,16 @@ public TermItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/termStore/sets/{set%2Did}/terms/{term%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a term object. + * Delete navigation property terms for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a term object. + * Delete navigation property terms for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -84,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term get() { return get(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,23 +104,21 @@ public Term get(@jakarta.annotation.Nullable final java.util.function.ConsumerFind more info here */ @jakarta.annotation.Nullable public Term patch(@jakarta.annotation.Nonnull final Term body) { return patch(body, null); } /** - * Update the properties of a term object. + * Update the navigation property terms in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term patch(@jakarta.annotation.Nonnull final Term body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +129,7 @@ public Term patch(@jakarta.annotation.Nonnull final Term body, @jakarta.annotati return this.requestAdapter.send(requestInfo, errorMapping, Term::createFromDiscriminatorValue); } /** - * Delete a term object. + * Delete navigation property terms for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +137,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a term object. + * Delete navigation property terms for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -163,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -175,7 +169,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a term object. + * Update the navigation property terms in groups * @param body The request body * @return a {@link RequestInformation} */ @@ -184,7 +178,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a term object. + * Update the navigation property terms in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -215,7 +209,7 @@ public TermItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a term object. + * All the terms under the set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/groups/GroupsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/groups/GroupsRequestBuilder.java index b50ec6216f9..5e7c6f87618 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/groups/GroupsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/groups/GroupsRequestBuilder.java @@ -60,21 +60,19 @@ public GroupsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/termStores/{store%2Did}/groups{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of group objects in a term store. + * Collection of all groups available in the term store. * @return a {@link GroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public GroupCollectionResponse get() { return get(null); } /** - * Get a list of group objects in a term store. + * Collection of all groups available in the term store. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public GroupCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public GroupCollectionResponse get(@jakarta.annotation.Nullable final java.util. return this.requestAdapter.send(requestInfo, errorMapping, GroupCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new group object in a term store. + * Create new navigation property to groups for groups * @param body The request body * @return a {@link Group} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Group post(@jakarta.annotation.Nonnull final Group body) { return post(body, null); } /** - * Create a new group object in a term store. + * Create new navigation property to groups for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Group} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Group post(@jakarta.annotation.Nonnull final Group body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public Group post(@jakarta.annotation.Nonnull final Group body, @jakarta.annotat return this.requestAdapter.send(requestInfo, errorMapping, Group::createFromDiscriminatorValue); } /** - * Get a list of group objects in a term store. + * Collection of all groups available in the term store. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of group objects in a term store. + * Collection of all groups available in the term store. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new group object in a term store. + * Create new navigation property to groups for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new group object in a term store. + * Create new navigation property to groups for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public GroupsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw return new GroupsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of group objects in a term store. + * Collection of all groups available in the term store. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/groups/item/GroupItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/groups/item/GroupItemRequestBuilder.java index 57a743b310d..bf57fba7ee8 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/groups/item/GroupItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/groups/item/GroupItemRequestBuilder.java @@ -46,18 +46,16 @@ public GroupItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/termStores/{store%2Did}/groups/{group%2Did1}{?%24expand,%24select}", rawUrl); } /** - * Delete a group object in a term [store]. + * Delete navigation property groups for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a group object in a term [store]. + * Delete navigation property groups for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a term store group object. + * Collection of all groups available in the term store. * @return a {@link Group} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Group get() { return get(null); } /** - * Read the properties and relationships of a term store group object. + * Collection of all groups available in the term store. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Group} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Group get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -115,7 +111,7 @@ public Group patch(@jakarta.annotation.Nonnull final Group body, @jakarta.annota return this.requestAdapter.send(requestInfo, errorMapping, Group::createFromDiscriminatorValue); } /** - * Delete a group object in a term [store]. + * Delete navigation property groups for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -123,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a group object in a term [store]. + * Delete navigation property groups for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -135,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a term store group object. + * Collection of all groups available in the term store. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a term store group object. + * Collection of all groups available in the term store. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -195,7 +191,7 @@ public GroupItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a term store group object. + * Collection of all groups available in the term store. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/groups/item/sets/SetsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/groups/item/sets/SetsRequestBuilder.java index 7077c785d13..af4a3794118 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/groups/item/sets/SetsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/groups/item/sets/SetsRequestBuilder.java @@ -60,21 +60,19 @@ public SetsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/termStores/{store%2Did}/groups/{group%2Did1}/sets{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the set objects and their properties. + * All sets under the group in a term [store]. * @return a {@link SetCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SetCollectionResponse get() { return get(null); } /** - * Get a list of the set objects and their properties. + * All sets under the group in a term [store]. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SetCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SetCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Set post(@jakarta.annotation.Nonnull final Set body, @jakarta.annotation. return this.requestAdapter.send(requestInfo, errorMapping, Set::createFromDiscriminatorValue); } /** - * Get a list of the set objects and their properties. + * All sets under the group in a term [store]. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the set objects and their properties. + * All sets under the group in a term [store]. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public SetsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr return new SetsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the set objects and their properties. + * All sets under the group in a term [store]. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/groups/item/sets/item/children/ChildrenRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/groups/item/sets/item/children/ChildrenRequestBuilder.java index 5a5575418b0..e642d241249 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/groups/item/sets/item/children/ChildrenRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/groups/item/sets/item/children/ChildrenRequestBuilder.java @@ -60,21 +60,19 @@ public ChildrenRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/termStores/{store%2Did}/groups/{group%2Did1}/sets/{set%2Did}/children{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermCollectionResponse get() { return get(null); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TermCollectionResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, TermCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new term object. + * Create new navigation property to children for groups * @param body The request body * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term post(@jakarta.annotation.Nonnull final Term body) { return post(body, null); } /** - * Create a new term object. + * Create new navigation property to children for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term post(@jakarta.annotation.Nonnull final Term body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public Term post(@jakarta.annotation.Nonnull final Term body, @jakarta.annotatio return this.requestAdapter.send(requestInfo, errorMapping, Term::createFromDiscriminatorValue); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new term object. + * Create new navigation property to children for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new term object. + * Create new navigation property to children for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ChildrenRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new ChildrenRequestBuilder(rawUrl, requestAdapter); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/groups/item/sets/item/relations/RelationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/groups/item/sets/item/relations/RelationsRequestBuilder.java index e0eccbfd011..e2e38726121 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/groups/item/sets/item/relations/RelationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/groups/item/sets/item/relations/RelationsRequestBuilder.java @@ -60,21 +60,19 @@ public RelationsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/termStores/{store%2Did}/groups/{group%2Did1}/sets/{set%2Did}/relations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @return a {@link RelationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RelationCollectionResponse get() { return get(null); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RelationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RelationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Relation post(@jakarta.annotation.Nonnull final Relation body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, Relation::createFromDiscriminatorValue); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public RelationsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new RelationsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/groups/item/sets/item/terms/TermsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/groups/item/sets/item/terms/TermsRequestBuilder.java index 17c2f9e7de9..453cdd27efa 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/groups/item/sets/item/terms/TermsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/groups/item/sets/item/terms/TermsRequestBuilder.java @@ -60,7 +60,7 @@ public TermsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/termStores/{store%2Did}/groups/{group%2Did1}/sets/{set%2Did}/terms{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public TermCollectionResponse get() { return get(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public Term post(@jakarta.annotation.Nonnull final Term body, @jakarta.annotatio return this.requestAdapter.send(requestInfo, errorMapping, Term::createFromDiscriminatorValue); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public TermsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new TermsRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/groups/item/sets/item/terms/item/TermItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/groups/item/sets/item/terms/item/TermItemRequestBuilder.java index 54fe4b0a1c6..8d0b78197f4 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/groups/item/sets/item/terms/item/TermItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/groups/item/sets/item/terms/item/TermItemRequestBuilder.java @@ -64,18 +64,16 @@ public TermItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/termStores/{store%2Did}/groups/{group%2Did1}/sets/{set%2Did}/terms/{term%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a term object. + * Delete navigation property terms for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a term object. + * Delete navigation property terms for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -84,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term get() { return get(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,23 +104,21 @@ public Term get(@jakarta.annotation.Nullable final java.util.function.ConsumerFind more info here */ @jakarta.annotation.Nullable public Term patch(@jakarta.annotation.Nonnull final Term body) { return patch(body, null); } /** - * Update the properties of a term object. + * Update the navigation property terms in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term patch(@jakarta.annotation.Nonnull final Term body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +129,7 @@ public Term patch(@jakarta.annotation.Nonnull final Term body, @jakarta.annotati return this.requestAdapter.send(requestInfo, errorMapping, Term::createFromDiscriminatorValue); } /** - * Delete a term object. + * Delete navigation property terms for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +137,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a term object. + * Delete navigation property terms for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -163,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -175,7 +169,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a term object. + * Update the navigation property terms in groups * @param body The request body * @return a {@link RequestInformation} */ @@ -184,7 +178,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a term object. + * Update the navigation property terms in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -215,7 +209,7 @@ public TermItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a term object. + * All the terms under the set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/SetsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/SetsRequestBuilder.java index 1960195c25c..ae0ebb34234 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/SetsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/SetsRequestBuilder.java @@ -60,7 +60,7 @@ public SetsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/termStores/{store%2Did}/sets{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Read the properties and relationships of a set object. + * Collection of all sets available in the term store. This relationship can only be used to load a specific term set. * @return a {@link SetCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public SetCollectionResponse get() { return get(null); } /** - * Read the properties and relationships of a set object. + * Collection of all sets available in the term store. This relationship can only be used to load a specific term set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SetCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -82,23 +82,21 @@ public SetCollectionResponse get(@jakarta.annotation.Nullable final java.util.fu return this.requestAdapter.send(requestInfo, errorMapping, SetCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new set object. + * Create new navigation property to sets for groups * @param body The request body * @return a {@link Set} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Set post(@jakarta.annotation.Nonnull final Set body) { return post(body, null); } /** - * Create a new set object. + * Create new navigation property to sets for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Set} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Set post(@jakarta.annotation.Nonnull final Set body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Set post(@jakarta.annotation.Nonnull final Set body, @jakarta.annotation. return this.requestAdapter.send(requestInfo, errorMapping, Set::createFromDiscriminatorValue); } /** - * Read the properties and relationships of a set object. + * Collection of all sets available in the term store. This relationship can only be used to load a specific term set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a set object. + * Collection of all sets available in the term store. This relationship can only be used to load a specific term set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -129,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new set object. + * Create new navigation property to sets for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -138,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new set object. + * Create new navigation property to sets for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -163,7 +161,7 @@ public SetsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr return new SetsRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of a set object. + * Collection of all sets available in the term store. This relationship can only be used to load a specific term set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/item/SetItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/item/SetItemRequestBuilder.java index bff53f588a2..cebd2e854f3 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/item/SetItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/item/SetItemRequestBuilder.java @@ -73,18 +73,16 @@ public SetItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/termStores/{store%2Did}/sets/{set%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a set object. + * Delete navigation property sets for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a set object. + * Delete navigation property sets for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -93,21 +91,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a set object. + * Collection of all sets available in the term store. This relationship can only be used to load a specific term set. * @return a {@link Set} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Set get() { return get(null); } /** - * Read the properties and relationships of a set object. + * Collection of all sets available in the term store. This relationship can only be used to load a specific term set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Set} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Set get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,23 +113,21 @@ public Set get(@jakarta.annotation.Nullable final java.util.function.ConsumerFind more info here */ @jakarta.annotation.Nullable public Set patch(@jakarta.annotation.Nonnull final Set body) { return patch(body, null); } /** - * Update the properties of a set object. + * Update the navigation property sets in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Set} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Set patch(@jakarta.annotation.Nonnull final Set body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -144,7 +138,7 @@ public Set patch(@jakarta.annotation.Nonnull final Set body, @jakarta.annotation return this.requestAdapter.send(requestInfo, errorMapping, Set::createFromDiscriminatorValue); } /** - * Delete a set object. + * Delete navigation property sets for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -152,7 +146,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a set object. + * Delete navigation property sets for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -164,7 +158,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a set object. + * Collection of all sets available in the term store. This relationship can only be used to load a specific term set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -172,7 +166,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a set object. + * Collection of all sets available in the term store. This relationship can only be used to load a specific term set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +178,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a set object. + * Update the navigation property sets in groups * @param body The request body * @return a {@link RequestInformation} */ @@ -193,7 +187,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a set object. + * Update the navigation property sets in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -224,7 +218,7 @@ public SetItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a set object. + * Collection of all sets available in the term store. This relationship can only be used to load a specific term set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/item/children/ChildrenRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/item/children/ChildrenRequestBuilder.java index 1600ed5861a..9559e8cf3da 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/item/children/ChildrenRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/item/children/ChildrenRequestBuilder.java @@ -60,21 +60,19 @@ public ChildrenRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/termStores/{store%2Did}/sets/{set%2Did}/children{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermCollectionResponse get() { return get(null); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TermCollectionResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, TermCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new term object. + * Create new navigation property to children for groups * @param body The request body * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term post(@jakarta.annotation.Nonnull final Term body) { return post(body, null); } /** - * Create a new term object. + * Create new navigation property to children for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term post(@jakarta.annotation.Nonnull final Term body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public Term post(@jakarta.annotation.Nonnull final Term body, @jakarta.annotatio return this.requestAdapter.send(requestInfo, errorMapping, Term::createFromDiscriminatorValue); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new term object. + * Create new navigation property to children for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new term object. + * Create new navigation property to children for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ChildrenRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new ChildrenRequestBuilder(rawUrl, requestAdapter); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/item/parentgroup/sets/SetsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/item/parentgroup/sets/SetsRequestBuilder.java index 5030715185c..d5dad2deea7 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/item/parentgroup/sets/SetsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/item/parentgroup/sets/SetsRequestBuilder.java @@ -60,21 +60,19 @@ public SetsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/termStores/{store%2Did}/sets/{set%2Did}/parentGroup/sets{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the set objects and their properties. + * All sets under the group in a term [store]. * @return a {@link SetCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SetCollectionResponse get() { return get(null); } /** - * Get a list of the set objects and their properties. + * All sets under the group in a term [store]. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SetCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SetCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Set post(@jakarta.annotation.Nonnull final Set body, @jakarta.annotation. return this.requestAdapter.send(requestInfo, errorMapping, Set::createFromDiscriminatorValue); } /** - * Get a list of the set objects and their properties. + * All sets under the group in a term [store]. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the set objects and their properties. + * All sets under the group in a term [store]. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public SetsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr return new SetsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the set objects and their properties. + * All sets under the group in a term [store]. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/item/parentgroup/sets/item/children/ChildrenRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/item/parentgroup/sets/item/children/ChildrenRequestBuilder.java index aaeddcd4ef0..5b45321d00e 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/item/parentgroup/sets/item/children/ChildrenRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/item/parentgroup/sets/item/children/ChildrenRequestBuilder.java @@ -60,21 +60,19 @@ public ChildrenRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/termStores/{store%2Did}/sets/{set%2Did}/parentGroup/sets/{set%2Did1}/children{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermCollectionResponse get() { return get(null); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TermCollectionResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, TermCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new term object. + * Create new navigation property to children for groups * @param body The request body * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term post(@jakarta.annotation.Nonnull final Term body) { return post(body, null); } /** - * Create a new term object. + * Create new navigation property to children for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term post(@jakarta.annotation.Nonnull final Term body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public Term post(@jakarta.annotation.Nonnull final Term body, @jakarta.annotatio return this.requestAdapter.send(requestInfo, errorMapping, Term::createFromDiscriminatorValue); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new term object. + * Create new navigation property to children for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new term object. + * Create new navigation property to children for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ChildrenRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new ChildrenRequestBuilder(rawUrl, requestAdapter); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/item/parentgroup/sets/item/relations/RelationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/item/parentgroup/sets/item/relations/RelationsRequestBuilder.java index db1927a1f83..056b4dd78c4 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/item/parentgroup/sets/item/relations/RelationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/item/parentgroup/sets/item/relations/RelationsRequestBuilder.java @@ -60,21 +60,19 @@ public RelationsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/termStores/{store%2Did}/sets/{set%2Did}/parentGroup/sets/{set%2Did1}/relations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @return a {@link RelationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RelationCollectionResponse get() { return get(null); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RelationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RelationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Relation post(@jakarta.annotation.Nonnull final Relation body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, Relation::createFromDiscriminatorValue); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public RelationsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new RelationsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/item/parentgroup/sets/item/terms/TermsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/item/parentgroup/sets/item/terms/TermsRequestBuilder.java index 9e9824314bd..812cf434d7b 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/item/parentgroup/sets/item/terms/TermsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/item/parentgroup/sets/item/terms/TermsRequestBuilder.java @@ -60,7 +60,7 @@ public TermsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/termStores/{store%2Did}/sets/{set%2Did}/parentGroup/sets/{set%2Did1}/terms{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public TermCollectionResponse get() { return get(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public Term post(@jakarta.annotation.Nonnull final Term body, @jakarta.annotatio return this.requestAdapter.send(requestInfo, errorMapping, Term::createFromDiscriminatorValue); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public TermsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new TermsRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/item/parentgroup/sets/item/terms/item/TermItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/item/parentgroup/sets/item/terms/item/TermItemRequestBuilder.java index 3fa03669870..69eb689f5d4 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/item/parentgroup/sets/item/terms/item/TermItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/item/parentgroup/sets/item/terms/item/TermItemRequestBuilder.java @@ -64,18 +64,16 @@ public TermItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/termStores/{store%2Did}/sets/{set%2Did}/parentGroup/sets/{set%2Did1}/terms/{term%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a term object. + * Delete navigation property terms for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a term object. + * Delete navigation property terms for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -84,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term get() { return get(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,23 +104,21 @@ public Term get(@jakarta.annotation.Nullable final java.util.function.ConsumerFind more info here */ @jakarta.annotation.Nullable public Term patch(@jakarta.annotation.Nonnull final Term body) { return patch(body, null); } /** - * Update the properties of a term object. + * Update the navigation property terms in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term patch(@jakarta.annotation.Nonnull final Term body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +129,7 @@ public Term patch(@jakarta.annotation.Nonnull final Term body, @jakarta.annotati return this.requestAdapter.send(requestInfo, errorMapping, Term::createFromDiscriminatorValue); } /** - * Delete a term object. + * Delete navigation property terms for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +137,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a term object. + * Delete navigation property terms for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -163,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -175,7 +169,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a term object. + * Update the navigation property terms in groups * @param body The request body * @return a {@link RequestInformation} */ @@ -184,7 +178,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a term object. + * Update the navigation property terms in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -215,7 +209,7 @@ public TermItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a term object. + * All the terms under the set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/item/relations/RelationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/item/relations/RelationsRequestBuilder.java index 92d50717688..2d0f21f74a5 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/item/relations/RelationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/item/relations/RelationsRequestBuilder.java @@ -60,21 +60,19 @@ public RelationsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/termStores/{store%2Did}/sets/{set%2Did}/relations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @return a {@link RelationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RelationCollectionResponse get() { return get(null); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RelationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RelationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Relation post(@jakarta.annotation.Nonnull final Relation body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, Relation::createFromDiscriminatorValue); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public RelationsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new RelationsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/item/terms/TermsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/item/terms/TermsRequestBuilder.java index c9b34223ca1..6151d211a21 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/item/terms/TermsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/item/terms/TermsRequestBuilder.java @@ -60,7 +60,7 @@ public TermsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/termStores/{store%2Did}/sets/{set%2Did}/terms{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public TermCollectionResponse get() { return get(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public Term post(@jakarta.annotation.Nonnull final Term body, @jakarta.annotatio return this.requestAdapter.send(requestInfo, errorMapping, Term::createFromDiscriminatorValue); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public TermsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new TermsRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/item/terms/item/TermItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/item/terms/item/TermItemRequestBuilder.java index d18e7612e5d..b8395b15663 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/item/terms/item/TermItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/sites/item/termstores/item/sets/item/terms/item/TermItemRequestBuilder.java @@ -64,18 +64,16 @@ public TermItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/groups/{group%2Did}/sites/{site%2Did}/termStores/{store%2Did}/sets/{set%2Did}/terms/{term%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a term object. + * Delete navigation property terms for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a term object. + * Delete navigation property terms for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -84,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term get() { return get(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,23 +104,21 @@ public Term get(@jakarta.annotation.Nullable final java.util.function.ConsumerFind more info here */ @jakarta.annotation.Nullable public Term patch(@jakarta.annotation.Nonnull final Term body) { return patch(body, null); } /** - * Update the properties of a term object. + * Update the navigation property terms in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term patch(@jakarta.annotation.Nonnull final Term body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +129,7 @@ public Term patch(@jakarta.annotation.Nonnull final Term body, @jakarta.annotati return this.requestAdapter.send(requestInfo, errorMapping, Term::createFromDiscriminatorValue); } /** - * Delete a term object. + * Delete navigation property terms for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +137,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a term object. + * Delete navigation property terms for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -163,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -175,7 +169,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a term object. + * Update the navigation property terms in groups * @param body The request body * @return a {@link RequestInformation} */ @@ -184,7 +178,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a term object. + * Update the navigation property terms in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -215,7 +209,7 @@ public TermItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a term object. + * All the terms under the set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/allchannels/AllChannelsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/allchannels/AllChannelsRequestBuilder.java index 74955537645..7e5dfb62827 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/allchannels/AllChannelsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/allchannels/AllChannelsRequestBuilder.java @@ -59,21 +59,19 @@ public AllChannelsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/allChannels{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of channels either in this team or shared with this team (incoming channels). + * List of channels either hosted in or shared with the team (incoming channels). * @return a {@link ChannelCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChannelCollectionResponse get() { return get(null); } /** - * Get the list of channels either in this team or shared with this team (incoming channels). + * List of channels either hosted in or shared with the team (incoming channels). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChannelCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChannelCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public ChannelCollectionResponse get(@jakarta.annotation.Nullable final java.uti return this.requestAdapter.send(requestInfo, errorMapping, ChannelCollectionResponse::createFromDiscriminatorValue); } /** - * Get the list of channels either in this team or shared with this team (incoming channels). + * List of channels either hosted in or shared with the team (incoming channels). * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of channels either in this team or shared with this team (incoming channels). + * List of channels either hosted in or shared with the team (incoming channels). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public AllChannelsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AllChannelsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of channels either in this team or shared with this team (incoming channels). + * List of channels either hosted in or shared with the team (incoming channels). */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/ChannelsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/ChannelsRequestBuilder.java index 656813a35d0..187b6777499 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/ChannelsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/ChannelsRequestBuilder.java @@ -69,21 +69,19 @@ public ChannelsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/channels{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of channels in this team. + * The collection of channels and messages associated with the team. * @return a {@link ChannelCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChannelCollectionResponse get() { return get(null); } /** - * Retrieve the list of channels in this team. + * The collection of channels and messages associated with the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChannelCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChannelCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public ChannelCollectionResponse get(@jakarta.annotation.Nullable final java.uti return this.requestAdapter.send(requestInfo, errorMapping, ChannelCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new channel in a team, as specified in the request body. When you create a channel, the maximum length of the channel's displayName is 50 characters. This is the name that appears to the user in Microsoft Teams. If you're creating a private channel, you can add a maximum of 200 members. + * Create new navigation property to channels for groups * @param body The request body * @return a {@link Channel} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Channel post(@jakarta.annotation.Nonnull final Channel body) { return post(body, null); } /** - * Create a new channel in a team, as specified in the request body. When you create a channel, the maximum length of the channel's displayName is 50 characters. This is the name that appears to the user in Microsoft Teams. If you're creating a private channel, you can add a maximum of 200 members. + * Create new navigation property to channels for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Channel} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Channel post(@jakarta.annotation.Nonnull final Channel body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public Channel post(@jakarta.annotation.Nonnull final Channel body, @jakarta.ann return this.requestAdapter.send(requestInfo, errorMapping, Channel::createFromDiscriminatorValue); } /** - * Retrieve the list of channels in this team. + * The collection of channels and messages associated with the team. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of channels in this team. + * The collection of channels and messages associated with the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new channel in a team, as specified in the request body. When you create a channel, the maximum length of the channel's displayName is 50 characters. This is the name that appears to the user in Microsoft Teams. If you're creating a private channel, you can add a maximum of 200 members. + * Create new navigation property to channels for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new channel in a team, as specified in the request body. When you create a channel, the maximum length of the channel's displayName is 50 characters. This is the name that appears to the user in Microsoft Teams. If you're creating a private channel, you can add a maximum of 200 members. + * Create new navigation property to channels for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public ChannelsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new ChannelsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of channels in this team. + * The collection of channels and messages associated with the team. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/getallmessages/GetAllMessagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/getallmessages/GetAllMessagesRequestBuilder.java index edabe6a3877..71723853cd9 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/getallmessages/GetAllMessagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/getallmessages/GetAllMessagesRequestBuilder.java @@ -36,19 +36,21 @@ public GetAllMessagesRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/channels/getAllMessages(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top,model*}", rawUrl); } /** - * Invoke function getAllMessages + * Retrieve messages across all channels in a team, including text, audio, and video conversations. To learn more about how to use the Microsoft Teams export APIs to export content, see Export content with the Microsoft Teams export APIs. * @return a {@link GetAllMessagesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetAllMessagesGetResponse get() { return get(null); } /** - * Invoke function getAllMessages + * Retrieve messages across all channels in a team, including text, audio, and video conversations. To learn more about how to use the Microsoft Teams export APIs to export content, see Export content with the Microsoft Teams export APIs. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GetAllMessagesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetAllMessagesGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public GetAllMessagesGetResponse get(@jakarta.annotation.Nullable final java.uti return this.requestAdapter.send(requestInfo, errorMapping, GetAllMessagesGetResponse::createFromDiscriminatorValue); } /** - * Invoke function getAllMessages + * Retrieve messages across all channels in a team, including text, audio, and video conversations. To learn more about how to use the Microsoft Teams export APIs to export content, see Export content with the Microsoft Teams export APIs. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getAllMessages + * Retrieve messages across all channels in a team, including text, audio, and video conversations. To learn more about how to use the Microsoft Teams export APIs to export content, see Export content with the Microsoft Teams export APIs. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public GetAllMessagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new GetAllMessagesRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function getAllMessages + * Retrieve messages across all channels in a team, including text, audio, and video conversations. To learn more about how to use the Microsoft Teams export APIs to export content, see Export content with the Microsoft Teams export APIs. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/ChannelItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/ChannelItemRequestBuilder.java index 5c1c6eca03f..ce51cf20cb7 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/ChannelItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/ChannelItemRequestBuilder.java @@ -118,18 +118,16 @@ public ChannelItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/channels/{channel%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete the channel. + * Delete navigation property channels for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete the channel. + * Delete navigation property channels for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -138,21 +136,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve channel information. + * The collection of channels and messages associated with the team. * @return a {@link Channel} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Channel get() { return get(null); } /** - * Retrieve the properties and relationships of a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve channel information. + * The collection of channels and messages associated with the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Channel} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Channel get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -162,23 +158,21 @@ public Channel get(@jakarta.annotation.Nullable final java.util.function.Consume return this.requestAdapter.send(requestInfo, errorMapping, Channel::createFromDiscriminatorValue); } /** - * Update the properties of the specified channel. + * Update the navigation property channels in groups * @param body The request body * @return a {@link Channel} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Channel patch(@jakarta.annotation.Nonnull final Channel body) { return patch(body, null); } /** - * Update the properties of the specified channel. + * Update the navigation property channels in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Channel} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Channel patch(@jakarta.annotation.Nonnull final Channel body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -189,7 +183,7 @@ public Channel patch(@jakarta.annotation.Nonnull final Channel body, @jakarta.an return this.requestAdapter.send(requestInfo, errorMapping, Channel::createFromDiscriminatorValue); } /** - * Delete the channel. + * Delete navigation property channels for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -197,7 +191,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete the channel. + * Delete navigation property channels for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -209,7 +203,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve channel information. + * The collection of channels and messages associated with the team. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -217,7 +211,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve channel information. + * The collection of channels and messages associated with the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -229,7 +223,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of the specified channel. + * Update the navigation property channels in groups * @param body The request body * @return a {@link RequestInformation} */ @@ -238,7 +232,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of the specified channel. + * Update the navigation property channels in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -269,7 +263,7 @@ public ChannelItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve channel information. + * The collection of channels and messages associated with the team. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/doesuserhaveaccessuseriduseridtenantidtenantiduserprincipalnameuserprincipalname/DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/doesuserhaveaccessuseriduseridtenantidtenantiduserprincipalnameuserprincipalname/DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameRequestBuilder.java index 5dfed2cb620..b5247a327b5 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/doesuserhaveaccessuseriduseridtenantidtenantiduserprincipalnameuserprincipalname/DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/doesuserhaveaccessuseriduseridtenantidtenantiduserprincipalnameuserprincipalname/DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameRequestBuilder.java @@ -36,19 +36,21 @@ public DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrinci super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/channels/{channel%2Did}/doesUserHaveAccess(userId='@userId',tenantId='@tenantId',userPrincipalName='@userPrincipalName'){?tenantId*,userId*,userPrincipalName*}", rawUrl); } /** - * Invoke function doesUserHaveAccess + * Determine whether a user has access to a shared channel. * @return a {@link DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameGetResponse get() { return get(null); } /** - * Invoke function doesUserHaveAccess + * Determine whether a user has access to a shared channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrinci return this.requestAdapter.send(requestInfo, errorMapping, DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameGetResponse::createFromDiscriminatorValue); } /** - * Invoke function doesUserHaveAccess + * Determine whether a user has access to a shared channel. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function doesUserHaveAccess + * Determine whether a user has access to a shared channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrinci return new DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function doesUserHaveAccess + * Determine whether a user has access to a shared channel. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/filesfolder/FilesFolderRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/filesfolder/FilesFolderRequestBuilder.java index 06fcb7a85ce..9e866faebf2 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/filesfolder/FilesFolderRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/filesfolder/FilesFolderRequestBuilder.java @@ -46,21 +46,19 @@ public FilesFolderRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/channels/{channel%2Did}/filesFolder{?%24expand,%24select}", rawUrl); } /** - * Get the metadata for the location where the files of a channel are stored. + * Metadata for the location where the channel's files are stored. * @return a {@link DriveItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DriveItem get() { return get(null); } /** - * Get the metadata for the location where the files of a channel are stored. + * Metadata for the location where the channel's files are stored. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DriveItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DriveItem get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -70,7 +68,7 @@ public DriveItem get(@jakarta.annotation.Nullable final java.util.function.Consu return this.requestAdapter.send(requestInfo, errorMapping, DriveItem::createFromDiscriminatorValue); } /** - * Get the metadata for the location where the files of a channel are stored. + * Metadata for the location where the channel's files are stored. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -78,7 +76,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the metadata for the location where the files of a channel are stored. + * Metadata for the location where the channel's files are stored. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -100,7 +98,7 @@ public FilesFolderRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new FilesFolderRequestBuilder(rawUrl, requestAdapter); } /** - * Get the metadata for the location where the files of a channel are stored. + * Metadata for the location where the channel's files are stored. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/filesfolder/content/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/filesfolder/content/ContentRequestBuilder.java index d28624df103..f2e58345d42 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/filesfolder/content/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/filesfolder/content/ContentRequestBuilder.java @@ -41,7 +41,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * The content stream, if the item represents a file. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -52,7 +51,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/members/MembersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/members/MembersRequestBuilder.java index 60fc87b2320..cb3f9c9c432 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/members/MembersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/members/MembersRequestBuilder.java @@ -69,21 +69,19 @@ public MembersRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/channels/{channel%2Did}/members{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of conversationMembers from a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve the channel member list. + * A collection of membership records associated with the channel. * @return a {@link ConversationMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMemberCollectionResponse get() { return get(null); } /** - * Retrieve a list of conversationMembers from a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve the channel member list. + * A collection of membership records associated with the channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMemberCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public ConversationMemberCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, ConversationMemberCollectionResponse::createFromDiscriminatorValue); } /** - * Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Create new navigation property to members for groups * @param body The request body * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember post(@jakarta.annotation.Nonnull final ConversationMember body) { return post(body, null); } /** - * Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Create new navigation property to members for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember post(@jakarta.annotation.Nonnull final ConversationMember body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public ConversationMember post(@jakarta.annotation.Nonnull final ConversationMem return this.requestAdapter.send(requestInfo, errorMapping, ConversationMember::createFromDiscriminatorValue); } /** - * Retrieve a list of conversationMembers from a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve the channel member list. + * A collection of membership records associated with the channel. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of conversationMembers from a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve the channel member list. + * A collection of membership records associated with the channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Create new navigation property to members for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Create new navigation property to members for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public MembersRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new MembersRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of conversationMembers from a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve the channel member list. + * A collection of membership records associated with the channel. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/members/item/ConversationMemberItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/members/item/ConversationMemberItemRequestBuilder.java index c176721e95b..66fec3c4d59 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/members/item/ConversationMemberItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/members/item/ConversationMemberItemRequestBuilder.java @@ -37,18 +37,16 @@ public ConversationMemberItemRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/channels/{channel%2Did}/members/{conversationMember%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Delete navigation property members for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Delete navigation property members for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get a conversationMember from a channel. + * A collection of membership records associated with the channel. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember get() { return get(null); } /** - * Get a conversationMember from a channel. + * A collection of membership records associated with the channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public ConversationMember get(@jakarta.annotation.Nullable final java.util.funct return this.requestAdapter.send(requestInfo, errorMapping, ConversationMember::createFromDiscriminatorValue); } /** - * Update the role of a conversationMember in a team or channel. + * Update the navigation property members in groups * @param body The request body * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember patch(@jakarta.annotation.Nonnull final ConversationMember body) { return patch(body, null); } /** - * Update the role of a conversationMember in a team or channel. + * Update the navigation property members in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember patch(@jakarta.annotation.Nonnull final ConversationMember body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public ConversationMember patch(@jakarta.annotation.Nonnull final ConversationMe return this.requestAdapter.send(requestInfo, errorMapping, ConversationMember::createFromDiscriminatorValue); } /** - * Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Delete navigation property members for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Delete navigation property members for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get a conversationMember from a channel. + * A collection of membership records associated with the channel. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a conversationMember from a channel. + * A collection of membership records associated with the channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the role of a conversationMember in a team or channel. + * Update the navigation property members in groups * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the role of a conversationMember in a team or channel. + * Update the navigation property members in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public ConversationMemberItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get a conversationMember from a channel. + * A collection of membership records associated with the channel. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/MessagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/MessagesRequestBuilder.java index 2ebc961123c..c84a3b1cd33 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/MessagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/MessagesRequestBuilder.java @@ -69,21 +69,19 @@ public MessagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/channels/{channel%2Did}/messages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of messages (without the replies) in a channel of a team. To get the replies for a message, call the list message replies or the get message reply API. This method supports federation. To list channel messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the channel. A navigation property. Nullable. * @return a {@link ChatMessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageCollectionResponse get() { return get(null); } /** - * Retrieve the list of messages (without the replies) in a channel of a team. To get the replies for a message, call the list message replies or the get message reply API. This method supports federation. To list channel messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the channel. A navigation property. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public ChatMessageCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, ChatMessageCollectionResponse::createFromDiscriminatorValue); } /** - * Send a new chatMessage in the specified channel or a chat. + * Create new navigation property to messages for groups * @param body The request body * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body) { return post(body, null); } /** - * Send a new chatMessage in the specified channel or a chat. + * Create new navigation property to messages for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body, @jak return this.requestAdapter.send(requestInfo, errorMapping, ChatMessage::createFromDiscriminatorValue); } /** - * Retrieve the list of messages (without the replies) in a channel of a team. To get the replies for a message, call the list message replies or the get message reply API. This method supports federation. To list channel messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the channel. A navigation property. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of messages (without the replies) in a channel of a team. To get the replies for a message, call the list message replies or the get message reply API. This method supports federation. To list channel messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the channel. A navigation property. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Send a new chatMessage in the specified channel or a chat. + * Create new navigation property to messages for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Send a new chatMessage in the specified channel or a chat. + * Create new navigation property to messages for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public MessagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new MessagesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of messages (without the replies) in a channel of a team. To get the replies for a message, call the list message replies or the get message reply API. This method supports federation. To list channel messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the channel. A navigation property. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/delta/DeltaRequestBuilder.java index 3000584eac5..fa553b9d930 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/channels/{channel%2Did}/messages/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/item/ChatMessageItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/item/ChatMessageItemRequestBuilder.java index 7513028e7bd..05bdee2c4e8 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/item/ChatMessageItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/item/ChatMessageItemRequestBuilder.java @@ -109,21 +109,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the channel. A navigation property. Nullable. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage get() { return get(null); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the channel. A navigation property. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,23 +131,21 @@ public ChatMessage get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.send(requestInfo, errorMapping, ChatMessage::createFromDiscriminatorValue); } /** - * Update a chatMessage object. Except for the policyViolation property, all properties of a chatMessage can be updated in delegated permissions scenarios.Only the policyViolation property of a chatMessage can be updated in application permissions scenarios. The update only works for chats where members are Microsoft Teams users. If one of the participants is using Skype, the operation fails. This method doesn't support federation. Only the user in the tenant who sent the message can perform data loss prevention (DLP) updates on the specified chat message. + * Update the navigation property messages in groups * @param body The request body * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage patch(@jakarta.annotation.Nonnull final ChatMessage body) { return patch(body, null); } /** - * Update a chatMessage object. Except for the policyViolation property, all properties of a chatMessage can be updated in delegated permissions scenarios.Only the policyViolation property of a chatMessage can be updated in application permissions scenarios. The update only works for chats where members are Microsoft Teams users. If one of the participants is using Skype, the operation fails. This method doesn't support federation. Only the user in the tenant who sent the message can perform data loss prevention (DLP) updates on the specified chat message. + * Update the navigation property messages in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage patch(@jakarta.annotation.Nonnull final ChatMessage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -180,7 +176,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the channel. A navigation property. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -188,7 +184,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the channel. A navigation property. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -200,7 +196,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update a chatMessage object. Except for the policyViolation property, all properties of a chatMessage can be updated in delegated permissions scenarios.Only the policyViolation property of a chatMessage can be updated in application permissions scenarios. The update only works for chats where members are Microsoft Teams users. If one of the participants is using Skype, the operation fails. This method doesn't support federation. Only the user in the tenant who sent the message can perform data loss prevention (DLP) updates on the specified chat message. + * Update the navigation property messages in groups * @param body The request body * @return a {@link RequestInformation} */ @@ -209,7 +205,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update a chatMessage object. Except for the policyViolation property, all properties of a chatMessage can be updated in delegated permissions scenarios.Only the policyViolation property of a chatMessage can be updated in application permissions scenarios. The update only works for chats where members are Microsoft Teams users. If one of the participants is using Skype, the operation fails. This method doesn't support federation. Only the user in the tenant who sent the message can perform data loss prevention (DLP) updates on the specified chat message. + * Update the navigation property messages in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -240,7 +236,7 @@ public ChatMessageItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final S public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the channel. A navigation property. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/item/hostedcontents/HostedContentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/item/hostedcontents/HostedContentsRequestBuilder.java index e220b8e3860..db2d7b64550 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/item/hostedcontents/HostedContentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/item/hostedcontents/HostedContentsRequestBuilder.java @@ -60,21 +60,19 @@ public HostedContentsRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/channels/{channel%2Did}/messages/{chatMessage%2Did}/hostedContents{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link ChatMessageHostedContentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContentCollectionResponse get() { return get(null); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageHostedContentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ChatMessageHostedContent post(@jakarta.annotation.Nonnull final ChatMessa return this.requestAdapter.send(requestInfo, errorMapping, ChatMessageHostedContent::createFromDiscriminatorValue); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public HostedContentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new HostedContentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java index 473f1740ba9..84b9a3f3421 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link ChatMessageHostedContent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContent get() { return get(null); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageHostedContent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContent get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public ChatMessageHostedContentItemRequestBuilder withUrl(@jakarta.annotation.No public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/item/hostedcontents/item/value/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/item/hostedcontents/item/value/ContentRequestBuilder.java index face2bbf77a..af5934a6c22 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/item/hostedcontents/item/value/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/item/hostedcontents/item/value/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * Get media content for the navigation property hostedContents from groups * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/item/replies/RepliesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/item/replies/RepliesRequestBuilder.java index ad1d820ee41..d529849499e 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/item/replies/RepliesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/item/replies/RepliesRequestBuilder.java @@ -69,21 +69,19 @@ public RepliesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/channels/{channel%2Did}/messages/{chatMessage%2Did}/replies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. * @return a {@link ChatMessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageCollectionResponse get() { return get(null); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public ChatMessageCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, ChatMessageCollectionResponse::createFromDiscriminatorValue); } /** - * Send a new reply to a chatMessage in a specified channel. + * Create new navigation property to replies for groups * @param body The request body * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body) { return post(body, null); } /** - * Send a new reply to a chatMessage in a specified channel. + * Create new navigation property to replies for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body, @jak return this.requestAdapter.send(requestInfo, errorMapping, ChatMessage::createFromDiscriminatorValue); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Send a new reply to a chatMessage in a specified channel. + * Create new navigation property to replies for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Send a new reply to a chatMessage in a specified channel. + * Create new navigation property to replies for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public RepliesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new RepliesRequestBuilder(rawUrl, requestAdapter); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/item/replies/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/item/replies/delta/DeltaRequestBuilder.java index c2ac336a165..a8e0e0cd25a 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/item/replies/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/item/replies/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/channels/{channel%2Did}/messages/{chatMessage%2Did}/replies/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/item/replies/item/ChatMessageItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/item/replies/item/ChatMessageItemRequestBuilder.java index 6ec44004daa..cbb557ed550 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/item/replies/item/ChatMessageItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/item/replies/item/ChatMessageItemRequestBuilder.java @@ -100,21 +100,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage get() { return get(null); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -169,7 +167,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -177,7 +175,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -229,7 +227,7 @@ public ChatMessageItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final S public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/item/replies/item/hostedcontents/HostedContentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/item/replies/item/hostedcontents/HostedContentsRequestBuilder.java index 6075623ce64..828e2f9387a 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/item/replies/item/hostedcontents/HostedContentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/item/replies/item/hostedcontents/HostedContentsRequestBuilder.java @@ -60,21 +60,19 @@ public HostedContentsRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/channels/{channel%2Did}/messages/{chatMessage%2Did}/replies/{chatMessage%2Did1}/hostedContents{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link ChatMessageHostedContentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContentCollectionResponse get() { return get(null); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageHostedContentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ChatMessageHostedContent post(@jakarta.annotation.Nonnull final ChatMessa return this.requestAdapter.send(requestInfo, errorMapping, ChatMessageHostedContent::createFromDiscriminatorValue); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public HostedContentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new HostedContentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/item/replies/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/item/replies/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java index adc6dfe22e4..23b2123d7f1 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/item/replies/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/item/replies/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link ChatMessageHostedContent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContent get() { return get(null); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageHostedContent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContent get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public ChatMessageHostedContentItemRequestBuilder withUrl(@jakarta.annotation.No public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/item/replies/item/hostedcontents/item/value/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/item/replies/item/hostedcontents/item/value/ContentRequestBuilder.java index a8ebc3f6637..ece3bb91438 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/item/replies/item/hostedcontents/item/value/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/messages/item/replies/item/hostedcontents/item/value/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * Get media content for the navigation property hostedContents from groups * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/sharedwithteams/SharedWithTeamsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/sharedwithteams/SharedWithTeamsRequestBuilder.java index 66399bfc95c..8564d675909 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/sharedwithteams/SharedWithTeamsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/sharedwithteams/SharedWithTeamsRequestBuilder.java @@ -60,21 +60,19 @@ public SharedWithTeamsRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/channels/{channel%2Did}/sharedWithTeams{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of teams that has been shared a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @return a {@link SharedWithChannelTeamInfoCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SharedWithChannelTeamInfoCollectionResponse get() { return get(null); } /** - * Get the list of teams that has been shared a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SharedWithChannelTeamInfoCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SharedWithChannelTeamInfoCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public SharedWithChannelTeamInfo post(@jakarta.annotation.Nonnull final SharedWi return this.requestAdapter.send(requestInfo, errorMapping, SharedWithChannelTeamInfo::createFromDiscriminatorValue); } /** - * Get the list of teams that has been shared a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of teams that has been shared a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public SharedWithTeamsRequestBuilder withUrl(@jakarta.annotation.Nonnull final S return new SharedWithTeamsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of teams that has been shared a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/sharedwithteams/item/SharedWithChannelTeamInfoItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/sharedwithteams/item/SharedWithChannelTeamInfoItemRequestBuilder.java index 6c3193c4195..3e5153012b3 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/sharedwithteams/item/SharedWithChannelTeamInfoItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/sharedwithteams/item/SharedWithChannelTeamInfoItemRequestBuilder.java @@ -55,18 +55,16 @@ public SharedWithChannelTeamInfoItemRequestBuilder(@jakarta.annotation.Nonnull f super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/channels/{channel%2Did}/sharedWithTeams/{sharedWithChannelTeamInfo%2Did}{?%24expand,%24select}", rawUrl); } /** - * Unshare a channel with a team by deleting the corresponding sharedWithChannelTeamInfo resource. This operation is allowed only for channels with a membershipType value of shared. + * Delete navigation property sharedWithTeams for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Unshare a channel with a team by deleting the corresponding sharedWithChannelTeamInfo resource. This operation is allowed only for channels with a membershipType value of shared. + * Delete navigation property sharedWithTeams for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -75,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get a team that has been shared with a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @return a {@link SharedWithChannelTeamInfo} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SharedWithChannelTeamInfo get() { return get(null); } /** - * Get a team that has been shared with a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SharedWithChannelTeamInfo} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SharedWithChannelTeamInfo get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +120,7 @@ public SharedWithChannelTeamInfo patch(@jakarta.annotation.Nonnull final SharedW return this.requestAdapter.send(requestInfo, errorMapping, SharedWithChannelTeamInfo::createFromDiscriminatorValue); } /** - * Unshare a channel with a team by deleting the corresponding sharedWithChannelTeamInfo resource. This operation is allowed only for channels with a membershipType value of shared. + * Delete navigation property sharedWithTeams for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +128,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Unshare a channel with a team by deleting the corresponding sharedWithChannelTeamInfo resource. This operation is allowed only for channels with a membershipType value of shared. + * Delete navigation property sharedWithTeams for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -144,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get a team that has been shared with a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -152,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a team that has been shared with a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -204,7 +200,7 @@ public SharedWithChannelTeamInfoItemRequestBuilder withUrl(@jakarta.annotation.N public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get a team that has been shared with a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/sharedwithteams/item/allowedmembers/AllowedMembersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/sharedwithteams/item/allowedmembers/AllowedMembersRequestBuilder.java index 43eb3320c1c..f5a8c1ffbd4 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/sharedwithteams/item/allowedmembers/AllowedMembersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/sharedwithteams/item/allowedmembers/AllowedMembersRequestBuilder.java @@ -59,21 +59,19 @@ public AllowedMembersRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/channels/{channel%2Did}/sharedWithTeams/{sharedWithChannelTeamInfo%2Did}/allowedMembers{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of conversationMembers who can access a shared channel. This method does not return the following conversationMembers from the team:- Users with Guest role- Users who are externally authenticated in the tenant + * A collection of team members who have access to the shared channel. * @return a {@link ConversationMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMemberCollectionResponse get() { return get(null); } /** - * Get the list of conversationMembers who can access a shared channel. This method does not return the following conversationMembers from the team:- Users with Guest role- Users who are externally authenticated in the tenant + * A collection of team members who have access to the shared channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMemberCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public ConversationMemberCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, ConversationMemberCollectionResponse::createFromDiscriminatorValue); } /** - * Get the list of conversationMembers who can access a shared channel. This method does not return the following conversationMembers from the team:- Users with Guest role- Users who are externally authenticated in the tenant + * A collection of team members who have access to the shared channel. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of conversationMembers who can access a shared channel. This method does not return the following conversationMembers from the team:- Users with Guest role- Users who are externally authenticated in the tenant + * A collection of team members who have access to the shared channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public AllowedMembersRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new AllowedMembersRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of conversationMembers who can access a shared channel. This method does not return the following conversationMembers from the team:- Users with Guest role- Users who are externally authenticated in the tenant + * A collection of team members who have access to the shared channel. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/tabs/TabsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/tabs/TabsRequestBuilder.java index 6376f4aaeff..d1c74bbfff3 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/tabs/TabsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/tabs/TabsRequestBuilder.java @@ -60,21 +60,19 @@ public TabsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/channels/{channel%2Did}/tabs{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of tabs in the specified channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @return a {@link TeamsTabCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTabCollectionResponse get() { return get(null); } /** - * Retrieve the list of tabs in the specified channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsTabCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTabCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TeamsTabCollectionResponse get(@jakarta.annotation.Nullable final java.ut return this.requestAdapter.send(requestInfo, errorMapping, TeamsTabCollectionResponse::createFromDiscriminatorValue); } /** - * Add (pin) a tab to the specified channel within a team. The app must be preinstalled in the team and have the configurableTabs property defined in the app manifest. + * Create new navigation property to tabs for groups * @param body The request body * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab post(@jakarta.annotation.Nonnull final TeamsTab body) { return post(body, null); } /** - * Add (pin) a tab to the specified channel within a team. The app must be preinstalled in the team and have the configurableTabs property defined in the app manifest. + * Create new navigation property to tabs for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab post(@jakarta.annotation.Nonnull final TeamsTab body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public TeamsTab post(@jakarta.annotation.Nonnull final TeamsTab body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, TeamsTab::createFromDiscriminatorValue); } /** - * Retrieve the list of tabs in the specified channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of tabs in the specified channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add (pin) a tab to the specified channel within a team. The app must be preinstalled in the team and have the configurableTabs property defined in the app manifest. + * Create new navigation property to tabs for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add (pin) a tab to the specified channel within a team. The app must be preinstalled in the team and have the configurableTabs property defined in the app manifest. + * Create new navigation property to tabs for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public TabsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr return new TabsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of tabs in the specified channel within a team. + * A collection of all the tabs in the channel. A navigation property. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/tabs/item/TeamsTabItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/tabs/item/TeamsTabItemRequestBuilder.java index 4d17f47222e..871fbfadbc1 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/tabs/item/TeamsTabItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/channels/item/tabs/item/TeamsTabItemRequestBuilder.java @@ -46,18 +46,16 @@ public TeamsTabItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/channels/{channel%2Did}/tabs/{teamsTab%2Did}{?%24expand,%24select}", rawUrl); } /** - * Removes (unpins) a tab from the specified channel within a team. + * Delete navigation property tabs for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Removes (unpins) a tab from the specified channel within a team. + * Delete navigation property tabs for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of the specified tab in a channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab get() { return get(null); } /** - * Retrieve the properties and relationships of the specified tab in a channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public TeamsTab get(@jakarta.annotation.Nullable final java.util.function.Consum return this.requestAdapter.send(requestInfo, errorMapping, TeamsTab::createFromDiscriminatorValue); } /** - * Update the properties of the specified tab.This API can be used to configure the content of the tab. + * Update the navigation property tabs in groups * @param body The request body * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab patch(@jakarta.annotation.Nonnull final TeamsTab body) { return patch(body, null); } /** - * Update the properties of the specified tab.This API can be used to configure the content of the tab. + * Update the navigation property tabs in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab patch(@jakarta.annotation.Nonnull final TeamsTab body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public TeamsTab patch(@jakarta.annotation.Nonnull final TeamsTab body, @jakarta. return this.requestAdapter.send(requestInfo, errorMapping, TeamsTab::createFromDiscriminatorValue); } /** - * Removes (unpins) a tab from the specified channel within a team. + * Delete navigation property tabs for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Removes (unpins) a tab from the specified channel within a team. + * Delete navigation property tabs for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of the specified tab in a channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of the specified tab in a channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of the specified tab.This API can be used to configure the content of the tab. + * Update the navigation property tabs in groups * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of the specified tab.This API can be used to configure the content of the tab. + * Update the navigation property tabs in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public TeamsTabItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of the specified tab in a channel within a team. + * A collection of all the tabs in the channel. A navigation property. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/clone/CloneRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/clone/CloneRequestBuilder.java index 92c83a55fad..46c553e8b9e 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/clone/CloneRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/clone/CloneRequestBuilder.java @@ -35,7 +35,7 @@ public CloneRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/clone", rawUrl); } /** - * Create a copy of a team. This operation also creates a copy of the corresponding group.You can specify which parts of the team to clone: When tabs are cloned, they aren't configured. The tabs are displayed on the tab bar in Microsoft Teams, and the first time a user opens them, they must go through the configuration screen. If the user who opens the tab doesn't have permission to configure apps, they'll see a message that says that the tab isn't configured. Cloning is a long-running operation. After the POST clone returns, you need to GET the operation returned by the Location: header to see if it's running, succeeded, or failed. You should continue to GET until the status isn't running. The recommended delay between GETs is 5 seconds. + * Create a copy of a team. This operation also creates a copy of the corresponding group.You can specify which parts of the team to clone: When tabs are cloned, they aren't configured. The tabs are displayed on the tab bar in Microsoft Teams, and the first time a user opens them, they must go through the configuration screen. If the user who opens the tab doesn't have permission to configure apps, they see a message that says that the tab isn't configured. Cloning is a long-running operation. After the POST clone returns, you need to GET the operation returned by the Location: header to see if it's running, succeeded, or failed. You should continue to GET until the status isn't running. The recommended delay between GETs is 5 seconds. * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code * @see Find more info here @@ -44,7 +44,7 @@ public void post(@jakarta.annotation.Nonnull final ClonePostRequestBody body) { post(body, null); } /** - * Create a copy of a team. This operation also creates a copy of the corresponding group.You can specify which parts of the team to clone: When tabs are cloned, they aren't configured. The tabs are displayed on the tab bar in Microsoft Teams, and the first time a user opens them, they must go through the configuration screen. If the user who opens the tab doesn't have permission to configure apps, they'll see a message that says that the tab isn't configured. Cloning is a long-running operation. After the POST clone returns, you need to GET the operation returned by the Location: header to see if it's running, succeeded, or failed. You should continue to GET until the status isn't running. The recommended delay between GETs is 5 seconds. + * Create a copy of a team. This operation also creates a copy of the corresponding group.You can specify which parts of the team to clone: When tabs are cloned, they aren't configured. The tabs are displayed on the tab bar in Microsoft Teams, and the first time a user opens them, they must go through the configuration screen. If the user who opens the tab doesn't have permission to configure apps, they see a message that says that the tab isn't configured. Cloning is a long-running operation. After the POST clone returns, you need to GET the operation returned by the Location: header to see if it's running, succeeded, or failed. You should continue to GET until the status isn't running. The recommended delay between GETs is 5 seconds. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code @@ -58,7 +58,7 @@ public void post(@jakarta.annotation.Nonnull final ClonePostRequestBody body, @j this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Create a copy of a team. This operation also creates a copy of the corresponding group.You can specify which parts of the team to clone: When tabs are cloned, they aren't configured. The tabs are displayed on the tab bar in Microsoft Teams, and the first time a user opens them, they must go through the configuration screen. If the user who opens the tab doesn't have permission to configure apps, they'll see a message that says that the tab isn't configured. Cloning is a long-running operation. After the POST clone returns, you need to GET the operation returned by the Location: header to see if it's running, succeeded, or failed. You should continue to GET until the status isn't running. The recommended delay between GETs is 5 seconds. + * Create a copy of a team. This operation also creates a copy of the corresponding group.You can specify which parts of the team to clone: When tabs are cloned, they aren't configured. The tabs are displayed on the tab bar in Microsoft Teams, and the first time a user opens them, they must go through the configuration screen. If the user who opens the tab doesn't have permission to configure apps, they see a message that says that the tab isn't configured. Cloning is a long-running operation. After the POST clone returns, you need to GET the operation returned by the Location: header to see if it's running, succeeded, or failed. You should continue to GET until the status isn't running. The recommended delay between GETs is 5 seconds. * @param body The request body * @return a {@link RequestInformation} */ @@ -67,7 +67,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a copy of a team. This operation also creates a copy of the corresponding group.You can specify which parts of the team to clone: When tabs are cloned, they aren't configured. The tabs are displayed on the tab bar in Microsoft Teams, and the first time a user opens them, they must go through the configuration screen. If the user who opens the tab doesn't have permission to configure apps, they'll see a message that says that the tab isn't configured. Cloning is a long-running operation. After the POST clone returns, you need to GET the operation returned by the Location: header to see if it's running, succeeded, or failed. You should continue to GET until the status isn't running. The recommended delay between GETs is 5 seconds. + * Create a copy of a team. This operation also creates a copy of the corresponding group.You can specify which parts of the team to clone: When tabs are cloned, they aren't configured. The tabs are displayed on the tab bar in Microsoft Teams, and the first time a user opens them, they must go through the configuration screen. If the user who opens the tab doesn't have permission to configure apps, they see a message that says that the tab isn't configured. Cloning is a long-running operation. After the POST clone returns, you need to GET the operation returned by the Location: header to see if it's running, succeeded, or failed. You should continue to GET until the status isn't running. The recommended delay between GETs is 5 seconds. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/incomingchannels/IncomingChannelsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/incomingchannels/IncomingChannelsRequestBuilder.java index 33a304e6b00..c8a632478e1 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/incomingchannels/IncomingChannelsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/incomingchannels/IncomingChannelsRequestBuilder.java @@ -59,21 +59,19 @@ public IncomingChannelsRequestBuilder(@jakarta.annotation.Nonnull final String r super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/incomingChannels{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of incoming channels (channels shared with a team). + * List of channels shared with the team. * @return a {@link ChannelCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChannelCollectionResponse get() { return get(null); } /** - * Get the list of incoming channels (channels shared with a team). + * List of channels shared with the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChannelCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChannelCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public ChannelCollectionResponse get(@jakarta.annotation.Nullable final java.uti return this.requestAdapter.send(requestInfo, errorMapping, ChannelCollectionResponse::createFromDiscriminatorValue); } /** - * Get the list of incoming channels (channels shared with a team). + * List of channels shared with the team. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of incoming channels (channels shared with a team). + * List of channels shared with the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public IncomingChannelsRequestBuilder withUrl(@jakarta.annotation.Nonnull final return new IncomingChannelsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of incoming channels (channels shared with a team). + * List of channels shared with the team. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/installedapps/InstalledAppsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/installedapps/InstalledAppsRequestBuilder.java index 054a1c09204..a80762bd074 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/installedapps/InstalledAppsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/installedapps/InstalledAppsRequestBuilder.java @@ -60,21 +60,19 @@ public InstalledAppsRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/installedApps{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of apps installed in the specified team. + * The apps installed in this team. * @return a {@link TeamsAppInstallationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsAppInstallationCollectionResponse get() { return get(null); } /** - * Retrieve a list of apps installed in the specified team. + * The apps installed in this team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsAppInstallationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsAppInstallationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TeamsAppInstallationCollectionResponse get(@jakarta.annotation.Nullable f return this.requestAdapter.send(requestInfo, errorMapping, TeamsAppInstallationCollectionResponse::createFromDiscriminatorValue); } /** - * Install an app to the specified team. + * Create new navigation property to installedApps for groups * @param body The request body * @return a {@link TeamsAppInstallation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsAppInstallation post(@jakarta.annotation.Nonnull final TeamsAppInstallation body) { return post(body, null); } /** - * Install an app to the specified team. + * Create new navigation property to installedApps for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsAppInstallation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsAppInstallation post(@jakarta.annotation.Nonnull final TeamsAppInstallation body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public TeamsAppInstallation post(@jakarta.annotation.Nonnull final TeamsAppInsta return this.requestAdapter.send(requestInfo, errorMapping, TeamsAppInstallation::createFromDiscriminatorValue); } /** - * Retrieve a list of apps installed in the specified team. + * The apps installed in this team. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of apps installed in the specified team. + * The apps installed in this team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Install an app to the specified team. + * Create new navigation property to installedApps for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Install an app to the specified team. + * Create new navigation property to installedApps for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public InstalledAppsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new InstalledAppsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of apps installed in the specified team. + * The apps installed in this team. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/installedapps/item/TeamsAppInstallationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/installedapps/item/TeamsAppInstallationItemRequestBuilder.java index 12bac31a39b..311415ca460 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/installedapps/item/TeamsAppInstallationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/installedapps/item/TeamsAppInstallationItemRequestBuilder.java @@ -64,18 +64,16 @@ public TeamsAppInstallationItemRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/installedApps/{teamsAppInstallation%2Did}{?%24expand,%24select}", rawUrl); } /** - * Uninstalls an app from the specified team. + * Delete navigation property installedApps for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Uninstalls an app from the specified team. + * Delete navigation property installedApps for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -84,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the app installed in the specified team. + * The apps installed in this team. * @return a {@link TeamsAppInstallation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsAppInstallation get() { return get(null); } /** - * Retrieve the app installed in the specified team. + * The apps installed in this team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsAppInstallation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsAppInstallation get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +129,7 @@ public TeamsAppInstallation patch(@jakarta.annotation.Nonnull final TeamsAppInst return this.requestAdapter.send(requestInfo, errorMapping, TeamsAppInstallation::createFromDiscriminatorValue); } /** - * Uninstalls an app from the specified team. + * Delete navigation property installedApps for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +137,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Uninstalls an app from the specified team. + * Delete navigation property installedApps for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -153,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the app installed in the specified team. + * The apps installed in this team. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -161,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the app installed in the specified team. + * The apps installed in this team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -213,7 +209,7 @@ public TeamsAppInstallationItemRequestBuilder withUrl(@jakarta.annotation.Nonnul public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the app installed in the specified team. + * The apps installed in this team. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/members/MembersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/members/MembersRequestBuilder.java index 6bcb0ad36f1..7101c379b85 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/members/MembersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/members/MembersRequestBuilder.java @@ -69,21 +69,19 @@ public MembersRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/members{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the conversationMember collection of a team. The membership IDs returned by the server must be treated as opaque strings. The client should not try to parse or make assumptions about these resource IDs. In the future, membership results may include users from various tenants, as indicated in the response. Clients should avoid assuming that all members exclusively belong to the current tenant. + * Members and owners of the team. * @return a {@link ConversationMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMemberCollectionResponse get() { return get(null); } /** - * Get the conversationMember collection of a team. The membership IDs returned by the server must be treated as opaque strings. The client should not try to parse or make assumptions about these resource IDs. In the future, membership results may include users from various tenants, as indicated in the response. Clients should avoid assuming that all members exclusively belong to the current tenant. + * Members and owners of the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMemberCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public ConversationMemberCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, ConversationMemberCollectionResponse::createFromDiscriminatorValue); } /** - * Add a new conversationMember to a team. + * Create new navigation property to members for groups * @param body The request body * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember post(@jakarta.annotation.Nonnull final ConversationMember body) { return post(body, null); } /** - * Add a new conversationMember to a team. + * Create new navigation property to members for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember post(@jakarta.annotation.Nonnull final ConversationMember body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public ConversationMember post(@jakarta.annotation.Nonnull final ConversationMem return this.requestAdapter.send(requestInfo, errorMapping, ConversationMember::createFromDiscriminatorValue); } /** - * Get the conversationMember collection of a team. The membership IDs returned by the server must be treated as opaque strings. The client should not try to parse or make assumptions about these resource IDs. In the future, membership results may include users from various tenants, as indicated in the response. Clients should avoid assuming that all members exclusively belong to the current tenant. + * Members and owners of the team. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the conversationMember collection of a team. The membership IDs returned by the server must be treated as opaque strings. The client should not try to parse or make assumptions about these resource IDs. In the future, membership results may include users from various tenants, as indicated in the response. Clients should avoid assuming that all members exclusively belong to the current tenant. + * Members and owners of the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add a new conversationMember to a team. + * Create new navigation property to members for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add a new conversationMember to a team. + * Create new navigation property to members for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public MembersRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new MembersRequestBuilder(rawUrl, requestAdapter); } /** - * Get the conversationMember collection of a team. The membership IDs returned by the server must be treated as opaque strings. The client should not try to parse or make assumptions about these resource IDs. In the future, membership results may include users from various tenants, as indicated in the response. Clients should avoid assuming that all members exclusively belong to the current tenant. + * Members and owners of the team. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/members/item/ConversationMemberItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/members/item/ConversationMemberItemRequestBuilder.java index ee26c948e7a..2ec98e6e0c7 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/members/item/ConversationMemberItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/members/item/ConversationMemberItemRequestBuilder.java @@ -37,18 +37,16 @@ public ConversationMemberItemRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/members/{conversationMember%2Did}{?%24expand,%24select}", rawUrl); } /** - * Remove a conversationMember from a team. + * Delete navigation property members for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove a conversationMember from a team. + * Delete navigation property members for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get a conversationMember from a team. + * Members and owners of the team. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember get() { return get(null); } /** - * Get a conversationMember from a team. + * Members and owners of the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public ConversationMember get(@jakarta.annotation.Nullable final java.util.funct return this.requestAdapter.send(requestInfo, errorMapping, ConversationMember::createFromDiscriminatorValue); } /** - * Update the role of a conversationMember in a team. + * Update the navigation property members in groups * @param body The request body * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember patch(@jakarta.annotation.Nonnull final ConversationMember body) { return patch(body, null); } /** - * Update the role of a conversationMember in a team. + * Update the navigation property members in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember patch(@jakarta.annotation.Nonnull final ConversationMember body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public ConversationMember patch(@jakarta.annotation.Nonnull final ConversationMe return this.requestAdapter.send(requestInfo, errorMapping, ConversationMember::createFromDiscriminatorValue); } /** - * Remove a conversationMember from a team. + * Delete navigation property members for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove a conversationMember from a team. + * Delete navigation property members for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get a conversationMember from a team. + * Members and owners of the team. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a conversationMember from a team. + * Members and owners of the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the role of a conversationMember in a team. + * Update the navigation property members in groups * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the role of a conversationMember in a team. + * Update the navigation property members in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public ConversationMemberItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get a conversationMember from a team. + * Members and owners of the team. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/permissiongrants/PermissionGrantsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/permissiongrants/PermissionGrantsRequestBuilder.java index f23c119b249..76b4502ce91 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/permissiongrants/PermissionGrantsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/permissiongrants/PermissionGrantsRequestBuilder.java @@ -60,21 +60,19 @@ public PermissionGrantsRequestBuilder(@jakarta.annotation.Nonnull final String r super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/permissionGrants{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List all resource-specific permission grants on the team. This list specifies the Microsoft Entra apps that have access to the team, along with each app's corresponding type of resource-specific access. + * A collection of permissions granted to apps to access the team. * @return a {@link ResourceSpecificPermissionGrantCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ResourceSpecificPermissionGrantCollectionResponse get() { return get(null); } /** - * List all resource-specific permission grants on the team. This list specifies the Microsoft Entra apps that have access to the team, along with each app's corresponding type of resource-specific access. + * A collection of permissions granted to apps to access the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ResourceSpecificPermissionGrantCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ResourceSpecificPermissionGrantCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ResourceSpecificPermissionGrant post(@jakarta.annotation.Nonnull final Re return this.requestAdapter.send(requestInfo, errorMapping, ResourceSpecificPermissionGrant::createFromDiscriminatorValue); } /** - * List all resource-specific permission grants on the team. This list specifies the Microsoft Entra apps that have access to the team, along with each app's corresponding type of resource-specific access. + * A collection of permissions granted to apps to access the team. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List all resource-specific permission grants on the team. This list specifies the Microsoft Entra apps that have access to the team, along with each app's corresponding type of resource-specific access. + * A collection of permissions granted to apps to access the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public PermissionGrantsRequestBuilder withUrl(@jakarta.annotation.Nonnull final return new PermissionGrantsRequestBuilder(rawUrl, requestAdapter); } /** - * List all resource-specific permission grants on the team. This list specifies the Microsoft Entra apps that have access to the team, along with each app's corresponding type of resource-specific access. + * A collection of permissions granted to apps to access the team. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/photo/PhotoRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/photo/PhotoRequestBuilder.java index 4677db042c4..27efe34f28e 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/photo/PhotoRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/photo/PhotoRequestBuilder.java @@ -46,21 +46,19 @@ public PhotoRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/photo{?%24expand,%24select}", rawUrl); } /** - * Get the specified profilePhoto or its metadata (profilePhoto properties). The supported sizes of HD photos on Microsoft 365 are as follows: 48x48, 64x64, 96x96, 120x120, 240x240,360x360, 432x432, 504x504, and 648x648. Photos can be any dimension if they're stored in Microsoft Entra ID. You can get the metadata of the largest available photo or specify a size to get the metadata for that photo size.If the size you request is unavailable, you can still get a smaller size that the user has uploaded and made available.For example, if the user uploads a photo that is 504x504 pixels, all but the 648x648 size of the photo is available for download. + * The profile photo for the team. * @return a {@link ProfilePhoto} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ProfilePhoto get() { return get(null); } /** - * Get the specified profilePhoto or its metadata (profilePhoto properties). The supported sizes of HD photos on Microsoft 365 are as follows: 48x48, 64x64, 96x96, 120x120, 240x240,360x360, 432x432, 504x504, and 648x648. Photos can be any dimension if they're stored in Microsoft Entra ID. You can get the metadata of the largest available photo or specify a size to get the metadata for that photo size.If the size you request is unavailable, you can still get a smaller size that the user has uploaded and made available.For example, if the user uploads a photo that is 504x504 pixels, all but the 648x648 size of the photo is available for download. + * The profile photo for the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ProfilePhoto} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ProfilePhoto get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -95,7 +93,7 @@ public ProfilePhoto patch(@jakarta.annotation.Nonnull final ProfilePhoto body, @ return this.requestAdapter.send(requestInfo, errorMapping, ProfilePhoto::createFromDiscriminatorValue); } /** - * Get the specified profilePhoto or its metadata (profilePhoto properties). The supported sizes of HD photos on Microsoft 365 are as follows: 48x48, 64x64, 96x96, 120x120, 240x240,360x360, 432x432, 504x504, and 648x648. Photos can be any dimension if they're stored in Microsoft Entra ID. You can get the metadata of the largest available photo or specify a size to get the metadata for that photo size.If the size you request is unavailable, you can still get a smaller size that the user has uploaded and made available.For example, if the user uploads a photo that is 504x504 pixels, all but the 648x648 size of the photo is available for download. + * The profile photo for the team. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -103,7 +101,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the specified profilePhoto or its metadata (profilePhoto properties). The supported sizes of HD photos on Microsoft 365 are as follows: 48x48, 64x64, 96x96, 120x120, 240x240,360x360, 432x432, 504x504, and 648x648. Photos can be any dimension if they're stored in Microsoft Entra ID. You can get the metadata of the largest available photo or specify a size to get the metadata for that photo size.If the size you request is unavailable, you can still get a smaller size that the user has uploaded and made available.For example, if the user uploads a photo that is 504x504 pixels, all but the 648x648 size of the photo is available for download. + * The profile photo for the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -149,7 +147,7 @@ public PhotoRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new PhotoRequestBuilder(rawUrl, requestAdapter); } /** - * Get the specified profilePhoto or its metadata (profilePhoto properties). The supported sizes of HD photos on Microsoft 365 are as follows: 48x48, 64x64, 96x96, 120x120, 240x240,360x360, 432x432, 504x504, and 648x648. Photos can be any dimension if they're stored in Microsoft Entra ID. You can get the metadata of the largest available photo or specify a size to get the metadata for that photo size.If the size you request is unavailable, you can still get a smaller size that the user has uploaded and made available.For example, if the user uploads a photo that is 504x504 pixels, all but the 648x648 size of the photo is available for download. + * The profile photo for the team. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/photo/value/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/photo/value/ContentRequestBuilder.java index f3a133e2f49..5e58e8abb28 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/photo/value/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/photo/value/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * Get media content for the navigation property photo from groups * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/PrimaryChannelRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/PrimaryChannelRequestBuilder.java index 0883fd30e33..2321a9323c4 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/PrimaryChannelRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/PrimaryChannelRequestBuilder.java @@ -136,21 +136,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the default channel, General, of a team. + * The general channel for the team. * @return a {@link Channel} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Channel get() { return get(null); } /** - * Get the default channel, General, of a team. + * The general channel for the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Channel} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Channel get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -205,7 +203,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the default channel, General, of a team. + * The general channel for the team. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -213,7 +211,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the default channel, General, of a team. + * The general channel for the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -265,7 +263,7 @@ public PrimaryChannelRequestBuilder withUrl(@jakarta.annotation.Nonnull final St public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the default channel, General, of a team. + * The general channel for the team. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/doesuserhaveaccessuseriduseridtenantidtenantiduserprincipalnameuserprincipalname/DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/doesuserhaveaccessuseriduseridtenantidtenantiduserprincipalnameuserprincipalname/DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameRequestBuilder.java index 3efc5f6b479..bc501131c92 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/doesuserhaveaccessuseriduseridtenantidtenantiduserprincipalnameuserprincipalname/DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/doesuserhaveaccessuseriduseridtenantidtenantiduserprincipalnameuserprincipalname/DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameRequestBuilder.java @@ -36,19 +36,21 @@ public DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrinci super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/primaryChannel/doesUserHaveAccess(userId='@userId',tenantId='@tenantId',userPrincipalName='@userPrincipalName'){?tenantId*,userId*,userPrincipalName*}", rawUrl); } /** - * Invoke function doesUserHaveAccess + * Determine whether a user has access to a shared channel. * @return a {@link DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameGetResponse get() { return get(null); } /** - * Invoke function doesUserHaveAccess + * Determine whether a user has access to a shared channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrinci return this.requestAdapter.send(requestInfo, errorMapping, DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameGetResponse::createFromDiscriminatorValue); } /** - * Invoke function doesUserHaveAccess + * Determine whether a user has access to a shared channel. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function doesUserHaveAccess + * Determine whether a user has access to a shared channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrinci return new DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function doesUserHaveAccess + * Determine whether a user has access to a shared channel. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/filesfolder/FilesFolderRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/filesfolder/FilesFolderRequestBuilder.java index c35263adebd..f8b95975f8d 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/filesfolder/FilesFolderRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/filesfolder/FilesFolderRequestBuilder.java @@ -46,21 +46,19 @@ public FilesFolderRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/primaryChannel/filesFolder{?%24expand,%24select}", rawUrl); } /** - * Get the metadata for the location where the files of a channel are stored. + * Metadata for the location where the channel's files are stored. * @return a {@link DriveItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DriveItem get() { return get(null); } /** - * Get the metadata for the location where the files of a channel are stored. + * Metadata for the location where the channel's files are stored. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DriveItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DriveItem get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -70,7 +68,7 @@ public DriveItem get(@jakarta.annotation.Nullable final java.util.function.Consu return this.requestAdapter.send(requestInfo, errorMapping, DriveItem::createFromDiscriminatorValue); } /** - * Get the metadata for the location where the files of a channel are stored. + * Metadata for the location where the channel's files are stored. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -78,7 +76,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the metadata for the location where the files of a channel are stored. + * Metadata for the location where the channel's files are stored. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -100,7 +98,7 @@ public FilesFolderRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new FilesFolderRequestBuilder(rawUrl, requestAdapter); } /** - * Get the metadata for the location where the files of a channel are stored. + * Metadata for the location where the channel's files are stored. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/filesfolder/content/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/filesfolder/content/ContentRequestBuilder.java index 5c76854addd..0336e3105a0 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/filesfolder/content/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/filesfolder/content/ContentRequestBuilder.java @@ -41,7 +41,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * The content stream, if the item represents a file. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -52,7 +51,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/members/MembersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/members/MembersRequestBuilder.java index 6518ce6f113..c00ccb0e472 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/members/MembersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/members/MembersRequestBuilder.java @@ -69,21 +69,19 @@ public MembersRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/primaryChannel/members{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of conversationMembers from a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve the channel member list. + * A collection of membership records associated with the channel. * @return a {@link ConversationMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMemberCollectionResponse get() { return get(null); } /** - * Retrieve a list of conversationMembers from a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve the channel member list. + * A collection of membership records associated with the channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMemberCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public ConversationMemberCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, ConversationMemberCollectionResponse::createFromDiscriminatorValue); } /** - * Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Create new navigation property to members for groups * @param body The request body * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember post(@jakarta.annotation.Nonnull final ConversationMember body) { return post(body, null); } /** - * Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Create new navigation property to members for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember post(@jakarta.annotation.Nonnull final ConversationMember body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public ConversationMember post(@jakarta.annotation.Nonnull final ConversationMem return this.requestAdapter.send(requestInfo, errorMapping, ConversationMember::createFromDiscriminatorValue); } /** - * Retrieve a list of conversationMembers from a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve the channel member list. + * A collection of membership records associated with the channel. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of conversationMembers from a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve the channel member list. + * A collection of membership records associated with the channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Create new navigation property to members for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Create new navigation property to members for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public MembersRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new MembersRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of conversationMembers from a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve the channel member list. + * A collection of membership records associated with the channel. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/members/item/ConversationMemberItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/members/item/ConversationMemberItemRequestBuilder.java index 3771f8880b4..87b74add989 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/members/item/ConversationMemberItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/members/item/ConversationMemberItemRequestBuilder.java @@ -37,18 +37,16 @@ public ConversationMemberItemRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/primaryChannel/members/{conversationMember%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Delete navigation property members for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Delete navigation property members for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get a conversationMember from a channel. + * A collection of membership records associated with the channel. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember get() { return get(null); } /** - * Get a conversationMember from a channel. + * A collection of membership records associated with the channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public ConversationMember get(@jakarta.annotation.Nullable final java.util.funct return this.requestAdapter.send(requestInfo, errorMapping, ConversationMember::createFromDiscriminatorValue); } /** - * Update the role of a conversationMember in a team or channel. + * Update the navigation property members in groups * @param body The request body * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember patch(@jakarta.annotation.Nonnull final ConversationMember body) { return patch(body, null); } /** - * Update the role of a conversationMember in a team or channel. + * Update the navigation property members in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember patch(@jakarta.annotation.Nonnull final ConversationMember body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public ConversationMember patch(@jakarta.annotation.Nonnull final ConversationMe return this.requestAdapter.send(requestInfo, errorMapping, ConversationMember::createFromDiscriminatorValue); } /** - * Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Delete navigation property members for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Delete navigation property members for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get a conversationMember from a channel. + * A collection of membership records associated with the channel. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a conversationMember from a channel. + * A collection of membership records associated with the channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the role of a conversationMember in a team or channel. + * Update the navigation property members in groups * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the role of a conversationMember in a team or channel. + * Update the navigation property members in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public ConversationMemberItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get a conversationMember from a channel. + * A collection of membership records associated with the channel. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/MessagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/MessagesRequestBuilder.java index 5f34ee7e012..a75320808a6 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/MessagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/MessagesRequestBuilder.java @@ -69,21 +69,19 @@ public MessagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/primaryChannel/messages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of messages (without the replies) in a channel of a team. To get the replies for a message, call the list message replies or the get message reply API. This method supports federation. To list channel messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the channel. A navigation property. Nullable. * @return a {@link ChatMessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageCollectionResponse get() { return get(null); } /** - * Retrieve the list of messages (without the replies) in a channel of a team. To get the replies for a message, call the list message replies or the get message reply API. This method supports federation. To list channel messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the channel. A navigation property. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public ChatMessageCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, ChatMessageCollectionResponse::createFromDiscriminatorValue); } /** - * Send a new chatMessage in the specified channel or a chat. + * Create new navigation property to messages for groups * @param body The request body * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body) { return post(body, null); } /** - * Send a new chatMessage in the specified channel or a chat. + * Create new navigation property to messages for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body, @jak return this.requestAdapter.send(requestInfo, errorMapping, ChatMessage::createFromDiscriminatorValue); } /** - * Retrieve the list of messages (without the replies) in a channel of a team. To get the replies for a message, call the list message replies or the get message reply API. This method supports federation. To list channel messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the channel. A navigation property. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of messages (without the replies) in a channel of a team. To get the replies for a message, call the list message replies or the get message reply API. This method supports federation. To list channel messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the channel. A navigation property. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Send a new chatMessage in the specified channel or a chat. + * Create new navigation property to messages for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Send a new chatMessage in the specified channel or a chat. + * Create new navigation property to messages for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public MessagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new MessagesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of messages (without the replies) in a channel of a team. To get the replies for a message, call the list message replies or the get message reply API. This method supports federation. To list channel messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the channel. A navigation property. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/delta/DeltaRequestBuilder.java index 81a4e7c1ba1..6cc36eeb1c5 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/primaryChannel/messages/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/item/ChatMessageItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/item/ChatMessageItemRequestBuilder.java index f2d551abe55..d59d559789e 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/item/ChatMessageItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/item/ChatMessageItemRequestBuilder.java @@ -109,21 +109,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the channel. A navigation property. Nullable. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage get() { return get(null); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the channel. A navigation property. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,23 +131,21 @@ public ChatMessage get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.send(requestInfo, errorMapping, ChatMessage::createFromDiscriminatorValue); } /** - * Update a chatMessage object. Except for the policyViolation property, all properties of a chatMessage can be updated in delegated permissions scenarios.Only the policyViolation property of a chatMessage can be updated in application permissions scenarios. The update only works for chats where members are Microsoft Teams users. If one of the participants is using Skype, the operation fails. This method doesn't support federation. Only the user in the tenant who sent the message can perform data loss prevention (DLP) updates on the specified chat message. + * Update the navigation property messages in groups * @param body The request body * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage patch(@jakarta.annotation.Nonnull final ChatMessage body) { return patch(body, null); } /** - * Update a chatMessage object. Except for the policyViolation property, all properties of a chatMessage can be updated in delegated permissions scenarios.Only the policyViolation property of a chatMessage can be updated in application permissions scenarios. The update only works for chats where members are Microsoft Teams users. If one of the participants is using Skype, the operation fails. This method doesn't support federation. Only the user in the tenant who sent the message can perform data loss prevention (DLP) updates on the specified chat message. + * Update the navigation property messages in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage patch(@jakarta.annotation.Nonnull final ChatMessage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -180,7 +176,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the channel. A navigation property. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -188,7 +184,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the channel. A navigation property. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -200,7 +196,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update a chatMessage object. Except for the policyViolation property, all properties of a chatMessage can be updated in delegated permissions scenarios.Only the policyViolation property of a chatMessage can be updated in application permissions scenarios. The update only works for chats where members are Microsoft Teams users. If one of the participants is using Skype, the operation fails. This method doesn't support federation. Only the user in the tenant who sent the message can perform data loss prevention (DLP) updates on the specified chat message. + * Update the navigation property messages in groups * @param body The request body * @return a {@link RequestInformation} */ @@ -209,7 +205,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update a chatMessage object. Except for the policyViolation property, all properties of a chatMessage can be updated in delegated permissions scenarios.Only the policyViolation property of a chatMessage can be updated in application permissions scenarios. The update only works for chats where members are Microsoft Teams users. If one of the participants is using Skype, the operation fails. This method doesn't support federation. Only the user in the tenant who sent the message can perform data loss prevention (DLP) updates on the specified chat message. + * Update the navigation property messages in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -240,7 +236,7 @@ public ChatMessageItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final S public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the channel. A navigation property. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/item/hostedcontents/HostedContentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/item/hostedcontents/HostedContentsRequestBuilder.java index b2a40de484d..a7a7dd093ce 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/item/hostedcontents/HostedContentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/item/hostedcontents/HostedContentsRequestBuilder.java @@ -60,21 +60,19 @@ public HostedContentsRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/primaryChannel/messages/{chatMessage%2Did}/hostedContents{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link ChatMessageHostedContentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContentCollectionResponse get() { return get(null); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageHostedContentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ChatMessageHostedContent post(@jakarta.annotation.Nonnull final ChatMessa return this.requestAdapter.send(requestInfo, errorMapping, ChatMessageHostedContent::createFromDiscriminatorValue); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public HostedContentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new HostedContentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java index 10475cada1d..6affb1e2204 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link ChatMessageHostedContent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContent get() { return get(null); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageHostedContent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContent get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public ChatMessageHostedContentItemRequestBuilder withUrl(@jakarta.annotation.No public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/item/hostedcontents/item/value/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/item/hostedcontents/item/value/ContentRequestBuilder.java index f8ada6de0db..5f3c899fab5 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/item/hostedcontents/item/value/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/item/hostedcontents/item/value/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * Get media content for the navigation property hostedContents from groups * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/item/replies/RepliesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/item/replies/RepliesRequestBuilder.java index 28bb8610026..d9b5e60860d 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/item/replies/RepliesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/item/replies/RepliesRequestBuilder.java @@ -69,21 +69,19 @@ public RepliesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/primaryChannel/messages/{chatMessage%2Did}/replies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. * @return a {@link ChatMessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageCollectionResponse get() { return get(null); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public ChatMessageCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, ChatMessageCollectionResponse::createFromDiscriminatorValue); } /** - * Send a new reply to a chatMessage in a specified channel. + * Create new navigation property to replies for groups * @param body The request body * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body) { return post(body, null); } /** - * Send a new reply to a chatMessage in a specified channel. + * Create new navigation property to replies for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body, @jak return this.requestAdapter.send(requestInfo, errorMapping, ChatMessage::createFromDiscriminatorValue); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Send a new reply to a chatMessage in a specified channel. + * Create new navigation property to replies for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Send a new reply to a chatMessage in a specified channel. + * Create new navigation property to replies for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public RepliesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new RepliesRequestBuilder(rawUrl, requestAdapter); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/item/replies/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/item/replies/delta/DeltaRequestBuilder.java index 980f12ee3e0..b79182f1c71 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/item/replies/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/item/replies/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/primaryChannel/messages/{chatMessage%2Did}/replies/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/item/replies/item/ChatMessageItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/item/replies/item/ChatMessageItemRequestBuilder.java index 1e9356e581f..a0fdb66a987 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/item/replies/item/ChatMessageItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/item/replies/item/ChatMessageItemRequestBuilder.java @@ -100,21 +100,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage get() { return get(null); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -169,7 +167,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -177,7 +175,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -229,7 +227,7 @@ public ChatMessageItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final S public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/item/replies/item/hostedcontents/HostedContentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/item/replies/item/hostedcontents/HostedContentsRequestBuilder.java index a7ca263eec1..0e6c28fb5b7 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/item/replies/item/hostedcontents/HostedContentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/item/replies/item/hostedcontents/HostedContentsRequestBuilder.java @@ -60,21 +60,19 @@ public HostedContentsRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/primaryChannel/messages/{chatMessage%2Did}/replies/{chatMessage%2Did1}/hostedContents{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link ChatMessageHostedContentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContentCollectionResponse get() { return get(null); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageHostedContentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ChatMessageHostedContent post(@jakarta.annotation.Nonnull final ChatMessa return this.requestAdapter.send(requestInfo, errorMapping, ChatMessageHostedContent::createFromDiscriminatorValue); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public HostedContentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new HostedContentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/item/replies/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/item/replies/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java index f4ee03e7b8c..5fd1e5c866d 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/item/replies/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/item/replies/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link ChatMessageHostedContent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContent get() { return get(null); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageHostedContent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContent get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public ChatMessageHostedContentItemRequestBuilder withUrl(@jakarta.annotation.No public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/item/replies/item/hostedcontents/item/value/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/item/replies/item/hostedcontents/item/value/ContentRequestBuilder.java index c63e5894eab..9b98ee9e012 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/item/replies/item/hostedcontents/item/value/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/messages/item/replies/item/hostedcontents/item/value/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * Get media content for the navigation property hostedContents from groups * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/sharedwithteams/SharedWithTeamsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/sharedwithteams/SharedWithTeamsRequestBuilder.java index d91456958f7..26035adf304 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/sharedwithteams/SharedWithTeamsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/sharedwithteams/SharedWithTeamsRequestBuilder.java @@ -60,21 +60,19 @@ public SharedWithTeamsRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/primaryChannel/sharedWithTeams{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of teams that has been shared a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @return a {@link SharedWithChannelTeamInfoCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SharedWithChannelTeamInfoCollectionResponse get() { return get(null); } /** - * Get the list of teams that has been shared a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SharedWithChannelTeamInfoCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SharedWithChannelTeamInfoCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public SharedWithChannelTeamInfo post(@jakarta.annotation.Nonnull final SharedWi return this.requestAdapter.send(requestInfo, errorMapping, SharedWithChannelTeamInfo::createFromDiscriminatorValue); } /** - * Get the list of teams that has been shared a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of teams that has been shared a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public SharedWithTeamsRequestBuilder withUrl(@jakarta.annotation.Nonnull final S return new SharedWithTeamsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of teams that has been shared a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/sharedwithteams/item/SharedWithChannelTeamInfoItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/sharedwithteams/item/SharedWithChannelTeamInfoItemRequestBuilder.java index 5158c65a67e..3b5f1e4e73d 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/sharedwithteams/item/SharedWithChannelTeamInfoItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/sharedwithteams/item/SharedWithChannelTeamInfoItemRequestBuilder.java @@ -55,18 +55,16 @@ public SharedWithChannelTeamInfoItemRequestBuilder(@jakarta.annotation.Nonnull f super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo%2Did}{?%24expand,%24select}", rawUrl); } /** - * Unshare a channel with a team by deleting the corresponding sharedWithChannelTeamInfo resource. This operation is allowed only for channels with a membershipType value of shared. + * Delete navigation property sharedWithTeams for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Unshare a channel with a team by deleting the corresponding sharedWithChannelTeamInfo resource. This operation is allowed only for channels with a membershipType value of shared. + * Delete navigation property sharedWithTeams for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -75,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get a team that has been shared with a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @return a {@link SharedWithChannelTeamInfo} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SharedWithChannelTeamInfo get() { return get(null); } /** - * Get a team that has been shared with a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SharedWithChannelTeamInfo} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SharedWithChannelTeamInfo get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +120,7 @@ public SharedWithChannelTeamInfo patch(@jakarta.annotation.Nonnull final SharedW return this.requestAdapter.send(requestInfo, errorMapping, SharedWithChannelTeamInfo::createFromDiscriminatorValue); } /** - * Unshare a channel with a team by deleting the corresponding sharedWithChannelTeamInfo resource. This operation is allowed only for channels with a membershipType value of shared. + * Delete navigation property sharedWithTeams for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +128,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Unshare a channel with a team by deleting the corresponding sharedWithChannelTeamInfo resource. This operation is allowed only for channels with a membershipType value of shared. + * Delete navigation property sharedWithTeams for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -144,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get a team that has been shared with a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -152,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a team that has been shared with a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -204,7 +200,7 @@ public SharedWithChannelTeamInfoItemRequestBuilder withUrl(@jakarta.annotation.N public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get a team that has been shared with a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/sharedwithteams/item/allowedmembers/AllowedMembersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/sharedwithteams/item/allowedmembers/AllowedMembersRequestBuilder.java index 4d2eb1e9e03..622a8295d6b 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/sharedwithteams/item/allowedmembers/AllowedMembersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/sharedwithteams/item/allowedmembers/AllowedMembersRequestBuilder.java @@ -59,21 +59,19 @@ public AllowedMembersRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo%2Did}/allowedMembers{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of conversationMembers who can access a shared channel. This method does not return the following conversationMembers from the team:- Users with Guest role- Users who are externally authenticated in the tenant + * A collection of team members who have access to the shared channel. * @return a {@link ConversationMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMemberCollectionResponse get() { return get(null); } /** - * Get the list of conversationMembers who can access a shared channel. This method does not return the following conversationMembers from the team:- Users with Guest role- Users who are externally authenticated in the tenant + * A collection of team members who have access to the shared channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMemberCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public ConversationMemberCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, ConversationMemberCollectionResponse::createFromDiscriminatorValue); } /** - * Get the list of conversationMembers who can access a shared channel. This method does not return the following conversationMembers from the team:- Users with Guest role- Users who are externally authenticated in the tenant + * A collection of team members who have access to the shared channel. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of conversationMembers who can access a shared channel. This method does not return the following conversationMembers from the team:- Users with Guest role- Users who are externally authenticated in the tenant + * A collection of team members who have access to the shared channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public AllowedMembersRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new AllowedMembersRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of conversationMembers who can access a shared channel. This method does not return the following conversationMembers from the team:- Users with Guest role- Users who are externally authenticated in the tenant + * A collection of team members who have access to the shared channel. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/tabs/TabsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/tabs/TabsRequestBuilder.java index cac89611a7e..27b49c6d212 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/tabs/TabsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/tabs/TabsRequestBuilder.java @@ -60,21 +60,19 @@ public TabsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/primaryChannel/tabs{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of tabs in the specified channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @return a {@link TeamsTabCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTabCollectionResponse get() { return get(null); } /** - * Retrieve the list of tabs in the specified channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsTabCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTabCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TeamsTabCollectionResponse get(@jakarta.annotation.Nullable final java.ut return this.requestAdapter.send(requestInfo, errorMapping, TeamsTabCollectionResponse::createFromDiscriminatorValue); } /** - * Add (pin) a tab to the specified channel within a team. The app must be preinstalled in the team and have the configurableTabs property defined in the app manifest. + * Create new navigation property to tabs for groups * @param body The request body * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab post(@jakarta.annotation.Nonnull final TeamsTab body) { return post(body, null); } /** - * Add (pin) a tab to the specified channel within a team. The app must be preinstalled in the team and have the configurableTabs property defined in the app manifest. + * Create new navigation property to tabs for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab post(@jakarta.annotation.Nonnull final TeamsTab body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public TeamsTab post(@jakarta.annotation.Nonnull final TeamsTab body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, TeamsTab::createFromDiscriminatorValue); } /** - * Retrieve the list of tabs in the specified channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of tabs in the specified channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add (pin) a tab to the specified channel within a team. The app must be preinstalled in the team and have the configurableTabs property defined in the app manifest. + * Create new navigation property to tabs for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add (pin) a tab to the specified channel within a team. The app must be preinstalled in the team and have the configurableTabs property defined in the app manifest. + * Create new navigation property to tabs for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public TabsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr return new TabsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of tabs in the specified channel within a team. + * A collection of all the tabs in the channel. A navigation property. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/tabs/item/TeamsTabItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/tabs/item/TeamsTabItemRequestBuilder.java index 9af8677709f..0b0e581d8c1 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/tabs/item/TeamsTabItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/primarychannel/tabs/item/TeamsTabItemRequestBuilder.java @@ -46,18 +46,16 @@ public TeamsTabItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/primaryChannel/tabs/{teamsTab%2Did}{?%24expand,%24select}", rawUrl); } /** - * Removes (unpins) a tab from the specified channel within a team. + * Delete navigation property tabs for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Removes (unpins) a tab from the specified channel within a team. + * Delete navigation property tabs for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of the specified tab in a channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab get() { return get(null); } /** - * Retrieve the properties and relationships of the specified tab in a channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public TeamsTab get(@jakarta.annotation.Nullable final java.util.function.Consum return this.requestAdapter.send(requestInfo, errorMapping, TeamsTab::createFromDiscriminatorValue); } /** - * Update the properties of the specified tab.This API can be used to configure the content of the tab. + * Update the navigation property tabs in groups * @param body The request body * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab patch(@jakarta.annotation.Nonnull final TeamsTab body) { return patch(body, null); } /** - * Update the properties of the specified tab.This API can be used to configure the content of the tab. + * Update the navigation property tabs in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab patch(@jakarta.annotation.Nonnull final TeamsTab body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public TeamsTab patch(@jakarta.annotation.Nonnull final TeamsTab body, @jakarta. return this.requestAdapter.send(requestInfo, errorMapping, TeamsTab::createFromDiscriminatorValue); } /** - * Removes (unpins) a tab from the specified channel within a team. + * Delete navigation property tabs for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Removes (unpins) a tab from the specified channel within a team. + * Delete navigation property tabs for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of the specified tab in a channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of the specified tab in a channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of the specified tab.This API can be used to configure the content of the tab. + * Update the navigation property tabs in groups * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of the specified tab.This API can be used to configure the content of the tab. + * Update the navigation property tabs in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public TeamsTabItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of the specified tab in a channel within a team. + * A collection of all the tabs in the channel. A navigation property. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/ScheduleRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/ScheduleRequestBuilder.java index 846ef015827..b6a2247a9c1 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/ScheduleRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/ScheduleRequestBuilder.java @@ -145,21 +145,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a schedule object. The schedule creation process conforms to the One API guideline for resource based long running operations (RELO).When clients use the PUT method, if the schedule is provisioned, the operation updates the schedule; otherwise, the operation starts the schedule provisioning process in the background. During schedule provisioning, clients can use the GET method to get the schedule and look at the provisionStatus property for the current state of the provisioning. If the provisioning failed, clients can get additional information from the provisionStatusCode property. Clients can also inspect the configuration of the schedule. + * The schedule of shifts for this team. * @return a {@link Schedule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Schedule get() { return get(null); } /** - * Retrieve the properties and relationships of a schedule object. The schedule creation process conforms to the One API guideline for resource based long running operations (RELO).When clients use the PUT method, if the schedule is provisioned, the operation updates the schedule; otherwise, the operation starts the schedule provisioning process in the background. During schedule provisioning, clients can use the GET method to get the schedule and look at the provisionStatus property for the current state of the provisioning. If the provisioning failed, clients can get additional information from the provisionStatusCode property. Clients can also inspect the configuration of the schedule. + * The schedule of shifts for this team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Schedule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Schedule get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -214,7 +212,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a schedule object. The schedule creation process conforms to the One API guideline for resource based long running operations (RELO).When clients use the PUT method, if the schedule is provisioned, the operation updates the schedule; otherwise, the operation starts the schedule provisioning process in the background. During schedule provisioning, clients can use the GET method to get the schedule and look at the provisionStatus property for the current state of the provisioning. If the provisioning failed, clients can get additional information from the provisionStatusCode property. Clients can also inspect the configuration of the schedule. + * The schedule of shifts for this team. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -222,7 +220,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a schedule object. The schedule creation process conforms to the One API guideline for resource based long running operations (RELO).When clients use the PUT method, if the schedule is provisioned, the operation updates the schedule; otherwise, the operation starts the schedule provisioning process in the background. During schedule provisioning, clients can use the GET method to get the schedule and look at the provisionStatus property for the current state of the provisioning. If the provisioning failed, clients can get additional information from the provisionStatusCode property. Clients can also inspect the configuration of the schedule. + * The schedule of shifts for this team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -274,7 +272,7 @@ public ScheduleRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a schedule object. The schedule creation process conforms to the One API guideline for resource based long running operations (RELO).When clients use the PUT method, if the schedule is provisioned, the operation updates the schedule; otherwise, the operation starts the schedule provisioning process in the background. During schedule provisioning, clients can use the GET method to get the schedule and look at the provisionStatus property for the current state of the provisioning. If the provisioning failed, clients can get additional information from the provisionStatusCode property. Clients can also inspect the configuration of the schedule. + * The schedule of shifts for this team. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/offershiftrequests/OfferShiftRequestsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/offershiftrequests/OfferShiftRequestsRequestBuilder.java index e62eb825410..2caa4f0867c 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/offershiftrequests/OfferShiftRequestsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/offershiftrequests/OfferShiftRequestsRequestBuilder.java @@ -60,21 +60,19 @@ public OfferShiftRequestsRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/schedule/offerShiftRequests{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the properties and relationships of all offerShiftRequest objects in a team. + * The offer requests for shifts in the schedule. * @return a {@link OfferShiftRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OfferShiftRequestCollectionResponse get() { return get(null); } /** - * Retrieve the properties and relationships of all offerShiftRequest objects in a team. + * The offer requests for shifts in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OfferShiftRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OfferShiftRequestCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OfferShiftRequestCollectionResponse get(@jakarta.annotation.Nullable fina return this.requestAdapter.send(requestInfo, errorMapping, OfferShiftRequestCollectionResponse::createFromDiscriminatorValue); } /** - * Create an instance of an offerShiftRequest. + * Create new navigation property to offerShiftRequests for groups * @param body The request body * @return a {@link OfferShiftRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OfferShiftRequest post(@jakarta.annotation.Nonnull final OfferShiftRequest body) { return post(body, null); } /** - * Create an instance of an offerShiftRequest. + * Create new navigation property to offerShiftRequests for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OfferShiftRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OfferShiftRequest post(@jakarta.annotation.Nonnull final OfferShiftRequest body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OfferShiftRequest post(@jakarta.annotation.Nonnull final OfferShiftReques return this.requestAdapter.send(requestInfo, errorMapping, OfferShiftRequest::createFromDiscriminatorValue); } /** - * Retrieve the properties and relationships of all offerShiftRequest objects in a team. + * The offer requests for shifts in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of all offerShiftRequest objects in a team. + * The offer requests for shifts in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an instance of an offerShiftRequest. + * Create new navigation property to offerShiftRequests for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an instance of an offerShiftRequest. + * Create new navigation property to offerShiftRequests for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public OfferShiftRequestsRequestBuilder withUrl(@jakarta.annotation.Nonnull fina return new OfferShiftRequestsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the properties and relationships of all offerShiftRequest objects in a team. + * The offer requests for shifts in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/offershiftrequests/item/OfferShiftRequestItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/offershiftrequests/item/OfferShiftRequestItemRequestBuilder.java index 3d895ba3a3c..f18e7cf9cd9 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/offershiftrequests/item/OfferShiftRequestItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/offershiftrequests/item/OfferShiftRequestItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of an offerShiftRequest object. + * The offer requests for shifts in the schedule. * @return a {@link OfferShiftRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OfferShiftRequest get() { return get(null); } /** - * Retrieve the properties and relationships of an offerShiftRequest object. + * The offer requests for shifts in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OfferShiftRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OfferShiftRequest get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of an offerShiftRequest object. + * The offer requests for shifts in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of an offerShiftRequest object. + * The offer requests for shifts in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public OfferShiftRequestItemRequestBuilder withUrl(@jakarta.annotation.Nonnull f public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of an offerShiftRequest object. + * The offer requests for shifts in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/openshiftchangerequests/OpenShiftChangeRequestsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/openshiftchangerequests/OpenShiftChangeRequestsRequestBuilder.java index 4a1cca56fb3..1c2debf2c08 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/openshiftchangerequests/OpenShiftChangeRequestsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/openshiftchangerequests/OpenShiftChangeRequestsRequestBuilder.java @@ -60,21 +60,19 @@ public OpenShiftChangeRequestsRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/schedule/openShiftChangeRequests{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of openShiftChangeRequest objects in a team. + * The open shift requests in the schedule. * @return a {@link OpenShiftChangeRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OpenShiftChangeRequestCollectionResponse get() { return get(null); } /** - * Retrieve a list of openShiftChangeRequest objects in a team. + * The open shift requests in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OpenShiftChangeRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OpenShiftChangeRequestCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OpenShiftChangeRequestCollectionResponse get(@jakarta.annotation.Nullable return this.requestAdapter.send(requestInfo, errorMapping, OpenShiftChangeRequestCollectionResponse::createFromDiscriminatorValue); } /** - * Create instance of an openShiftChangeRequest object. + * Create new navigation property to openShiftChangeRequests for groups * @param body The request body * @return a {@link OpenShiftChangeRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OpenShiftChangeRequest post(@jakarta.annotation.Nonnull final OpenShiftChangeRequest body) { return post(body, null); } /** - * Create instance of an openShiftChangeRequest object. + * Create new navigation property to openShiftChangeRequests for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OpenShiftChangeRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OpenShiftChangeRequest post(@jakarta.annotation.Nonnull final OpenShiftChangeRequest body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OpenShiftChangeRequest post(@jakarta.annotation.Nonnull final OpenShiftCh return this.requestAdapter.send(requestInfo, errorMapping, OpenShiftChangeRequest::createFromDiscriminatorValue); } /** - * Retrieve a list of openShiftChangeRequest objects in a team. + * The open shift requests in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of openShiftChangeRequest objects in a team. + * The open shift requests in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create instance of an openShiftChangeRequest object. + * Create new navigation property to openShiftChangeRequests for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create instance of an openShiftChangeRequest object. + * Create new navigation property to openShiftChangeRequests for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public OpenShiftChangeRequestsRequestBuilder withUrl(@jakarta.annotation.Nonnull return new OpenShiftChangeRequestsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of openShiftChangeRequest objects in a team. + * The open shift requests in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/openshiftchangerequests/item/OpenShiftChangeRequestItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/openshiftchangerequests/item/OpenShiftChangeRequestItemRequestBuilder.java index 23dcc15bac7..85d6c72b4ad 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/openshiftchangerequests/item/OpenShiftChangeRequestItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/openshiftchangerequests/item/OpenShiftChangeRequestItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of an openShiftChangeRequest object. + * The open shift requests in the schedule. * @return a {@link OpenShiftChangeRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OpenShiftChangeRequest get() { return get(null); } /** - * Retrieve the properties and relationships of an openShiftChangeRequest object. + * The open shift requests in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OpenShiftChangeRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OpenShiftChangeRequest get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of an openShiftChangeRequest object. + * The open shift requests in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of an openShiftChangeRequest object. + * The open shift requests in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public OpenShiftChangeRequestItemRequestBuilder withUrl(@jakarta.annotation.Nonn public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of an openShiftChangeRequest object. + * The open shift requests in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/openshifts/OpenShiftsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/openshifts/OpenShiftsRequestBuilder.java index 7ab811f9be2..e99d1fba2de 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/openshifts/OpenShiftsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/openshifts/OpenShiftsRequestBuilder.java @@ -60,21 +60,19 @@ public OpenShiftsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/schedule/openShifts{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List openShift objects in a team. + * The set of open shifts in a scheduling group in the schedule. * @return a {@link OpenShiftCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OpenShiftCollectionResponse get() { return get(null); } /** - * List openShift objects in a team. + * The set of open shifts in a scheduling group in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OpenShiftCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OpenShiftCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OpenShiftCollectionResponse get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, OpenShiftCollectionResponse::createFromDiscriminatorValue); } /** - * Create an instance of an openShift object. + * Create new navigation property to openShifts for groups * @param body The request body * @return a {@link OpenShift} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OpenShift post(@jakarta.annotation.Nonnull final OpenShift body) { return post(body, null); } /** - * Create an instance of an openShift object. + * Create new navigation property to openShifts for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OpenShift} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OpenShift post(@jakarta.annotation.Nonnull final OpenShift body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OpenShift post(@jakarta.annotation.Nonnull final OpenShift body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, OpenShift::createFromDiscriminatorValue); } /** - * List openShift objects in a team. + * The set of open shifts in a scheduling group in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List openShift objects in a team. + * The set of open shifts in a scheduling group in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an instance of an openShift object. + * Create new navigation property to openShifts for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an instance of an openShift object. + * Create new navigation property to openShifts for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public OpenShiftsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new OpenShiftsRequestBuilder(rawUrl, requestAdapter); } /** - * List openShift objects in a team. + * The set of open shifts in a scheduling group in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/openshifts/item/OpenShiftItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/openshifts/item/OpenShiftItemRequestBuilder.java index 47734e264bd..0a6196f23db 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/openshifts/item/OpenShiftItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/openshifts/item/OpenShiftItemRequestBuilder.java @@ -37,18 +37,16 @@ public OpenShiftItemRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/schedule/openShifts/{openShift%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an openShift object. + * Delete navigation property openShifts for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an openShift object. + * Delete navigation property openShifts for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of an openshift object. + * The set of open shifts in a scheduling group in the schedule. * @return a {@link OpenShift} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OpenShift get() { return get(null); } /** - * Retrieve the properties and relationships of an openshift object. + * The set of open shifts in a scheduling group in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OpenShift} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OpenShift get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public OpenShift get(@jakarta.annotation.Nullable final java.util.function.Consu return this.requestAdapter.send(requestInfo, errorMapping, OpenShift::createFromDiscriminatorValue); } /** - * Update the properties of an openShift object. + * Update the navigation property openShifts in groups * @param body The request body * @return a {@link OpenShift} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OpenShift patch(@jakarta.annotation.Nonnull final OpenShift body) { return patch(body, null); } /** - * Update the properties of an openShift object. + * Update the navigation property openShifts in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OpenShift} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OpenShift patch(@jakarta.annotation.Nonnull final OpenShift body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public OpenShift patch(@jakarta.annotation.Nonnull final OpenShift body, @jakart return this.requestAdapter.send(requestInfo, errorMapping, OpenShift::createFromDiscriminatorValue); } /** - * Delete an openShift object. + * Delete navigation property openShifts for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an openShift object. + * Delete navigation property openShifts for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of an openshift object. + * The set of open shifts in a scheduling group in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of an openshift object. + * The set of open shifts in a scheduling group in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an openShift object. + * Update the navigation property openShifts in groups * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an openShift object. + * Update the navigation property openShifts in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public OpenShiftItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of an openshift object. + * The set of open shifts in a scheduling group in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/schedulinggroups/SchedulingGroupsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/schedulinggroups/SchedulingGroupsRequestBuilder.java index 074e53d0527..a2fddc63c12 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/schedulinggroups/SchedulingGroupsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/schedulinggroups/SchedulingGroupsRequestBuilder.java @@ -60,21 +60,19 @@ public SchedulingGroupsRequestBuilder(@jakarta.annotation.Nonnull final String r super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/schedule/schedulingGroups{?%24count,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of schedulingGroups in this schedule. + * The logical grouping of users in the schedule (usually by role). * @return a {@link SchedulingGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SchedulingGroupCollectionResponse get() { return get(null); } /** - * Get the list of schedulingGroups in this schedule. + * The logical grouping of users in the schedule (usually by role). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SchedulingGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SchedulingGroupCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public SchedulingGroupCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, SchedulingGroupCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new schedulingGroup. + * Create new navigation property to schedulingGroups for groups * @param body The request body * @return a {@link SchedulingGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SchedulingGroup post(@jakarta.annotation.Nonnull final SchedulingGroup body) { return post(body, null); } /** - * Create a new schedulingGroup. + * Create new navigation property to schedulingGroups for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SchedulingGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SchedulingGroup post(@jakarta.annotation.Nonnull final SchedulingGroup body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public SchedulingGroup post(@jakarta.annotation.Nonnull final SchedulingGroup bo return this.requestAdapter.send(requestInfo, errorMapping, SchedulingGroup::createFromDiscriminatorValue); } /** - * Get the list of schedulingGroups in this schedule. + * The logical grouping of users in the schedule (usually by role). * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of schedulingGroups in this schedule. + * The logical grouping of users in the schedule (usually by role). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new schedulingGroup. + * Create new navigation property to schedulingGroups for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new schedulingGroup. + * Create new navigation property to schedulingGroups for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public SchedulingGroupsRequestBuilder withUrl(@jakarta.annotation.Nonnull final return new SchedulingGroupsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of schedulingGroups in this schedule. + * The logical grouping of users in the schedule (usually by role). */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/schedulinggroups/item/SchedulingGroupItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/schedulinggroups/item/SchedulingGroupItemRequestBuilder.java index 38a2834660c..8c915453690 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/schedulinggroups/item/SchedulingGroupItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/schedulinggroups/item/SchedulingGroupItemRequestBuilder.java @@ -37,18 +37,16 @@ public SchedulingGroupItemRequestBuilder(@jakarta.annotation.Nonnull final Strin super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/schedule/schedulingGroups/{schedulingGroup%2Did}{?%24select}", rawUrl); } /** - * Mark a schedulingGroup as inactive by setting its isActive property.This method does not remove the schedulingGroup from the schedule. Existing shift instances assigned to the scheduling group remain part of the group. + * Delete navigation property schedulingGroups for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Mark a schedulingGroup as inactive by setting its isActive property.This method does not remove the schedulingGroup from the schedule. Existing shift instances assigned to the scheduling group remain part of the group. + * Delete navigation property schedulingGroups for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a schedulingGroup by ID. + * The logical grouping of users in the schedule (usually by role). * @return a {@link SchedulingGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SchedulingGroup get() { return get(null); } /** - * Retrieve the properties and relationships of a schedulingGroup by ID. + * The logical grouping of users in the schedule (usually by role). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SchedulingGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SchedulingGroup get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public SchedulingGroup get(@jakarta.annotation.Nullable final java.util.function return this.requestAdapter.send(requestInfo, errorMapping, SchedulingGroup::createFromDiscriminatorValue); } /** - * Replace an existing schedulingGroup. If the specified schedulingGroup doesn't exist, this method returns 404 Not found. + * Update the navigation property schedulingGroups in groups * @param body The request body * @return a {@link SchedulingGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SchedulingGroup patch(@jakarta.annotation.Nonnull final SchedulingGroup body) { return patch(body, null); } /** - * Replace an existing schedulingGroup. If the specified schedulingGroup doesn't exist, this method returns 404 Not found. + * Update the navigation property schedulingGroups in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SchedulingGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SchedulingGroup patch(@jakarta.annotation.Nonnull final SchedulingGroup body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public SchedulingGroup patch(@jakarta.annotation.Nonnull final SchedulingGroup b return this.requestAdapter.send(requestInfo, errorMapping, SchedulingGroup::createFromDiscriminatorValue); } /** - * Mark a schedulingGroup as inactive by setting its isActive property.This method does not remove the schedulingGroup from the schedule. Existing shift instances assigned to the scheduling group remain part of the group. + * Delete navigation property schedulingGroups for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Mark a schedulingGroup as inactive by setting its isActive property.This method does not remove the schedulingGroup from the schedule. Existing shift instances assigned to the scheduling group remain part of the group. + * Delete navigation property schedulingGroups for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a schedulingGroup by ID. + * The logical grouping of users in the schedule (usually by role). * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a schedulingGroup by ID. + * The logical grouping of users in the schedule (usually by role). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Replace an existing schedulingGroup. If the specified schedulingGroup doesn't exist, this method returns 404 Not found. + * Update the navigation property schedulingGroups in groups * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Replace an existing schedulingGroup. If the specified schedulingGroup doesn't exist, this method returns 404 Not found. + * Update the navigation property schedulingGroups in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public SchedulingGroupItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fin public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a schedulingGroup by ID. + * The logical grouping of users in the schedule (usually by role). */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/shifts/ShiftsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/shifts/ShiftsRequestBuilder.java index e87f3507546..f32d303d405 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/shifts/ShiftsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/shifts/ShiftsRequestBuilder.java @@ -60,21 +60,19 @@ public ShiftsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/schedule/shifts{?%24count,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of shift instances in a schedule. + * The shifts in the schedule. * @return a {@link ShiftCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ShiftCollectionResponse get() { return get(null); } /** - * Get the list of shift instances in a schedule. + * The shifts in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ShiftCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ShiftCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public ShiftCollectionResponse get(@jakarta.annotation.Nullable final java.util. return this.requestAdapter.send(requestInfo, errorMapping, ShiftCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new shift instance in a schedule. The duration of a shift cannot be less than 1 minute or longer than 24 hours. + * Create new navigation property to shifts for groups * @param body The request body * @return a {@link Shift} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Shift post(@jakarta.annotation.Nonnull final Shift body) { return post(body, null); } /** - * Create a new shift instance in a schedule. The duration of a shift cannot be less than 1 minute or longer than 24 hours. + * Create new navigation property to shifts for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Shift} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Shift post(@jakarta.annotation.Nonnull final Shift body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public Shift post(@jakarta.annotation.Nonnull final Shift body, @jakarta.annotat return this.requestAdapter.send(requestInfo, errorMapping, Shift::createFromDiscriminatorValue); } /** - * Get the list of shift instances in a schedule. + * The shifts in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of shift instances in a schedule. + * The shifts in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new shift instance in a schedule. The duration of a shift cannot be less than 1 minute or longer than 24 hours. + * Create new navigation property to shifts for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new shift instance in a schedule. The duration of a shift cannot be less than 1 minute or longer than 24 hours. + * Create new navigation property to shifts for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ShiftsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw return new ShiftsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of shift instances in a schedule. + * The shifts in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/shifts/item/ShiftItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/shifts/item/ShiftItemRequestBuilder.java index 08b8edb22d6..0291e019b24 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/shifts/item/ShiftItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/shifts/item/ShiftItemRequestBuilder.java @@ -37,18 +37,16 @@ public ShiftItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/schedule/shifts/{shift%2Did}{?%24select}", rawUrl); } /** - * Delete a shift from the schedule. + * Delete navigation property shifts for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a shift from the schedule. + * Delete navigation property shifts for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a shift object by ID. + * The shifts in the schedule. * @return a {@link Shift} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Shift get() { return get(null); } /** - * Retrieve the properties and relationships of a shift object by ID. + * The shifts in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Shift} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Shift get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public Shift get(@jakarta.annotation.Nullable final java.util.function.Consumer< return this.requestAdapter.send(requestInfo, errorMapping, Shift::createFromDiscriminatorValue); } /** - * Replace an existing shift. If the specified shift doesn't exist, this method returns 404 Not found. The duration of a shift can't be less than 1 minute or longer than 24 hours. + * Update the navigation property shifts in groups * @param body The request body * @return a {@link Shift} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Shift patch(@jakarta.annotation.Nonnull final Shift body) { return patch(body, null); } /** - * Replace an existing shift. If the specified shift doesn't exist, this method returns 404 Not found. The duration of a shift can't be less than 1 minute or longer than 24 hours. + * Update the navigation property shifts in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Shift} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Shift patch(@jakarta.annotation.Nonnull final Shift body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public Shift patch(@jakarta.annotation.Nonnull final Shift body, @jakarta.annota return this.requestAdapter.send(requestInfo, errorMapping, Shift::createFromDiscriminatorValue); } /** - * Delete a shift from the schedule. + * Delete navigation property shifts for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a shift from the schedule. + * Delete navigation property shifts for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a shift object by ID. + * The shifts in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a shift object by ID. + * The shifts in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Replace an existing shift. If the specified shift doesn't exist, this method returns 404 Not found. The duration of a shift can't be less than 1 minute or longer than 24 hours. + * Update the navigation property shifts in groups * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Replace an existing shift. If the specified shift doesn't exist, this method returns 404 Not found. The duration of a shift can't be less than 1 minute or longer than 24 hours. + * Update the navigation property shifts in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public ShiftItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a shift object by ID. + * The shifts in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/swapshiftschangerequests/SwapShiftsChangeRequestsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/swapshiftschangerequests/SwapShiftsChangeRequestsRequestBuilder.java index 0068ac3e39d..f9d67dde3a7 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/swapshiftschangerequests/SwapShiftsChangeRequestsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/swapshiftschangerequests/SwapShiftsChangeRequestsRequestBuilder.java @@ -60,21 +60,19 @@ public SwapShiftsChangeRequestsRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/schedule/swapShiftsChangeRequests{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of swapShiftsChangeRequest objects in the team. + * The swap requests for shifts in the schedule. * @return a {@link SwapShiftsChangeRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SwapShiftsChangeRequestCollectionResponse get() { return get(null); } /** - * Retrieve a list of swapShiftsChangeRequest objects in the team. + * The swap requests for shifts in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SwapShiftsChangeRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SwapShiftsChangeRequestCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public SwapShiftsChangeRequestCollectionResponse get(@jakarta.annotation.Nullabl return this.requestAdapter.send(requestInfo, errorMapping, SwapShiftsChangeRequestCollectionResponse::createFromDiscriminatorValue); } /** - * Create an instance of a swapShiftsChangeRequest object. + * Create new navigation property to swapShiftsChangeRequests for groups * @param body The request body * @return a {@link SwapShiftsChangeRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SwapShiftsChangeRequest post(@jakarta.annotation.Nonnull final SwapShiftsChangeRequest body) { return post(body, null); } /** - * Create an instance of a swapShiftsChangeRequest object. + * Create new navigation property to swapShiftsChangeRequests for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SwapShiftsChangeRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SwapShiftsChangeRequest post(@jakarta.annotation.Nonnull final SwapShiftsChangeRequest body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public SwapShiftsChangeRequest post(@jakarta.annotation.Nonnull final SwapShifts return this.requestAdapter.send(requestInfo, errorMapping, SwapShiftsChangeRequest::createFromDiscriminatorValue); } /** - * Retrieve a list of swapShiftsChangeRequest objects in the team. + * The swap requests for shifts in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of swapShiftsChangeRequest objects in the team. + * The swap requests for shifts in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an instance of a swapShiftsChangeRequest object. + * Create new navigation property to swapShiftsChangeRequests for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an instance of a swapShiftsChangeRequest object. + * Create new navigation property to swapShiftsChangeRequests for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public SwapShiftsChangeRequestsRequestBuilder withUrl(@jakarta.annotation.Nonnul return new SwapShiftsChangeRequestsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of swapShiftsChangeRequest objects in the team. + * The swap requests for shifts in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/swapshiftschangerequests/item/SwapShiftsChangeRequestItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/swapshiftschangerequests/item/SwapShiftsChangeRequestItemRequestBuilder.java index 0b5c8878a37..4af81e94c7a 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/swapshiftschangerequests/item/SwapShiftsChangeRequestItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/swapshiftschangerequests/item/SwapShiftsChangeRequestItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a swapShiftsChangeRequest object. + * The swap requests for shifts in the schedule. * @return a {@link SwapShiftsChangeRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SwapShiftsChangeRequest get() { return get(null); } /** - * Retrieve the properties and relationships of a swapShiftsChangeRequest object. + * The swap requests for shifts in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SwapShiftsChangeRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SwapShiftsChangeRequest get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a swapShiftsChangeRequest object. + * The swap requests for shifts in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a swapShiftsChangeRequest object. + * The swap requests for shifts in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public SwapShiftsChangeRequestItemRequestBuilder withUrl(@jakarta.annotation.Non public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a swapShiftsChangeRequest object. + * The swap requests for shifts in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/timeoffreasons/TimeOffReasonsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/timeoffreasons/TimeOffReasonsRequestBuilder.java index 7cbc6db47eb..aa73fe05286 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/timeoffreasons/TimeOffReasonsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/timeoffreasons/TimeOffReasonsRequestBuilder.java @@ -60,21 +60,19 @@ public TimeOffReasonsRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/schedule/timeOffReasons{?%24count,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of timeOffReasons in a schedule. + * The set of reasons for a time off in the schedule. * @return a {@link TimeOffReasonCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOffReasonCollectionResponse get() { return get(null); } /** - * Get the list of timeOffReasons in a schedule. + * The set of reasons for a time off in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TimeOffReasonCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOffReasonCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TimeOffReasonCollectionResponse get(@jakarta.annotation.Nullable final ja return this.requestAdapter.send(requestInfo, errorMapping, TimeOffReasonCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new timeOffReason. + * Create new navigation property to timeOffReasons for groups * @param body The request body * @return a {@link TimeOffReason} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOffReason post(@jakarta.annotation.Nonnull final TimeOffReason body) { return post(body, null); } /** - * Create a new timeOffReason. + * Create new navigation property to timeOffReasons for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TimeOffReason} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOffReason post(@jakarta.annotation.Nonnull final TimeOffReason body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public TimeOffReason post(@jakarta.annotation.Nonnull final TimeOffReason body, return this.requestAdapter.send(requestInfo, errorMapping, TimeOffReason::createFromDiscriminatorValue); } /** - * Get the list of timeOffReasons in a schedule. + * The set of reasons for a time off in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of timeOffReasons in a schedule. + * The set of reasons for a time off in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new timeOffReason. + * Create new navigation property to timeOffReasons for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new timeOffReason. + * Create new navigation property to timeOffReasons for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public TimeOffReasonsRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new TimeOffReasonsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of timeOffReasons in a schedule. + * The set of reasons for a time off in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/timeoffreasons/item/TimeOffReasonItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/timeoffreasons/item/TimeOffReasonItemRequestBuilder.java index 73e5f46f80d..0f5cdef38b7 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/timeoffreasons/item/TimeOffReasonItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/timeoffreasons/item/TimeOffReasonItemRequestBuilder.java @@ -37,18 +37,16 @@ public TimeOffReasonItemRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/schedule/timeOffReasons/{timeOffReason%2Did}{?%24select}", rawUrl); } /** - * Mark a timeOffReason as inactive by setting the isActive property. Every team must include at least one timeoff reason. This method doesn't remove the specified timeOffReason instance. timeOffItem instances that have been assigned this reason remain assigned to this reason. + * Delete navigation property timeOffReasons for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Mark a timeOffReason as inactive by setting the isActive property. Every team must include at least one timeoff reason. This method doesn't remove the specified timeOffReason instance. timeOffItem instances that have been assigned this reason remain assigned to this reason. + * Delete navigation property timeOffReasons for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a timeOffReason object by ID. + * The set of reasons for a time off in the schedule. * @return a {@link TimeOffReason} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOffReason get() { return get(null); } /** - * Retrieve the properties and relationships of a timeOffReason object by ID. + * The set of reasons for a time off in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TimeOffReason} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOffReason get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public TimeOffReason get(@jakarta.annotation.Nullable final java.util.function.C return this.requestAdapter.send(requestInfo, errorMapping, TimeOffReason::createFromDiscriminatorValue); } /** - * Replace an existing timeOffReason. If the specified timeOffReason doesn't exist, this method returns 404 Not found. + * Update the navigation property timeOffReasons in groups * @param body The request body * @return a {@link TimeOffReason} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOffReason patch(@jakarta.annotation.Nonnull final TimeOffReason body) { return patch(body, null); } /** - * Replace an existing timeOffReason. If the specified timeOffReason doesn't exist, this method returns 404 Not found. + * Update the navigation property timeOffReasons in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TimeOffReason} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOffReason patch(@jakarta.annotation.Nonnull final TimeOffReason body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public TimeOffReason patch(@jakarta.annotation.Nonnull final TimeOffReason body, return this.requestAdapter.send(requestInfo, errorMapping, TimeOffReason::createFromDiscriminatorValue); } /** - * Mark a timeOffReason as inactive by setting the isActive property. Every team must include at least one timeoff reason. This method doesn't remove the specified timeOffReason instance. timeOffItem instances that have been assigned this reason remain assigned to this reason. + * Delete navigation property timeOffReasons for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Mark a timeOffReason as inactive by setting the isActive property. Every team must include at least one timeoff reason. This method doesn't remove the specified timeOffReason instance. timeOffItem instances that have been assigned this reason remain assigned to this reason. + * Delete navigation property timeOffReasons for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a timeOffReason object by ID. + * The set of reasons for a time off in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a timeOffReason object by ID. + * The set of reasons for a time off in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Replace an existing timeOffReason. If the specified timeOffReason doesn't exist, this method returns 404 Not found. + * Update the navigation property timeOffReasons in groups * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Replace an existing timeOffReason. If the specified timeOffReason doesn't exist, this method returns 404 Not found. + * Update the navigation property timeOffReasons in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public TimeOffReasonItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a timeOffReason object by ID. + * The set of reasons for a time off in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/timeoffrequests/TimeOffRequestsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/timeoffrequests/TimeOffRequestsRequestBuilder.java index 6c90d573726..f2676871be8 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/timeoffrequests/TimeOffRequestsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/timeoffrequests/TimeOffRequestsRequestBuilder.java @@ -60,21 +60,19 @@ public TimeOffRequestsRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/schedule/timeOffRequests{?%24count,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of timeOffRequest objects in the team. + * The time off requests in the schedule. * @return a {@link TimeOffRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOffRequestCollectionResponse get() { return get(null); } /** - * Retrieve a list of timeOffRequest objects in the team. + * The time off requests in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TimeOffRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOffRequestCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public TimeOffRequest post(@jakarta.annotation.Nonnull final TimeOffRequest body return this.requestAdapter.send(requestInfo, errorMapping, TimeOffRequest::createFromDiscriminatorValue); } /** - * Retrieve a list of timeOffRequest objects in the team. + * The time off requests in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of timeOffRequest objects in the team. + * The time off requests in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public TimeOffRequestsRequestBuilder withUrl(@jakarta.annotation.Nonnull final S return new TimeOffRequestsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of timeOffRequest objects in the team. + * The time off requests in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/timeoffrequests/item/TimeOffRequestItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/timeoffrequests/item/TimeOffRequestItemRequestBuilder.java index f95cc6edbb8..54c093d0bb1 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/timeoffrequests/item/TimeOffRequestItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/timeoffrequests/item/TimeOffRequestItemRequestBuilder.java @@ -37,18 +37,16 @@ public TimeOffRequestItemRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/schedule/timeOffRequests/{timeOffRequest%2Did}{?%24select}", rawUrl); } /** - * Delete a timeOffRequest object. + * Delete navigation property timeOffRequests for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a timeOffRequest object. + * Delete navigation property timeOffRequests for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a timeoffrequest object. + * The time off requests in the schedule. * @return a {@link TimeOffRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOffRequest get() { return get(null); } /** - * Retrieve the properties and relationships of a timeoffrequest object. + * The time off requests in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TimeOffRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOffRequest get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -106,7 +102,7 @@ public TimeOffRequest patch(@jakarta.annotation.Nonnull final TimeOffRequest bod return this.requestAdapter.send(requestInfo, errorMapping, TimeOffRequest::createFromDiscriminatorValue); } /** - * Delete a timeOffRequest object. + * Delete navigation property timeOffRequests for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -114,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a timeOffRequest object. + * Delete navigation property timeOffRequests for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a timeoffrequest object. + * The time off requests in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a timeoffrequest object. + * The time off requests in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public TimeOffRequestItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fina public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a timeoffrequest object. + * The time off requests in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/timesoff/TimesOffRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/timesoff/TimesOffRequestBuilder.java index 7bc2322194f..f37f55bb6ff 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/timesoff/TimesOffRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/timesoff/TimesOffRequestBuilder.java @@ -60,21 +60,19 @@ public TimesOffRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/schedule/timesOff{?%24count,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of timeOff instances in a schedule. + * The instances of times off in the schedule. * @return a {@link TimeOffCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOffCollectionResponse get() { return get(null); } /** - * Get the list of timeOff instances in a schedule. + * The instances of times off in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TimeOffCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOffCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TimeOffCollectionResponse get(@jakarta.annotation.Nullable final java.uti return this.requestAdapter.send(requestInfo, errorMapping, TimeOffCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new timeOff instance in a schedule. + * Create new navigation property to timesOff for groups * @param body The request body * @return a {@link TimeOff} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOff post(@jakarta.annotation.Nonnull final TimeOff body) { return post(body, null); } /** - * Create a new timeOff instance in a schedule. + * Create new navigation property to timesOff for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TimeOff} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOff post(@jakarta.annotation.Nonnull final TimeOff body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public TimeOff post(@jakarta.annotation.Nonnull final TimeOff body, @jakarta.ann return this.requestAdapter.send(requestInfo, errorMapping, TimeOff::createFromDiscriminatorValue); } /** - * Get the list of timeOff instances in a schedule. + * The instances of times off in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of timeOff instances in a schedule. + * The instances of times off in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new timeOff instance in a schedule. + * Create new navigation property to timesOff for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new timeOff instance in a schedule. + * Create new navigation property to timesOff for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public TimesOffRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new TimesOffRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of timeOff instances in a schedule. + * The instances of times off in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/timesoff/item/TimeOffItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/timesoff/item/TimeOffItemRequestBuilder.java index d270e37ec7e..73684163a1b 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/timesoff/item/TimeOffItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/schedule/timesoff/item/TimeOffItemRequestBuilder.java @@ -37,18 +37,16 @@ public TimeOffItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/schedule/timesOff/{timeOff%2Did}{?%24select}", rawUrl); } /** - * Delete a timeOff instance from a schedule. + * Delete navigation property timesOff for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a timeOff instance from a schedule. + * Delete navigation property timesOff for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a timeOff object by ID. + * The instances of times off in the schedule. * @return a {@link TimeOff} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOff get() { return get(null); } /** - * Retrieve the properties and relationships of a timeOff object by ID. + * The instances of times off in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TimeOff} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOff get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public TimeOff get(@jakarta.annotation.Nullable final java.util.function.Consume return this.requestAdapter.send(requestInfo, errorMapping, TimeOff::createFromDiscriminatorValue); } /** - * Replace an existing timeOff object. If the specified timeOff object doesn't exist, this method returns 404 Not found. + * Update the navigation property timesOff in groups * @param body The request body * @return a {@link TimeOff} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOff patch(@jakarta.annotation.Nonnull final TimeOff body) { return patch(body, null); } /** - * Replace an existing timeOff object. If the specified timeOff object doesn't exist, this method returns 404 Not found. + * Update the navigation property timesOff in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TimeOff} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOff patch(@jakarta.annotation.Nonnull final TimeOff body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public TimeOff patch(@jakarta.annotation.Nonnull final TimeOff body, @jakarta.an return this.requestAdapter.send(requestInfo, errorMapping, TimeOff::createFromDiscriminatorValue); } /** - * Delete a timeOff instance from a schedule. + * Delete navigation property timesOff for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a timeOff instance from a schedule. + * Delete navigation property timesOff for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a timeOff object by ID. + * The instances of times off in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a timeOff object by ID. + * The instances of times off in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Replace an existing timeOff object. If the specified timeOff object doesn't exist, this method returns 404 Not found. + * Update the navigation property timesOff in groups * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Replace an existing timeOff object. If the specified timeOff object doesn't exist, this method returns 404 Not found. + * Update the navigation property timesOff in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public TimeOffItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a timeOff object by ID. + * The instances of times off in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/tags/TagsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/tags/TagsRequestBuilder.java index 61a65263ffd..4c3480b6e35 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/tags/TagsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/tags/TagsRequestBuilder.java @@ -60,21 +60,19 @@ public TagsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/tags{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the tag objects and their properties. + * The tags associated with the team. * @return a {@link TeamworkTagCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkTagCollectionResponse get() { return get(null); } /** - * Get a list of the tag objects and their properties. + * The tags associated with the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamworkTagCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkTagCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TeamworkTagCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, TeamworkTagCollectionResponse::createFromDiscriminatorValue); } /** - * Create a standard tag for members in a team. + * Create new navigation property to tags for groups * @param body The request body * @return a {@link TeamworkTag} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkTag post(@jakarta.annotation.Nonnull final TeamworkTag body) { return post(body, null); } /** - * Create a standard tag for members in a team. + * Create new navigation property to tags for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamworkTag} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkTag post(@jakarta.annotation.Nonnull final TeamworkTag body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public TeamworkTag post(@jakarta.annotation.Nonnull final TeamworkTag body, @jak return this.requestAdapter.send(requestInfo, errorMapping, TeamworkTag::createFromDiscriminatorValue); } /** - * Get a list of the tag objects and their properties. + * The tags associated with the team. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the tag objects and their properties. + * The tags associated with the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a standard tag for members in a team. + * Create new navigation property to tags for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a standard tag for members in a team. + * Create new navigation property to tags for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public TagsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr return new TagsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the tag objects and their properties. + * The tags associated with the team. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/tags/item/TeamworkTagItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/tags/item/TeamworkTagItemRequestBuilder.java index 2460c2852e5..e3c4fdf4fa2 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/tags/item/TeamworkTagItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/tags/item/TeamworkTagItemRequestBuilder.java @@ -46,18 +46,16 @@ public TeamworkTagItemRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/tags/{teamworkTag%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a tag object permanently. + * Delete navigation property tags for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a tag object permanently. + * Delete navigation property tags for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a tag object. + * The tags associated with the team. * @return a {@link TeamworkTag} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkTag get() { return get(null); } /** - * Read the properties and relationships of a tag object. + * The tags associated with the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamworkTag} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkTag get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public TeamworkTag get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.send(requestInfo, errorMapping, TeamworkTag::createFromDiscriminatorValue); } /** - * Update the properties of a tag object. + * Update the navigation property tags in groups * @param body The request body * @return a {@link TeamworkTag} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkTag patch(@jakarta.annotation.Nonnull final TeamworkTag body) { return patch(body, null); } /** - * Update the properties of a tag object. + * Update the navigation property tags in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamworkTag} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkTag patch(@jakarta.annotation.Nonnull final TeamworkTag body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public TeamworkTag patch(@jakarta.annotation.Nonnull final TeamworkTag body, @ja return this.requestAdapter.send(requestInfo, errorMapping, TeamworkTag::createFromDiscriminatorValue); } /** - * Delete a tag object permanently. + * Delete navigation property tags for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a tag object permanently. + * Delete navigation property tags for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a tag object. + * The tags associated with the team. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a tag object. + * The tags associated with the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a tag object. + * Update the navigation property tags in groups * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a tag object. + * Update the navigation property tags in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public TeamworkTagItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final S public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a tag object. + * The tags associated with the team. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/tags/item/members/MembersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/tags/item/members/MembersRequestBuilder.java index 4290775ab6b..5a61a62df33 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/tags/item/members/MembersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/tags/item/members/MembersRequestBuilder.java @@ -60,21 +60,19 @@ public MembersRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/tags/{teamworkTag%2Did}/members{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the members of a standard tag in a team and their properties. + * Users assigned to the tag. * @return a {@link TeamworkTagMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkTagMemberCollectionResponse get() { return get(null); } /** - * Get a list of the members of a standard tag in a team and their properties. + * Users assigned to the tag. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamworkTagMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkTagMemberCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TeamworkTagMemberCollectionResponse get(@jakarta.annotation.Nullable fina return this.requestAdapter.send(requestInfo, errorMapping, TeamworkTagMemberCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new teamworkTagMember object in a team. + * Create new navigation property to members for groups * @param body The request body * @return a {@link TeamworkTagMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkTagMember post(@jakarta.annotation.Nonnull final TeamworkTagMember body) { return post(body, null); } /** - * Create a new teamworkTagMember object in a team. + * Create new navigation property to members for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamworkTagMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkTagMember post(@jakarta.annotation.Nonnull final TeamworkTagMember body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public TeamworkTagMember post(@jakarta.annotation.Nonnull final TeamworkTagMembe return this.requestAdapter.send(requestInfo, errorMapping, TeamworkTagMember::createFromDiscriminatorValue); } /** - * Get a list of the members of a standard tag in a team and their properties. + * Users assigned to the tag. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the members of a standard tag in a team and their properties. + * Users assigned to the tag. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new teamworkTagMember object in a team. + * Create new navigation property to members for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new teamworkTagMember object in a team. + * Create new navigation property to members for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public MembersRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new MembersRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the members of a standard tag in a team and their properties. + * Users assigned to the tag. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/team/tags/item/members/item/TeamworkTagMemberItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/team/tags/item/members/item/TeamworkTagMemberItemRequestBuilder.java index 3a04828ec12..c423803ee65 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/team/tags/item/members/item/TeamworkTagMemberItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/team/tags/item/members/item/TeamworkTagMemberItemRequestBuilder.java @@ -37,18 +37,16 @@ public TeamworkTagMemberItemRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/groups/{group%2Did}/team/tags/{teamworkTag%2Did}/members/{teamworkTagMember%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a member from a standard tag in a team. + * Delete navigation property members for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a member from a standard tag in a team. + * Delete navigation property members for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the properties and relationships of a member of a standard tag in a team. + * Users assigned to the tag. * @return a {@link TeamworkTagMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkTagMember get() { return get(null); } /** - * Get the properties and relationships of a member of a standard tag in a team. + * Users assigned to the tag. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamworkTagMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkTagMember get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -106,7 +102,7 @@ public TeamworkTagMember patch(@jakarta.annotation.Nonnull final TeamworkTagMemb return this.requestAdapter.send(requestInfo, errorMapping, TeamworkTagMember::createFromDiscriminatorValue); } /** - * Delete a member from a standard tag in a team. + * Delete navigation property members for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -114,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a member from a standard tag in a team. + * Delete navigation property members for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the properties and relationships of a member of a standard tag in a team. + * Users assigned to the tag. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the properties and relationships of a member of a standard tag in a team. + * Users assigned to the tag. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public TeamworkTagMemberItemRequestBuilder withUrl(@jakarta.annotation.Nonnull f public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the properties and relationships of a member of a standard tag in a team. + * Users assigned to the tag. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/threads/ThreadsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/threads/ThreadsRequestBuilder.java index 039d7de2606..3343e6e8181 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/threads/ThreadsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/threads/ThreadsRequestBuilder.java @@ -60,21 +60,19 @@ public ThreadsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/groups/{group%2Did}/threads{?%24count,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get all the threads of a group. + * The group's conversation threads. Nullable. * @return a {@link ConversationThreadCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationThreadCollectionResponse get() { return get(null); } /** - * Get all the threads of a group. + * The group's conversation threads. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationThreadCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationThreadCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public ConversationThreadCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, ConversationThreadCollectionResponse::createFromDiscriminatorValue); } /** - * Start a new group conversation by first creating a thread. A new conversation, conversation thread, and post are created in the group.Use reply thread or reply post to further post to that thread. Note: You can also start a new thread in an existing conversation. + * Create new navigation property to threads for groups * @param body The request body * @return a {@link ConversationThread} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationThread post(@jakarta.annotation.Nonnull final ConversationThread body) { return post(body, null); } /** - * Start a new group conversation by first creating a thread. A new conversation, conversation thread, and post are created in the group.Use reply thread or reply post to further post to that thread. Note: You can also start a new thread in an existing conversation. + * Create new navigation property to threads for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationThread} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationThread post(@jakarta.annotation.Nonnull final ConversationThread body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public ConversationThread post(@jakarta.annotation.Nonnull final ConversationThr return this.requestAdapter.send(requestInfo, errorMapping, ConversationThread::createFromDiscriminatorValue); } /** - * Get all the threads of a group. + * The group's conversation threads. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get all the threads of a group. + * The group's conversation threads. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Start a new group conversation by first creating a thread. A new conversation, conversation thread, and post are created in the group.Use reply thread or reply post to further post to that thread. Note: You can also start a new thread in an existing conversation. + * Create new navigation property to threads for groups * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Start a new group conversation by first creating a thread. A new conversation, conversation thread, and post are created in the group.Use reply thread or reply post to further post to that thread. Note: You can also start a new thread in an existing conversation. + * Create new navigation property to threads for groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ThreadsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new ThreadsRequestBuilder(rawUrl, requestAdapter); } /** - * Get all the threads of a group. + * The group's conversation threads. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/threads/item/ConversationThreadItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/threads/item/ConversationThreadItemRequestBuilder.java index c4775506e57..e146f5bbac0 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/threads/item/ConversationThreadItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/threads/item/ConversationThreadItemRequestBuilder.java @@ -55,18 +55,16 @@ public ConversationThreadItemRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/groups/{group%2Did}/threads/{conversationThread%2Did}{?%24select}", rawUrl); } /** - * Delete conversationThread. + * Delete navigation property threads for groups * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete conversationThread. + * Delete navigation property threads for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -75,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get a specific thread that belongs to a group. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation. + * The group's conversation threads. Nullable. * @return a {@link ConversationThread} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationThread get() { return get(null); } /** - * Get a specific thread that belongs to a group. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation. + * The group's conversation threads. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationThread} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationThread get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -99,23 +95,21 @@ public ConversationThread get(@jakarta.annotation.Nullable final java.util.funct return this.requestAdapter.send(requestInfo, errorMapping, ConversationThread::createFromDiscriminatorValue); } /** - * Update conversation thread + * Update the navigation property threads in groups * @param body The request body * @return a {@link ConversationThread} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationThread patch(@jakarta.annotation.Nonnull final ConversationThread body) { return patch(body, null); } /** - * Update conversation thread + * Update the navigation property threads in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationThread} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationThread patch(@jakarta.annotation.Nonnull final ConversationThread body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +120,7 @@ public ConversationThread patch(@jakarta.annotation.Nonnull final ConversationTh return this.requestAdapter.send(requestInfo, errorMapping, ConversationThread::createFromDiscriminatorValue); } /** - * Delete conversationThread. + * Delete navigation property threads for groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +128,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete conversationThread. + * Delete navigation property threads for groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get a specific thread that belongs to a group. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation. + * The group's conversation threads. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -154,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a specific thread that belongs to a group. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation. + * The group's conversation threads. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update conversation thread + * Update the navigation property threads in groups * @param body The request body * @return a {@link RequestInformation} */ @@ -175,7 +169,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update conversation thread + * Update the navigation property threads in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -206,7 +200,7 @@ public ConversationThreadItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get a specific thread that belongs to a group. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation. + * The group's conversation threads. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/threads/item/posts/PostsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/threads/item/posts/PostsRequestBuilder.java index b8f479420c4..43efd8f755e 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/threads/item/posts/PostsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/threads/item/posts/PostsRequestBuilder.java @@ -59,21 +59,19 @@ public PostsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/groups/{group%2Did}/threads/{conversationThread%2Did}/posts{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get the properties and relationships of a post in a specified thread. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation. Since the post resource supports extensions, you can also use the GET operation to get custom properties and extension data in a post instance. + * Get posts from groups * @return a {@link PostCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PostCollectionResponse get() { return get(null); } /** - * Get the properties and relationships of a post in a specified thread. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation. Since the post resource supports extensions, you can also use the GET operation to get custom properties and extension data in a post instance. + * Get posts from groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PostCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PostCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public PostCollectionResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, PostCollectionResponse::createFromDiscriminatorValue); } /** - * Get the properties and relationships of a post in a specified thread. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation. Since the post resource supports extensions, you can also use the GET operation to get custom properties and extension data in a post instance. + * Get posts from groups * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the properties and relationships of a post in a specified thread. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation. Since the post resource supports extensions, you can also use the GET operation to get custom properties and extension data in a post instance. + * Get posts from groups * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public PostsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new PostsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the properties and relationships of a post in a specified thread. You can specify both the parent conversation and the thread, or, you can specify the thread without referencing the parent conversation. Since the post resource supports extensions, you can also use the GET operation to get custom properties and extension data in a post instance. + * Get posts from groups */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/threads/item/posts/item/attachments/AttachmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/threads/item/posts/item/attachments/AttachmentsRequestBuilder.java index 3acc9c34fa7..509ce9f9eaa 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/threads/item/posts/item/attachments/AttachmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/threads/item/posts/item/attachments/AttachmentsRequestBuilder.java @@ -69,21 +69,19 @@ public AttachmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/groups/{group%2Did}/threads/{conversationThread%2Did}/posts/{post%2Did}/attachments{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of attachment objects attached to a post. + * Read-only. Nullable. Supports $expand. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get() { return get(null); } /** - * Retrieve a list of attachment objects attached to a post. + * Read-only. Nullable. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -118,7 +116,7 @@ public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Retrieve a list of attachment objects attached to a post. + * Read-only. Nullable. Supports $expand. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -126,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of attachment objects attached to a post. + * Read-only. Nullable. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -172,7 +170,7 @@ public AttachmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AttachmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of attachment objects attached to a post. + * Read-only. Nullable. Supports $expand. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/threads/item/posts/item/extensions/ExtensionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/threads/item/posts/item/extensions/ExtensionsRequestBuilder.java index 87cc7a12be5..6b1dc029713 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/threads/item/posts/item/extensions/ExtensionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/threads/item/posts/item/extensions/ExtensionsRequestBuilder.java @@ -60,7 +60,7 @@ public ExtensionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/groups/{group%2Did}/threads/{conversationThread%2Did}/posts/{post%2Did}/extensions{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public ExtensionCollectionResponse get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, Extension::createFromDiscriminatorValue); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public ExtensionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ExtensionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/threads/item/posts/item/extensions/item/ExtensionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/threads/item/posts/item/extensions/item/ExtensionItemRequestBuilder.java index 7986fbc7dff..5c49f92f972 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/threads/item/posts/item/extensions/item/ExtensionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/threads/item/posts/item/extensions/item/ExtensionItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public Extension get(@jakarta.annotation.Nullable final java.util.function.Consu return this.requestAdapter.send(requestInfo, errorMapping, Extension::createFromDiscriminatorValue); } /** - * Update an open extension (openTypeExtension object) with the properties in the request body: The data in an extension can be primitive types, or arrays of primitive types. See the table in the Permissions section for the list of resources that support open extensions. + * Update the navigation property extensions in groups * @param body The request body * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension patch(@jakarta.annotation.Nonnull final Extension body) { return patch(body, null); } /** - * Update an open extension (openTypeExtension object) with the properties in the request body: The data in an extension can be primitive types, or arrays of primitive types. See the table in the Permissions section for the list of resources that support open extensions. + * Update the navigation property extensions in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension patch(@jakarta.annotation.Nonnull final Extension body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update an open extension (openTypeExtension object) with the properties in the request body: The data in an extension can be primitive types, or arrays of primitive types. See the table in the Permissions section for the list of resources that support open extensions. + * Update the navigation property extensions in groups * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update an open extension (openTypeExtension object) with the properties in the request body: The data in an extension can be primitive types, or arrays of primitive types. See the table in the Permissions section for the list of resources that support open extensions. + * Update the navigation property extensions in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public ExtensionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/threads/item/posts/item/inreplyto/attachments/AttachmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/threads/item/posts/item/inreplyto/attachments/AttachmentsRequestBuilder.java index 6d00bbe9117..1090e06da0e 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/threads/item/posts/item/inreplyto/attachments/AttachmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/threads/item/posts/item/inreplyto/attachments/AttachmentsRequestBuilder.java @@ -69,21 +69,19 @@ public AttachmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/groups/{group%2Did}/threads/{conversationThread%2Did}/posts/{post%2Did}/inReplyTo/attachments{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of attachment objects attached to a post. + * Read-only. Nullable. Supports $expand. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get() { return get(null); } /** - * Retrieve a list of attachment objects attached to a post. + * Read-only. Nullable. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -118,7 +116,7 @@ public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Retrieve a list of attachment objects attached to a post. + * Read-only. Nullable. Supports $expand. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -126,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of attachment objects attached to a post. + * Read-only. Nullable. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -172,7 +170,7 @@ public AttachmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AttachmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of attachment objects attached to a post. + * Read-only. Nullable. Supports $expand. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/threads/item/posts/item/inreplyto/extensions/ExtensionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/threads/item/posts/item/inreplyto/extensions/ExtensionsRequestBuilder.java index 2923e2fd336..17be519549b 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/threads/item/posts/item/inreplyto/extensions/ExtensionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/threads/item/posts/item/inreplyto/extensions/ExtensionsRequestBuilder.java @@ -60,7 +60,7 @@ public ExtensionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/groups/{group%2Did}/threads/{conversationThread%2Did}/posts/{post%2Did}/inReplyTo/extensions{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public ExtensionCollectionResponse get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, Extension::createFromDiscriminatorValue); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public ExtensionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ExtensionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/threads/item/posts/item/inreplyto/extensions/item/ExtensionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/threads/item/posts/item/inreplyto/extensions/item/ExtensionItemRequestBuilder.java index 81821c58ee8..3c3c1eacc66 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/threads/item/posts/item/inreplyto/extensions/item/ExtensionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/threads/item/posts/item/inreplyto/extensions/item/ExtensionItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public Extension get(@jakarta.annotation.Nullable final java.util.function.Consu return this.requestAdapter.send(requestInfo, errorMapping, Extension::createFromDiscriminatorValue); } /** - * Update an open extension (openTypeExtension object) with the properties in the request body: The data in an extension can be primitive types, or arrays of primitive types. See the table in the Permissions section for the list of resources that support open extensions. + * Update the navigation property extensions in groups * @param body The request body * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension patch(@jakarta.annotation.Nonnull final Extension body) { return patch(body, null); } /** - * Update an open extension (openTypeExtension object) with the properties in the request body: The data in an extension can be primitive types, or arrays of primitive types. See the table in the Permissions section for the list of resources that support open extensions. + * Update the navigation property extensions in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension patch(@jakarta.annotation.Nonnull final Extension body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update an open extension (openTypeExtension object) with the properties in the request body: The data in an extension can be primitive types, or arrays of primitive types. See the table in the Permissions section for the list of resources that support open extensions. + * Update the navigation property extensions in groups * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update an open extension (openTypeExtension object) with the properties in the request body: The data in an extension can be primitive types, or arrays of primitive types. See the table in the Permissions section for the list of resources that support open extensions. + * Update the navigation property extensions in groups * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public ExtensionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the post. Read-only. Nullable. Supports $expand. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/transitivememberof/TransitiveMemberOfRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/transitivememberof/TransitiveMemberOfRequestBuilder.java index 3c192300889..ece303bd347 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/transitivememberof/TransitiveMemberOfRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/transitivememberof/TransitiveMemberOfRequestBuilder.java @@ -80,7 +80,6 @@ public TransitiveMemberOfRequestBuilder(@jakarta.annotation.Nonnull final String * The groups that a group is a member of, either directly or through nested membership. Nullable. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get() { @@ -91,7 +90,6 @@ public DirectoryObjectCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/groups/item/transitivemembers/TransitiveMembersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groups/item/transitivemembers/TransitiveMembersRequestBuilder.java index a84a55d9383..60931792803 100644 --- a/src/main/java/com/microsoft/graph/generated/groups/item/transitivemembers/TransitiveMembersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groups/item/transitivemembers/TransitiveMembersRequestBuilder.java @@ -116,7 +116,6 @@ public TransitiveMembersRequestBuilder(@jakarta.annotation.Nonnull final String * The direct and transitive members of a group. Nullable. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get() { @@ -127,7 +126,6 @@ public DirectoryObjectCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/groupsettingtemplates/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/groupsettingtemplates/delta/DeltaRequestBuilder.java index 91f3c42cdb2..8b64a7ca950 100644 --- a/src/main/java/com/microsoft/graph/generated/groupsettingtemplates/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/groupsettingtemplates/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/groupSettingTemplates/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Get newly created, updated, or deleted directory objects without performing a full read of the entire directoryObject collection. For more information about the delta function, see Use delta query to track changes in Microsoft Graph data for details. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Get newly created, updated, or deleted directory objects without performing a full read of the entire directoryObject collection. For more information about the delta function, see Use delta query to track changes in Microsoft Graph data for details. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Get newly created, updated, or deleted directory objects without performing a full read of the entire directoryObject collection. For more information about the delta function, see Use delta query to track changes in Microsoft Graph data for details. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Get newly created, updated, or deleted directory objects without performing a full read of the entire directoryObject collection. For more information about the delta function, see Use delta query to track changes in Microsoft Graph data for details. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Get newly created, updated, or deleted directory objects without performing a full read of the entire directoryObject collection. For more information about the delta function, see Use delta query to track changes in Microsoft Graph data for details. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identity/apiconnectors/ApiConnectorsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identity/apiconnectors/ApiConnectorsRequestBuilder.java index 6dc2dccb2a2..d319ecafa74 100644 --- a/src/main/java/com/microsoft/graph/generated/identity/apiconnectors/ApiConnectorsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identity/apiconnectors/ApiConnectorsRequestBuilder.java @@ -60,21 +60,19 @@ public ApiConnectorsRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/identity/apiConnectors{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Read the properties of an identityApiConnector object. + * Represents entry point for API connectors. * @return a {@link IdentityApiConnectorCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IdentityApiConnectorCollectionResponse get() { return get(null); } /** - * Read the properties of an identityApiConnector object. + * Represents entry point for API connectors. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link IdentityApiConnectorCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IdentityApiConnectorCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public IdentityApiConnectorCollectionResponse get(@jakarta.annotation.Nullable f return this.requestAdapter.send(requestInfo, errorMapping, IdentityApiConnectorCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new identityApiConnector object. + * Create new navigation property to apiConnectors for identity * @param body The request body * @return a {@link IdentityApiConnector} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IdentityApiConnector post(@jakarta.annotation.Nonnull final IdentityApiConnector body) { return post(body, null); } /** - * Create a new identityApiConnector object. + * Create new navigation property to apiConnectors for identity * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link IdentityApiConnector} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IdentityApiConnector post(@jakarta.annotation.Nonnull final IdentityApiConnector body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public IdentityApiConnector post(@jakarta.annotation.Nonnull final IdentityApiCo return this.requestAdapter.send(requestInfo, errorMapping, IdentityApiConnector::createFromDiscriminatorValue); } /** - * Read the properties of an identityApiConnector object. + * Represents entry point for API connectors. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties of an identityApiConnector object. + * Represents entry point for API connectors. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new identityApiConnector object. + * Create new navigation property to apiConnectors for identity * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new identityApiConnector object. + * Create new navigation property to apiConnectors for identity * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ApiConnectorsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new ApiConnectorsRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties of an identityApiConnector object. + * Represents entry point for API connectors. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identity/apiconnectors/item/IdentityApiConnectorItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identity/apiconnectors/item/IdentityApiConnectorItemRequestBuilder.java index 8f1d4efe449..4adfd85c515 100644 --- a/src/main/java/com/microsoft/graph/generated/identity/apiconnectors/item/IdentityApiConnectorItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identity/apiconnectors/item/IdentityApiConnectorItemRequestBuilder.java @@ -46,18 +46,16 @@ public IdentityApiConnectorItemRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/identity/apiConnectors/{identityApiConnector%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an identityApiConnector object. + * Delete navigation property apiConnectors for identity * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an identityApiConnector object. + * Delete navigation property apiConnectors for identity * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties of an identityApiConnector object. + * Represents entry point for API connectors. * @return a {@link IdentityApiConnector} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IdentityApiConnector get() { return get(null); } /** - * Read the properties of an identityApiConnector object. + * Represents entry point for API connectors. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link IdentityApiConnector} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IdentityApiConnector get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public IdentityApiConnector get(@jakarta.annotation.Nullable final java.util.fun return this.requestAdapter.send(requestInfo, errorMapping, IdentityApiConnector::createFromDiscriminatorValue); } /** - * Update the properties of an identityApiConnector object. + * Update the navigation property apiConnectors in identity * @param body The request body * @return a {@link IdentityApiConnector} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IdentityApiConnector patch(@jakarta.annotation.Nonnull final IdentityApiConnector body) { return patch(body, null); } /** - * Update the properties of an identityApiConnector object. + * Update the navigation property apiConnectors in identity * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link IdentityApiConnector} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IdentityApiConnector patch(@jakarta.annotation.Nonnull final IdentityApiConnector body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public IdentityApiConnector patch(@jakarta.annotation.Nonnull final IdentityApiC return this.requestAdapter.send(requestInfo, errorMapping, IdentityApiConnector::createFromDiscriminatorValue); } /** - * Delete an identityApiConnector object. + * Delete navigation property apiConnectors for identity * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an identityApiConnector object. + * Delete navigation property apiConnectors for identity * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties of an identityApiConnector object. + * Represents entry point for API connectors. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties of an identityApiConnector object. + * Represents entry point for API connectors. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an identityApiConnector object. + * Update the navigation property apiConnectors in identity * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an identityApiConnector object. + * Update the navigation property apiConnectors in identity * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public IdentityApiConnectorItemRequestBuilder withUrl(@jakarta.annotation.Nonnul public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties of an identityApiConnector object. + * Represents entry point for API connectors. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/B2xUserFlowsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/B2xUserFlowsRequestBuilder.java index 7a0f7069458..36573b30819 100644 --- a/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/B2xUserFlowsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/B2xUserFlowsRequestBuilder.java @@ -60,21 +60,19 @@ public B2xUserFlowsRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/identity/b2xUserFlows{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of b2xIdentityUserFlow objects. + * Represents entry point for B2X/self-service sign-up identity userflows. * @return a {@link B2xIdentityUserFlowCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public B2xIdentityUserFlowCollectionResponse get() { return get(null); } /** - * Retrieve a list of b2xIdentityUserFlow objects. + * Represents entry point for B2X/self-service sign-up identity userflows. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link B2xIdentityUserFlowCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public B2xIdentityUserFlowCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public B2xIdentityUserFlowCollectionResponse get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, B2xIdentityUserFlowCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new b2xIdentityUserFlow object. + * Create new navigation property to b2xUserFlows for identity * @param body The request body * @return a {@link B2xIdentityUserFlow} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public B2xIdentityUserFlow post(@jakarta.annotation.Nonnull final B2xIdentityUserFlow body) { return post(body, null); } /** - * Create a new b2xIdentityUserFlow object. + * Create new navigation property to b2xUserFlows for identity * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link B2xIdentityUserFlow} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public B2xIdentityUserFlow post(@jakarta.annotation.Nonnull final B2xIdentityUserFlow body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public B2xIdentityUserFlow post(@jakarta.annotation.Nonnull final B2xIdentityUse return this.requestAdapter.send(requestInfo, errorMapping, B2xIdentityUserFlow::createFromDiscriminatorValue); } /** - * Retrieve a list of b2xIdentityUserFlow objects. + * Represents entry point for B2X/self-service sign-up identity userflows. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of b2xIdentityUserFlow objects. + * Represents entry point for B2X/self-service sign-up identity userflows. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new b2xIdentityUserFlow object. + * Create new navigation property to b2xUserFlows for identity * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new b2xIdentityUserFlow object. + * Create new navigation property to b2xUserFlows for identity * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public B2xUserFlowsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri return new B2xUserFlowsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of b2xIdentityUserFlow objects. + * Represents entry point for B2X/self-service sign-up identity userflows. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/B2xIdentityUserFlowItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/B2xIdentityUserFlowItemRequestBuilder.java index 0ff15043158..1ac3ff57c3b 100644 --- a/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/B2xIdentityUserFlowItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/B2xIdentityUserFlowItemRequestBuilder.java @@ -82,18 +82,16 @@ public B2xIdentityUserFlowItemRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/identity/b2xUserFlows/{b2xIdentityUserFlow%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a b2xIdentityUserFlow object. + * Delete navigation property b2xUserFlows for identity * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a b2xIdentityUserFlow object. + * Delete navigation property b2xUserFlows for identity * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -102,21 +100,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a b2xIdentityUserFlow object. + * Represents entry point for B2X/self-service sign-up identity userflows. * @return a {@link B2xIdentityUserFlow} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public B2xIdentityUserFlow get() { return get(null); } /** - * Retrieve the properties and relationships of a b2xIdentityUserFlow object. + * Represents entry point for B2X/self-service sign-up identity userflows. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link B2xIdentityUserFlow} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public B2xIdentityUserFlow get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -151,7 +147,7 @@ public B2xIdentityUserFlow patch(@jakarta.annotation.Nonnull final B2xIdentityUs return this.requestAdapter.send(requestInfo, errorMapping, B2xIdentityUserFlow::createFromDiscriminatorValue); } /** - * Delete a b2xIdentityUserFlow object. + * Delete navigation property b2xUserFlows for identity * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -159,7 +155,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a b2xIdentityUserFlow object. + * Delete navigation property b2xUserFlows for identity * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -171,7 +167,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a b2xIdentityUserFlow object. + * Represents entry point for B2X/self-service sign-up identity userflows. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -179,7 +175,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a b2xIdentityUserFlow object. + * Represents entry point for B2X/self-service sign-up identity userflows. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -231,7 +227,7 @@ public B2xIdentityUserFlowItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a b2xIdentityUserFlow object. + * Represents entry point for B2X/self-service sign-up identity userflows. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/identityproviders/IdentityProvidersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/identityproviders/IdentityProvidersRequestBuilder.java index f17c1e43f0d..c884f81778a 100644 --- a/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/identityproviders/IdentityProvidersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/identityproviders/IdentityProvidersRequestBuilder.java @@ -65,12 +65,11 @@ public IdentityProvidersRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/identity/b2xUserFlows/{b2xIdentityUserFlow%2Did}/identityProviders{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the identity providers in a b2xIdentityUserFlow object. + * The identity providers included in the user flow. * @return a {@link IdentityProviderCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code * @deprecated * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider - * @see Find more info here */ @jakarta.annotation.Nullable @Deprecated @@ -78,13 +77,12 @@ public IdentityProviderCollectionResponse get() { return get(null); } /** - * Get the identity providers in a b2xIdentityUserFlow object. + * The identity providers included in the user flow. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link IdentityProviderCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code * @deprecated * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider - * @see Find more info here */ @jakarta.annotation.Nullable @Deprecated @@ -95,7 +93,7 @@ public IdentityProviderCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, IdentityProviderCollectionResponse::createFromDiscriminatorValue); } /** - * Get the identity providers in a b2xIdentityUserFlow object. + * The identity providers included in the user flow. * @return a {@link RequestInformation} * @deprecated * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider @@ -106,7 +104,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the identity providers in a b2xIdentityUserFlow object. + * The identity providers included in the user flow. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} * @deprecated @@ -134,7 +132,7 @@ public IdentityProvidersRequestBuilder withUrl(@jakarta.annotation.Nonnull final return new IdentityProvidersRequestBuilder(rawUrl, requestAdapter); } /** - * Get the identity providers in a b2xIdentityUserFlow object. + * The identity providers included in the user flow. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/languages/LanguagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/languages/LanguagesRequestBuilder.java index 5593cd9b146..befa4bcdec7 100644 --- a/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/languages/LanguagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/languages/LanguagesRequestBuilder.java @@ -60,21 +60,19 @@ public LanguagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/identity/b2xUserFlows/{b2xIdentityUserFlow%2Did}/languages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of languages supported for customization in a B2X user flow. + * The languages supported for customization within the user flow. Language customization is enabled by default in self-service sign-up user flow. You can't create custom languages in self-service sign-up user flows. * @return a {@link UserFlowLanguageConfigurationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserFlowLanguageConfigurationCollectionResponse get() { return get(null); } /** - * Retrieve a list of languages supported for customization in a B2X user flow. + * The languages supported for customization within the user flow. Language customization is enabled by default in self-service sign-up user flow. You can't create custom languages in self-service sign-up user flows. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UserFlowLanguageConfigurationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserFlowLanguageConfigurationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public UserFlowLanguageConfiguration post(@jakarta.annotation.Nonnull final User return this.requestAdapter.send(requestInfo, errorMapping, UserFlowLanguageConfiguration::createFromDiscriminatorValue); } /** - * Retrieve a list of languages supported for customization in a B2X user flow. + * The languages supported for customization within the user flow. Language customization is enabled by default in self-service sign-up user flow. You can't create custom languages in self-service sign-up user flows. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of languages supported for customization in a B2X user flow. + * The languages supported for customization within the user flow. Language customization is enabled by default in self-service sign-up user flow. You can't create custom languages in self-service sign-up user flows. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public LanguagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new LanguagesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of languages supported for customization in a B2X user flow. + * The languages supported for customization within the user flow. Language customization is enabled by default in self-service sign-up user flow. You can't create custom languages in self-service sign-up user flows. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/languages/item/UserFlowLanguageConfigurationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/languages/item/UserFlowLanguageConfigurationItemRequestBuilder.java index de830fcfa11..91d099150fc 100644 --- a/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/languages/item/UserFlowLanguageConfigurationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/languages/item/UserFlowLanguageConfigurationItemRequestBuilder.java @@ -73,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a userFlowLanguageConfiguration object. These objects represent a language available in a user flow. Note: Language customization is enabled by default in Microsoft Entra user flows. + * The languages supported for customization within the user flow. Language customization is enabled by default in self-service sign-up user flow. You can't create custom languages in self-service sign-up user flows. * @return a {@link UserFlowLanguageConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserFlowLanguageConfiguration get() { return get(null); } /** - * Read the properties and relationships of a userFlowLanguageConfiguration object. These objects represent a language available in a user flow. Note: Language customization is enabled by default in Microsoft Entra user flows. + * The languages supported for customization within the user flow. Language customization is enabled by default in self-service sign-up user flow. You can't create custom languages in self-service sign-up user flows. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UserFlowLanguageConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserFlowLanguageConfiguration get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -142,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a userFlowLanguageConfiguration object. These objects represent a language available in a user flow. Note: Language customization is enabled by default in Microsoft Entra user flows. + * The languages supported for customization within the user flow. Language customization is enabled by default in self-service sign-up user flow. You can't create custom languages in self-service sign-up user flows. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -150,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a userFlowLanguageConfiguration object. These objects represent a language available in a user flow. Note: Language customization is enabled by default in Microsoft Entra user flows. + * The languages supported for customization within the user flow. Language customization is enabled by default in self-service sign-up user flow. You can't create custom languages in self-service sign-up user flows. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -202,7 +200,7 @@ public UserFlowLanguageConfigurationItemRequestBuilder withUrl(@jakarta.annotati public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a userFlowLanguageConfiguration object. These objects represent a language available in a user flow. Note: Language customization is enabled by default in Microsoft Entra user flows. + * The languages supported for customization within the user flow. Language customization is enabled by default in self-service sign-up user flow. You can't create custom languages in self-service sign-up user flows. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/languages/item/overridespages/OverridesPagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/languages/item/overridespages/OverridesPagesRequestBuilder.java index 8ac7c6578e9..15ae5051b54 100644 --- a/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/languages/item/overridespages/OverridesPagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/languages/item/overridespages/OverridesPagesRequestBuilder.java @@ -60,21 +60,19 @@ public OverridesPagesRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/identity/b2xUserFlows/{b2xIdentityUserFlow%2Did}/languages/{userFlowLanguageConfiguration%2Did}/overridesPages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the userFlowLanguagePage resources from the overridesPages navigation property. These pages are used to customize the values shown to the user during a user journey in a user flow. + * Collection of pages with the overrides messages to display in a user flow for a specified language. This collection only allows you to modify the content of the page, any other modification isn't allowed (creation or deletion of pages). * @return a {@link UserFlowLanguagePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserFlowLanguagePageCollectionResponse get() { return get(null); } /** - * Get the userFlowLanguagePage resources from the overridesPages navigation property. These pages are used to customize the values shown to the user during a user journey in a user flow. + * Collection of pages with the overrides messages to display in a user flow for a specified language. This collection only allows you to modify the content of the page, any other modification isn't allowed (creation or deletion of pages). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UserFlowLanguagePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserFlowLanguagePageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public UserFlowLanguagePage post(@jakarta.annotation.Nonnull final UserFlowLangu return this.requestAdapter.send(requestInfo, errorMapping, UserFlowLanguagePage::createFromDiscriminatorValue); } /** - * Get the userFlowLanguagePage resources from the overridesPages navigation property. These pages are used to customize the values shown to the user during a user journey in a user flow. + * Collection of pages with the overrides messages to display in a user flow for a specified language. This collection only allows you to modify the content of the page, any other modification isn't allowed (creation or deletion of pages). * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the userFlowLanguagePage resources from the overridesPages navigation property. These pages are used to customize the values shown to the user during a user journey in a user flow. + * Collection of pages with the overrides messages to display in a user flow for a specified language. This collection only allows you to modify the content of the page, any other modification isn't allowed (creation or deletion of pages). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public OverridesPagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new OverridesPagesRequestBuilder(rawUrl, requestAdapter); } /** - * Get the userFlowLanguagePage resources from the overridesPages navigation property. These pages are used to customize the values shown to the user during a user journey in a user flow. + * Collection of pages with the overrides messages to display in a user flow for a specified language. This collection only allows you to modify the content of the page, any other modification isn't allowed (creation or deletion of pages). */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/languages/item/overridespages/item/value/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/languages/item/overridespages/item/value/ContentRequestBuilder.java index e36c8bdcf46..97573c4aee9 100644 --- a/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/languages/item/overridespages/item/value/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/languages/item/overridespages/item/value/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * Get media content for the navigation property overridesPages from identity * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/userattributeassignments/UserAttributeAssignmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/userattributeassignments/UserAttributeAssignmentsRequestBuilder.java index de7e0e69553..60b96a1a9f1 100644 --- a/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/userattributeassignments/UserAttributeAssignmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/userattributeassignments/UserAttributeAssignmentsRequestBuilder.java @@ -78,21 +78,19 @@ public UserAttributeAssignmentsRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/identity/b2xUserFlows/{b2xIdentityUserFlow%2Did}/userAttributeAssignments{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the identityUserFlowAttributeAssignment resources from the userAttributeAssignments navigation property in a b2xIdentityUserFlow. + * The user attribute assignments included in the user flow. * @return a {@link IdentityUserFlowAttributeAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IdentityUserFlowAttributeAssignmentCollectionResponse get() { return get(null); } /** - * Get the identityUserFlowAttributeAssignment resources from the userAttributeAssignments navigation property in a b2xIdentityUserFlow. + * The user attribute assignments included in the user flow. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link IdentityUserFlowAttributeAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IdentityUserFlowAttributeAssignmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -102,23 +100,21 @@ public IdentityUserFlowAttributeAssignmentCollectionResponse get(@jakarta.annota return this.requestAdapter.send(requestInfo, errorMapping, IdentityUserFlowAttributeAssignmentCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new identityUserFlowAttributeAssignment object in a b2xIdentityUserFlow. + * Create new navigation property to userAttributeAssignments for identity * @param body The request body * @return a {@link IdentityUserFlowAttributeAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IdentityUserFlowAttributeAssignment post(@jakarta.annotation.Nonnull final IdentityUserFlowAttributeAssignment body) { return post(body, null); } /** - * Create a new identityUserFlowAttributeAssignment object in a b2xIdentityUserFlow. + * Create new navigation property to userAttributeAssignments for identity * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link IdentityUserFlowAttributeAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IdentityUserFlowAttributeAssignment post(@jakarta.annotation.Nonnull final IdentityUserFlowAttributeAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -129,7 +125,7 @@ public IdentityUserFlowAttributeAssignment post(@jakarta.annotation.Nonnull fina return this.requestAdapter.send(requestInfo, errorMapping, IdentityUserFlowAttributeAssignment::createFromDiscriminatorValue); } /** - * Get the identityUserFlowAttributeAssignment resources from the userAttributeAssignments navigation property in a b2xIdentityUserFlow. + * The user attribute assignments included in the user flow. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -137,7 +133,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the identityUserFlowAttributeAssignment resources from the userAttributeAssignments navigation property in a b2xIdentityUserFlow. + * The user attribute assignments included in the user flow. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new identityUserFlowAttributeAssignment object in a b2xIdentityUserFlow. + * Create new navigation property to userAttributeAssignments for identity * @param body The request body * @return a {@link RequestInformation} */ @@ -158,7 +154,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new identityUserFlowAttributeAssignment object in a b2xIdentityUserFlow. + * Create new navigation property to userAttributeAssignments for identity * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -183,7 +179,7 @@ public UserAttributeAssignmentsRequestBuilder withUrl(@jakarta.annotation.Nonnul return new UserAttributeAssignmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the identityUserFlowAttributeAssignment resources from the userAttributeAssignments navigation property in a b2xIdentityUserFlow. + * The user attribute assignments included in the user flow. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/userattributeassignments/getorder/GetOrderRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/userattributeassignments/getorder/GetOrderRequestBuilder.java index 71a3488aaa3..c3566e297a4 100644 --- a/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/userattributeassignments/getorder/GetOrderRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/userattributeassignments/getorder/GetOrderRequestBuilder.java @@ -36,19 +36,21 @@ public GetOrderRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/identity/b2xUserFlows/{b2xIdentityUserFlow%2Did}/userAttributeAssignments/getOrder()", rawUrl); } /** - * Invoke function getOrder + * Get the order of identityUserFlowAttributeAssignments being collected within a user flow. * @return a {@link AssignmentOrder} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public AssignmentOrder get() { return get(null); } /** - * Invoke function getOrder + * Get the order of identityUserFlowAttributeAssignments being collected within a user flow. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AssignmentOrder} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public AssignmentOrder get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public AssignmentOrder get(@jakarta.annotation.Nullable final java.util.function return this.requestAdapter.send(requestInfo, errorMapping, AssignmentOrder::createFromDiscriminatorValue); } /** - * Invoke function getOrder + * Get the order of identityUserFlowAttributeAssignments being collected within a user flow. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getOrder + * Get the order of identityUserFlowAttributeAssignments being collected within a user flow. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/userattributeassignments/item/IdentityUserFlowAttributeAssignmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/userattributeassignments/item/IdentityUserFlowAttributeAssignmentItemRequestBuilder.java index f2442c58184..d302f5b4789 100644 --- a/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/userattributeassignments/item/IdentityUserFlowAttributeAssignmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identity/b2xuserflows/item/userattributeassignments/item/IdentityUserFlowAttributeAssignmentItemRequestBuilder.java @@ -46,18 +46,16 @@ public IdentityUserFlowAttributeAssignmentItemRequestBuilder(@jakarta.annotation super(requestAdapter, "{+baseurl}/identity/b2xUserFlows/{b2xIdentityUserFlow%2Did}/userAttributeAssignments/{identityUserFlowAttributeAssignment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an identityUserFlowAttributeAssignment object. + * Delete navigation property userAttributeAssignments for identity * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an identityUserFlowAttributeAssignment object. + * Delete navigation property userAttributeAssignments for identity * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of an identityUserFlowAttributeAssignment object. + * The user attribute assignments included in the user flow. * @return a {@link IdentityUserFlowAttributeAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IdentityUserFlowAttributeAssignment get() { return get(null); } /** - * Read the properties and relationships of an identityUserFlowAttributeAssignment object. + * The user attribute assignments included in the user flow. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link IdentityUserFlowAttributeAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IdentityUserFlowAttributeAssignment get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public IdentityUserFlowAttributeAssignment get(@jakarta.annotation.Nullable fina return this.requestAdapter.send(requestInfo, errorMapping, IdentityUserFlowAttributeAssignment::createFromDiscriminatorValue); } /** - * Update the properties of a identityUserFlowAttributeAssignment object. + * Update the navigation property userAttributeAssignments in identity * @param body The request body * @return a {@link IdentityUserFlowAttributeAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IdentityUserFlowAttributeAssignment patch(@jakarta.annotation.Nonnull final IdentityUserFlowAttributeAssignment body) { return patch(body, null); } /** - * Update the properties of a identityUserFlowAttributeAssignment object. + * Update the navigation property userAttributeAssignments in identity * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link IdentityUserFlowAttributeAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IdentityUserFlowAttributeAssignment patch(@jakarta.annotation.Nonnull final IdentityUserFlowAttributeAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public IdentityUserFlowAttributeAssignment patch(@jakarta.annotation.Nonnull fin return this.requestAdapter.send(requestInfo, errorMapping, IdentityUserFlowAttributeAssignment::createFromDiscriminatorValue); } /** - * Delete an identityUserFlowAttributeAssignment object. + * Delete navigation property userAttributeAssignments for identity * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an identityUserFlowAttributeAssignment object. + * Delete navigation property userAttributeAssignments for identity * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of an identityUserFlowAttributeAssignment object. + * The user attribute assignments included in the user flow. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of an identityUserFlowAttributeAssignment object. + * The user attribute assignments included in the user flow. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a identityUserFlowAttributeAssignment object. + * Update the navigation property userAttributeAssignments in identity * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a identityUserFlowAttributeAssignment object. + * Update the navigation property userAttributeAssignments in identity * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public IdentityUserFlowAttributeAssignmentItemRequestBuilder withUrl(@jakarta.an public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of an identityUserFlowAttributeAssignment object. + * The user attribute assignments included in the user flow. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/authenticationcontextclassreferences/AuthenticationContextClassReferencesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/authenticationcontextclassreferences/AuthenticationContextClassReferencesRequestBuilder.java index 96d3697d8dc..c25ad68637a 100644 --- a/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/authenticationcontextclassreferences/AuthenticationContextClassReferencesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/authenticationcontextclassreferences/AuthenticationContextClassReferencesRequestBuilder.java @@ -60,21 +60,19 @@ public AuthenticationContextClassReferencesRequestBuilder(@jakarta.annotation.No super(requestAdapter, "{+baseurl}/identity/conditionalAccess/authenticationContextClassReferences{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of authenticationContextClassReference objects. + * Read-only. Nullable. Returns a collection of the specified authentication context class references. * @return a {@link AuthenticationContextClassReferenceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationContextClassReferenceCollectionResponse get() { return get(null); } /** - * Retrieve a list of authenticationContextClassReference objects. + * Read-only. Nullable. Returns a collection of the specified authentication context class references. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AuthenticationContextClassReferenceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationContextClassReferenceCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public AuthenticationContextClassReference post(@jakarta.annotation.Nonnull fina return this.requestAdapter.send(requestInfo, errorMapping, AuthenticationContextClassReference::createFromDiscriminatorValue); } /** - * Retrieve a list of authenticationContextClassReference objects. + * Read-only. Nullable. Returns a collection of the specified authentication context class references. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of authenticationContextClassReference objects. + * Read-only. Nullable. Returns a collection of the specified authentication context class references. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public AuthenticationContextClassReferencesRequestBuilder withUrl(@jakarta.annot return new AuthenticationContextClassReferencesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of authenticationContextClassReference objects. + * Read-only. Nullable. Returns a collection of the specified authentication context class references. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/authenticationcontextclassreferences/item/AuthenticationContextClassReferenceItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/authenticationcontextclassreferences/item/AuthenticationContextClassReferenceItemRequestBuilder.java index 8d5337f1483..1d5a748fb1c 100644 --- a/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/authenticationcontextclassreferences/item/AuthenticationContextClassReferenceItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/authenticationcontextclassreferences/item/AuthenticationContextClassReferenceItemRequestBuilder.java @@ -37,18 +37,16 @@ public AuthenticationContextClassReferenceItemRequestBuilder(@jakarta.annotation super(requestAdapter, "{+baseurl}/identity/conditionalAccess/authenticationContextClassReferences/{authenticationContextClassReference%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an authenticationContextClassReference object that's not published or used by a conditional access policy. + * Delete navigation property authenticationContextClassReferences for identity * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an authenticationContextClassReference object that's not published or used by a conditional access policy. + * Delete navigation property authenticationContextClassReferences for identity * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a authenticationContextClassReference object. + * Read-only. Nullable. Returns a collection of the specified authentication context class references. * @return a {@link AuthenticationContextClassReference} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationContextClassReference get() { return get(null); } /** - * Retrieve the properties and relationships of a authenticationContextClassReference object. + * Read-only. Nullable. Returns a collection of the specified authentication context class references. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AuthenticationContextClassReference} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationContextClassReference get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public AuthenticationContextClassReference get(@jakarta.annotation.Nullable fina return this.requestAdapter.send(requestInfo, errorMapping, AuthenticationContextClassReference::createFromDiscriminatorValue); } /** - * Create an authenticationContextClassReference object, if the ID has not been used. If ID has been used, this call updates the authenticationContextClassReference object. + * Update the navigation property authenticationContextClassReferences in identity * @param body The request body * @return a {@link AuthenticationContextClassReference} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationContextClassReference patch(@jakarta.annotation.Nonnull final AuthenticationContextClassReference body) { return patch(body, null); } /** - * Create an authenticationContextClassReference object, if the ID has not been used. If ID has been used, this call updates the authenticationContextClassReference object. + * Update the navigation property authenticationContextClassReferences in identity * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AuthenticationContextClassReference} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationContextClassReference patch(@jakarta.annotation.Nonnull final AuthenticationContextClassReference body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public AuthenticationContextClassReference patch(@jakarta.annotation.Nonnull fin return this.requestAdapter.send(requestInfo, errorMapping, AuthenticationContextClassReference::createFromDiscriminatorValue); } /** - * Delete an authenticationContextClassReference object that's not published or used by a conditional access policy. + * Delete navigation property authenticationContextClassReferences for identity * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an authenticationContextClassReference object that's not published or used by a conditional access policy. + * Delete navigation property authenticationContextClassReferences for identity * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a authenticationContextClassReference object. + * Read-only. Nullable. Returns a collection of the specified authentication context class references. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a authenticationContextClassReference object. + * Read-only. Nullable. Returns a collection of the specified authentication context class references. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an authenticationContextClassReference object, if the ID has not been used. If ID has been used, this call updates the authenticationContextClassReference object. + * Update the navigation property authenticationContextClassReferences in identity * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Create an authenticationContextClassReference object, if the ID has not been used. If ID has been used, this call updates the authenticationContextClassReference object. + * Update the navigation property authenticationContextClassReferences in identity * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public AuthenticationContextClassReferenceItemRequestBuilder withUrl(@jakarta.an public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a authenticationContextClassReference object. + * Read-only. Nullable. Returns a collection of the specified authentication context class references. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/authenticationstrength/authenticationmethodmodes/AuthenticationMethodModesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/authenticationstrength/authenticationmethodmodes/AuthenticationMethodModesRequestBuilder.java index 6bd42d79f79..5b4e34ef2aa 100644 --- a/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/authenticationstrength/authenticationmethodmodes/AuthenticationMethodModesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/authenticationstrength/authenticationmethodmodes/AuthenticationMethodModesRequestBuilder.java @@ -60,21 +60,19 @@ public AuthenticationMethodModesRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/identity/conditionalAccess/authenticationStrength/authenticationMethodModes{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of all supported authentication methods, or all supported authentication method combinations as a list of authenticationMethodModes objects and their properties. + * Names and descriptions of all valid authentication method modes in the system. * @return a {@link AuthenticationMethodModeDetailCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationMethodModeDetailCollectionResponse get() { return get(null); } /** - * Get a list of all supported authentication methods, or all supported authentication method combinations as a list of authenticationMethodModes objects and their properties. + * Names and descriptions of all valid authentication method modes in the system. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AuthenticationMethodModeDetailCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationMethodModeDetailCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public AuthenticationMethodModeDetail post(@jakarta.annotation.Nonnull final Aut return this.requestAdapter.send(requestInfo, errorMapping, AuthenticationMethodModeDetail::createFromDiscriminatorValue); } /** - * Get a list of all supported authentication methods, or all supported authentication method combinations as a list of authenticationMethodModes objects and their properties. + * Names and descriptions of all valid authentication method modes in the system. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of all supported authentication methods, or all supported authentication method combinations as a list of authenticationMethodModes objects and their properties. + * Names and descriptions of all valid authentication method modes in the system. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public AuthenticationMethodModesRequestBuilder withUrl(@jakarta.annotation.Nonnu return new AuthenticationMethodModesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of all supported authentication methods, or all supported authentication method combinations as a list of authenticationMethodModes objects and their properties. + * Names and descriptions of all valid authentication method modes in the system. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/authenticationstrength/policies/item/combinationconfigurations/CombinationConfigurationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/authenticationstrength/policies/item/combinationconfigurations/CombinationConfigurationsRequestBuilder.java index 328a13c6b5c..ba150e15b14 100644 --- a/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/authenticationstrength/policies/item/combinationconfigurations/CombinationConfigurationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/authenticationstrength/policies/item/combinationconfigurations/CombinationConfigurationsRequestBuilder.java @@ -60,21 +60,19 @@ public CombinationConfigurationsRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/identity/conditionalAccess/authenticationStrength/policies/{authenticationStrengthPolicy%2Did}/combinationConfigurations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the authenticationCombinationConfiguration objects for an authentication strength policy. authenticationCombinationConfiguration represents requirements placed on specific authentication method combinations that require specified variants of those authentication methods to be used when authenticating. Currently, only fido2combinationConfigurations objects are supported. authenticationCombinationConfiguration objects are supported only for custom authentication strengths. + * Settings that may be used to require specific types or instances of an authentication method to be used when authenticating with a specified combination of authentication methods. * @return a {@link AuthenticationCombinationConfigurationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationCombinationConfigurationCollectionResponse get() { return get(null); } /** - * Get the authenticationCombinationConfiguration objects for an authentication strength policy. authenticationCombinationConfiguration represents requirements placed on specific authentication method combinations that require specified variants of those authentication methods to be used when authenticating. Currently, only fido2combinationConfigurations objects are supported. authenticationCombinationConfiguration objects are supported only for custom authentication strengths. + * Settings that may be used to require specific types or instances of an authentication method to be used when authenticating with a specified combination of authentication methods. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AuthenticationCombinationConfigurationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationCombinationConfigurationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public AuthenticationCombinationConfigurationCollectionResponse get(@jakarta.ann return this.requestAdapter.send(requestInfo, errorMapping, AuthenticationCombinationConfigurationCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new authenticationCombinationConfiguration object. In use, only fido2combinationConfigurations may be created, and these may only be created for custom authentication strength policies. + * Create new navigation property to combinationConfigurations for identity * @param body The request body * @return a {@link AuthenticationCombinationConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationCombinationConfiguration post(@jakarta.annotation.Nonnull final AuthenticationCombinationConfiguration body) { return post(body, null); } /** - * Create a new authenticationCombinationConfiguration object. In use, only fido2combinationConfigurations may be created, and these may only be created for custom authentication strength policies. + * Create new navigation property to combinationConfigurations for identity * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AuthenticationCombinationConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationCombinationConfiguration post(@jakarta.annotation.Nonnull final AuthenticationCombinationConfiguration body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public AuthenticationCombinationConfiguration post(@jakarta.annotation.Nonnull f return this.requestAdapter.send(requestInfo, errorMapping, AuthenticationCombinationConfiguration::createFromDiscriminatorValue); } /** - * Get the authenticationCombinationConfiguration objects for an authentication strength policy. authenticationCombinationConfiguration represents requirements placed on specific authentication method combinations that require specified variants of those authentication methods to be used when authenticating. Currently, only fido2combinationConfigurations objects are supported. authenticationCombinationConfiguration objects are supported only for custom authentication strengths. + * Settings that may be used to require specific types or instances of an authentication method to be used when authenticating with a specified combination of authentication methods. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the authenticationCombinationConfiguration objects for an authentication strength policy. authenticationCombinationConfiguration represents requirements placed on specific authentication method combinations that require specified variants of those authentication methods to be used when authenticating. Currently, only fido2combinationConfigurations objects are supported. authenticationCombinationConfiguration objects are supported only for custom authentication strengths. + * Settings that may be used to require specific types or instances of an authentication method to be used when authenticating with a specified combination of authentication methods. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new authenticationCombinationConfiguration object. In use, only fido2combinationConfigurations may be created, and these may only be created for custom authentication strength policies. + * Create new navigation property to combinationConfigurations for identity * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new authenticationCombinationConfiguration object. In use, only fido2combinationConfigurations may be created, and these may only be created for custom authentication strength policies. + * Create new navigation property to combinationConfigurations for identity * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public CombinationConfigurationsRequestBuilder withUrl(@jakarta.annotation.Nonnu return new CombinationConfigurationsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the authenticationCombinationConfiguration objects for an authentication strength policy. authenticationCombinationConfiguration represents requirements placed on specific authentication method combinations that require specified variants of those authentication methods to be used when authenticating. Currently, only fido2combinationConfigurations objects are supported. authenticationCombinationConfiguration objects are supported only for custom authentication strengths. + * Settings that may be used to require specific types or instances of an authentication method to be used when authenticating with a specified combination of authentication methods. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/authenticationstrength/policies/item/combinationconfigurations/item/AuthenticationCombinationConfigurationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/authenticationstrength/policies/item/combinationconfigurations/item/AuthenticationCombinationConfigurationItemRequestBuilder.java index 9a8bf47c2b5..f70246c99cc 100644 --- a/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/authenticationstrength/policies/item/combinationconfigurations/item/AuthenticationCombinationConfigurationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/authenticationstrength/policies/item/combinationconfigurations/item/AuthenticationCombinationConfigurationItemRequestBuilder.java @@ -37,18 +37,16 @@ public AuthenticationCombinationConfigurationItemRequestBuilder(@jakarta.annotat super(requestAdapter, "{+baseurl}/identity/conditionalAccess/authenticationStrength/policies/{authenticationStrengthPolicy%2Did}/combinationConfigurations/{authenticationCombinationConfiguration%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an authenticationCombinationConfiguration for a custom authenticationStrengthPolicy object. + * Delete navigation property combinationConfigurations for identity * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an authenticationCombinationConfiguration for a custom authenticationStrengthPolicy object. + * Delete navigation property combinationConfigurations for identity * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of an authenticationCombinationConfiguration object. + * Settings that may be used to require specific types or instances of an authentication method to be used when authenticating with a specified combination of authentication methods. * @return a {@link AuthenticationCombinationConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationCombinationConfiguration get() { return get(null); } /** - * Read the properties and relationships of an authenticationCombinationConfiguration object. + * Settings that may be used to require specific types or instances of an authentication method to be used when authenticating with a specified combination of authentication methods. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AuthenticationCombinationConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationCombinationConfiguration get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public AuthenticationCombinationConfiguration get(@jakarta.annotation.Nullable f return this.requestAdapter.send(requestInfo, errorMapping, AuthenticationCombinationConfiguration::createFromDiscriminatorValue); } /** - * Update the properties of an authenticationCombinationConfiguration object. In use, only fido2combinationConfigurations may be updated as they're the only type of authenticationCombinationConfiguration that may be created. + * Update the navigation property combinationConfigurations in identity * @param body The request body * @return a {@link AuthenticationCombinationConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationCombinationConfiguration patch(@jakarta.annotation.Nonnull final AuthenticationCombinationConfiguration body) { return patch(body, null); } /** - * Update the properties of an authenticationCombinationConfiguration object. In use, only fido2combinationConfigurations may be updated as they're the only type of authenticationCombinationConfiguration that may be created. + * Update the navigation property combinationConfigurations in identity * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AuthenticationCombinationConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationCombinationConfiguration patch(@jakarta.annotation.Nonnull final AuthenticationCombinationConfiguration body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public AuthenticationCombinationConfiguration patch(@jakarta.annotation.Nonnull return this.requestAdapter.send(requestInfo, errorMapping, AuthenticationCombinationConfiguration::createFromDiscriminatorValue); } /** - * Delete an authenticationCombinationConfiguration for a custom authenticationStrengthPolicy object. + * Delete navigation property combinationConfigurations for identity * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an authenticationCombinationConfiguration for a custom authenticationStrengthPolicy object. + * Delete navigation property combinationConfigurations for identity * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of an authenticationCombinationConfiguration object. + * Settings that may be used to require specific types or instances of an authentication method to be used when authenticating with a specified combination of authentication methods. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of an authenticationCombinationConfiguration object. + * Settings that may be used to require specific types or instances of an authentication method to be used when authenticating with a specified combination of authentication methods. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an authenticationCombinationConfiguration object. In use, only fido2combinationConfigurations may be updated as they're the only type of authenticationCombinationConfiguration that may be created. + * Update the navigation property combinationConfigurations in identity * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an authenticationCombinationConfiguration object. In use, only fido2combinationConfigurations may be updated as they're the only type of authenticationCombinationConfiguration that may be created. + * Update the navigation property combinationConfigurations in identity * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public AuthenticationCombinationConfigurationItemRequestBuilder withUrl(@jakarta public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of an authenticationCombinationConfiguration object. + * Settings that may be used to require specific types or instances of an authentication method to be used when authenticating with a specified combination of authentication methods. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/authenticationstrength/policies/item/usage/UsageRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/authenticationstrength/policies/item/usage/UsageRequestBuilder.java index c7b90ea6f15..1ccc013a9cc 100644 --- a/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/authenticationstrength/policies/item/usage/UsageRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/authenticationstrength/policies/item/usage/UsageRequestBuilder.java @@ -36,19 +36,21 @@ public UsageRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/identity/conditionalAccess/authenticationStrength/policies/{authenticationStrengthPolicy%2Did}/usage()", rawUrl); } /** - * Invoke function usage + * Allows the caller to see which Conditional Access policies reference a specified authentication strength policy. The policies are returned in two collections, one containing Conditional Access policies that require an MFA claim and the other containing Conditional Access policies that do not require such a claim. Policies in the former category are restricted in what kinds of changes may be made to them to prevent undermining the MFA requirement of those policies. * @return a {@link AuthenticationStrengthUsage} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationStrengthUsage get() { return get(null); } /** - * Invoke function usage + * Allows the caller to see which Conditional Access policies reference a specified authentication strength policy. The policies are returned in two collections, one containing Conditional Access policies that require an MFA claim and the other containing Conditional Access policies that do not require such a claim. Policies in the former category are restricted in what kinds of changes may be made to them to prevent undermining the MFA requirement of those policies. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AuthenticationStrengthUsage} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationStrengthUsage get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public AuthenticationStrengthUsage get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, AuthenticationStrengthUsage::createFromDiscriminatorValue); } /** - * Invoke function usage + * Allows the caller to see which Conditional Access policies reference a specified authentication strength policy. The policies are returned in two collections, one containing Conditional Access policies that require an MFA claim and the other containing Conditional Access policies that do not require such a claim. Policies in the former category are restricted in what kinds of changes may be made to them to prevent undermining the MFA requirement of those policies. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function usage + * Allows the caller to see which Conditional Access policies reference a specified authentication strength policy. The policies are returned in two collections, one containing Conditional Access policies that require an MFA claim and the other containing Conditional Access policies that do not require such a claim. Policies in the former category are restricted in what kinds of changes may be made to them to prevent undermining the MFA requirement of those policies. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/namedlocations/NamedLocationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/namedlocations/NamedLocationsRequestBuilder.java index 3b26a4f21d7..f19a8f70667 100644 --- a/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/namedlocations/NamedLocationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/namedlocations/NamedLocationsRequestBuilder.java @@ -60,21 +60,19 @@ public NamedLocationsRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/identity/conditionalAccess/namedLocations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of namedLocation objects. + * Read-only. Nullable. Returns a collection of the specified named locations. * @return a {@link NamedLocationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public NamedLocationCollectionResponse get() { return get(null); } /** - * Get a list of namedLocation objects. + * Read-only. Nullable. Returns a collection of the specified named locations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link NamedLocationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public NamedLocationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public NamedLocationCollectionResponse get(@jakarta.annotation.Nullable final ja return this.requestAdapter.send(requestInfo, errorMapping, NamedLocationCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new namedLocation object. Named locations can be either ipNamedLocation or countryNamedLocation objects. + * Create new navigation property to namedLocations for identity * @param body The request body * @return a {@link NamedLocation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public NamedLocation post(@jakarta.annotation.Nonnull final NamedLocation body) { return post(body, null); } /** - * Create a new namedLocation object. Named locations can be either ipNamedLocation or countryNamedLocation objects. + * Create new navigation property to namedLocations for identity * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link NamedLocation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public NamedLocation post(@jakarta.annotation.Nonnull final NamedLocation body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public NamedLocation post(@jakarta.annotation.Nonnull final NamedLocation body, return this.requestAdapter.send(requestInfo, errorMapping, NamedLocation::createFromDiscriminatorValue); } /** - * Get a list of namedLocation objects. + * Read-only. Nullable. Returns a collection of the specified named locations. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of namedLocation objects. + * Read-only. Nullable. Returns a collection of the specified named locations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new namedLocation object. Named locations can be either ipNamedLocation or countryNamedLocation objects. + * Create new navigation property to namedLocations for identity * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new namedLocation object. Named locations can be either ipNamedLocation or countryNamedLocation objects. + * Create new navigation property to namedLocations for identity * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public NamedLocationsRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new NamedLocationsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of namedLocation objects. + * Read-only. Nullable. Returns a collection of the specified named locations. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/namedlocations/item/NamedLocationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/namedlocations/item/NamedLocationItemRequestBuilder.java index 57b7621deb8..39560903399 100644 --- a/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/namedlocations/item/NamedLocationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/namedlocations/item/NamedLocationItemRequestBuilder.java @@ -37,18 +37,16 @@ public NamedLocationItemRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/identity/conditionalAccess/namedLocations/{namedLocation%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a countryNamedLocation object. + * Delete navigation property namedLocations for identity * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a countryNamedLocation object. + * Delete navigation property namedLocations for identity * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of an ipNamedLocation object. + * Read-only. Nullable. Returns a collection of the specified named locations. * @return a {@link NamedLocation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public NamedLocation get() { return get(null); } /** - * Retrieve the properties and relationships of an ipNamedLocation object. + * Read-only. Nullable. Returns a collection of the specified named locations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link NamedLocation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public NamedLocation get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public NamedLocation get(@jakarta.annotation.Nullable final java.util.function.C return this.requestAdapter.send(requestInfo, errorMapping, NamedLocation::createFromDiscriminatorValue); } /** - * Update the properties of an ipNamedLocation object. + * Update the navigation property namedLocations in identity * @param body The request body * @return a {@link NamedLocation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public NamedLocation patch(@jakarta.annotation.Nonnull final NamedLocation body) { return patch(body, null); } /** - * Update the properties of an ipNamedLocation object. + * Update the navigation property namedLocations in identity * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link NamedLocation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public NamedLocation patch(@jakarta.annotation.Nonnull final NamedLocation body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public NamedLocation patch(@jakarta.annotation.Nonnull final NamedLocation body, return this.requestAdapter.send(requestInfo, errorMapping, NamedLocation::createFromDiscriminatorValue); } /** - * Delete a countryNamedLocation object. + * Delete navigation property namedLocations for identity * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a countryNamedLocation object. + * Delete navigation property namedLocations for identity * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of an ipNamedLocation object. + * Read-only. Nullable. Returns a collection of the specified named locations. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of an ipNamedLocation object. + * Read-only. Nullable. Returns a collection of the specified named locations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an ipNamedLocation object. + * Update the navigation property namedLocations in identity * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an ipNamedLocation object. + * Update the navigation property namedLocations in identity * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public NamedLocationItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of an ipNamedLocation object. + * Read-only. Nullable. Returns a collection of the specified named locations. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/policies/PoliciesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/policies/PoliciesRequestBuilder.java index ca0726e59f8..783eabf1263 100644 --- a/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/policies/PoliciesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/policies/PoliciesRequestBuilder.java @@ -60,21 +60,19 @@ public PoliciesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/identity/conditionalAccess/policies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of conditionalAccessPolicy objects. + * Read-only. Nullable. Returns a collection of the specified Conditional Access (CA) policies. * @return a {@link ConditionalAccessPolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConditionalAccessPolicyCollectionResponse get() { return get(null); } /** - * Retrieve a list of conditionalAccessPolicy objects. + * Read-only. Nullable. Returns a collection of the specified Conditional Access (CA) policies. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConditionalAccessPolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConditionalAccessPolicyCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public ConditionalAccessPolicyCollectionResponse get(@jakarta.annotation.Nullabl return this.requestAdapter.send(requestInfo, errorMapping, ConditionalAccessPolicyCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new conditionalAccessPolicy. + * Create new navigation property to policies for identity * @param body The request body * @return a {@link ConditionalAccessPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConditionalAccessPolicy post(@jakarta.annotation.Nonnull final ConditionalAccessPolicy body) { return post(body, null); } /** - * Create a new conditionalAccessPolicy. + * Create new navigation property to policies for identity * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConditionalAccessPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConditionalAccessPolicy post(@jakarta.annotation.Nonnull final ConditionalAccessPolicy body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public ConditionalAccessPolicy post(@jakarta.annotation.Nonnull final Conditiona return this.requestAdapter.send(requestInfo, errorMapping, ConditionalAccessPolicy::createFromDiscriminatorValue); } /** - * Retrieve a list of conditionalAccessPolicy objects. + * Read-only. Nullable. Returns a collection of the specified Conditional Access (CA) policies. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of conditionalAccessPolicy objects. + * Read-only. Nullable. Returns a collection of the specified Conditional Access (CA) policies. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new conditionalAccessPolicy. + * Create new navigation property to policies for identity * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new conditionalAccessPolicy. + * Create new navigation property to policies for identity * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public PoliciesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new PoliciesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of conditionalAccessPolicy objects. + * Read-only. Nullable. Returns a collection of the specified Conditional Access (CA) policies. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/policies/item/ConditionalAccessPolicyItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/policies/item/ConditionalAccessPolicyItemRequestBuilder.java index aafc71cdfa7..46bef657113 100644 --- a/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/policies/item/ConditionalAccessPolicyItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/policies/item/ConditionalAccessPolicyItemRequestBuilder.java @@ -37,18 +37,16 @@ public ConditionalAccessPolicyItemRequestBuilder(@jakarta.annotation.Nonnull fin super(requestAdapter, "{+baseurl}/identity/conditionalAccess/policies/{conditionalAccessPolicy%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a conditionalAccessPolicy object. + * Delete navigation property policies for identity * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a conditionalAccessPolicy object. + * Delete navigation property policies for identity * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a conditionalAccessPolicy object. + * Read-only. Nullable. Returns a collection of the specified Conditional Access (CA) policies. * @return a {@link ConditionalAccessPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConditionalAccessPolicy get() { return get(null); } /** - * Retrieve the properties and relationships of a conditionalAccessPolicy object. + * Read-only. Nullable. Returns a collection of the specified Conditional Access (CA) policies. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConditionalAccessPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConditionalAccessPolicy get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public ConditionalAccessPolicy get(@jakarta.annotation.Nullable final java.util. return this.requestAdapter.send(requestInfo, errorMapping, ConditionalAccessPolicy::createFromDiscriminatorValue); } /** - * Update the properties of a conditionalAccessPolicy object. + * Update the navigation property policies in identity * @param body The request body * @return a {@link ConditionalAccessPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConditionalAccessPolicy patch(@jakarta.annotation.Nonnull final ConditionalAccessPolicy body) { return patch(body, null); } /** - * Update the properties of a conditionalAccessPolicy object. + * Update the navigation property policies in identity * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConditionalAccessPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConditionalAccessPolicy patch(@jakarta.annotation.Nonnull final ConditionalAccessPolicy body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public ConditionalAccessPolicy patch(@jakarta.annotation.Nonnull final Condition return this.requestAdapter.send(requestInfo, errorMapping, ConditionalAccessPolicy::createFromDiscriminatorValue); } /** - * Delete a conditionalAccessPolicy object. + * Delete navigation property policies for identity * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a conditionalAccessPolicy object. + * Delete navigation property policies for identity * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a conditionalAccessPolicy object. + * Read-only. Nullable. Returns a collection of the specified Conditional Access (CA) policies. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a conditionalAccessPolicy object. + * Read-only. Nullable. Returns a collection of the specified Conditional Access (CA) policies. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a conditionalAccessPolicy object. + * Update the navigation property policies in identity * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a conditionalAccessPolicy object. + * Update the navigation property policies in identity * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public ConditionalAccessPolicyItemRequestBuilder withUrl(@jakarta.annotation.Non public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a conditionalAccessPolicy object. + * Read-only. Nullable. Returns a collection of the specified Conditional Access (CA) policies. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/templates/TemplatesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/templates/TemplatesRequestBuilder.java index 418d2bf8be9..d92808b17ab 100644 --- a/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/templates/TemplatesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/templates/TemplatesRequestBuilder.java @@ -59,21 +59,19 @@ public TemplatesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/identity/conditionalAccess/templates{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the conditionalAccessTemplate objects and their properties. + * Read-only. Nullable. Returns a collection of the specified Conditional Access templates. * @return a {@link ConditionalAccessTemplateCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConditionalAccessTemplateCollectionResponse get() { return get(null); } /** - * Get a list of the conditionalAccessTemplate objects and their properties. + * Read-only. Nullable. Returns a collection of the specified Conditional Access templates. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConditionalAccessTemplateCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConditionalAccessTemplateCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public ConditionalAccessTemplateCollectionResponse get(@jakarta.annotation.Nulla return this.requestAdapter.send(requestInfo, errorMapping, ConditionalAccessTemplateCollectionResponse::createFromDiscriminatorValue); } /** - * Get a list of the conditionalAccessTemplate objects and their properties. + * Read-only. Nullable. Returns a collection of the specified Conditional Access templates. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the conditionalAccessTemplate objects and their properties. + * Read-only. Nullable. Returns a collection of the specified Conditional Access templates. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public TemplatesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new TemplatesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the conditionalAccessTemplate objects and their properties. + * Read-only. Nullable. Returns a collection of the specified Conditional Access templates. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/templates/item/ConditionalAccessTemplateItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/templates/item/ConditionalAccessTemplateItemRequestBuilder.java index 72022c7ec73..1cb5d26f0ca 100644 --- a/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/templates/item/ConditionalAccessTemplateItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identity/conditionalaccess/templates/item/ConditionalAccessTemplateItemRequestBuilder.java @@ -37,21 +37,19 @@ public ConditionalAccessTemplateItemRequestBuilder(@jakarta.annotation.Nonnull f super(requestAdapter, "{+baseurl}/identity/conditionalAccess/templates/{conditionalAccessTemplate%2Did}{?%24expand,%24select}", rawUrl); } /** - * Read the properties and relationships of a conditionalAccessTemplate object. + * Read-only. Nullable. Returns a collection of the specified Conditional Access templates. * @return a {@link ConditionalAccessTemplate} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConditionalAccessTemplate get() { return get(null); } /** - * Read the properties and relationships of a conditionalAccessTemplate object. + * Read-only. Nullable. Returns a collection of the specified Conditional Access templates. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConditionalAccessTemplate} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConditionalAccessTemplate get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -61,7 +59,7 @@ public ConditionalAccessTemplate get(@jakarta.annotation.Nullable final java.uti return this.requestAdapter.send(requestInfo, errorMapping, ConditionalAccessTemplate::createFromDiscriminatorValue); } /** - * Read the properties and relationships of a conditionalAccessTemplate object. + * Read-only. Nullable. Returns a collection of the specified Conditional Access templates. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -69,7 +67,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a conditionalAccessTemplate object. + * Read-only. Nullable. Returns a collection of the specified Conditional Access templates. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -91,7 +89,7 @@ public ConditionalAccessTemplateItemRequestBuilder withUrl(@jakarta.annotation.N return new ConditionalAccessTemplateItemRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of a conditionalAccessTemplate object. + * Read-only. Nullable. Returns a collection of the specified Conditional Access templates. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identity/identityproviders/IdentityProvidersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identity/identityproviders/IdentityProvidersRequestBuilder.java index 7583cb3f1ea..b522146fad1 100644 --- a/src/main/java/com/microsoft/graph/generated/identity/identityproviders/IdentityProvidersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identity/identityproviders/IdentityProvidersRequestBuilder.java @@ -69,21 +69,19 @@ public IdentityProvidersRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/identity/identityProviders{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a collection of identity provider resources that are configured for a tenant, and that are derived from identityProviderBase. For a Microsoft Entra tenant, the providers can be socialIdentityProviders or builtinIdentityProviders objects. For an Azure AD B2C, the providers can be socialIdentityProvider, or appleManagedIdentityProvider objects. + * Get identityProviders from identity * @return a {@link IdentityProviderBaseCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IdentityProviderBaseCollectionResponse get() { return get(null); } /** - * Get a collection of identity provider resources that are configured for a tenant, and that are derived from identityProviderBase. For a Microsoft Entra tenant, the providers can be socialIdentityProviders or builtinIdentityProviders objects. For an Azure AD B2C, the providers can be socialIdentityProvider, or appleManagedIdentityProvider objects. + * Get identityProviders from identity * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link IdentityProviderBaseCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IdentityProviderBaseCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public IdentityProviderBaseCollectionResponse get(@jakarta.annotation.Nullable f return this.requestAdapter.send(requestInfo, errorMapping, IdentityProviderBaseCollectionResponse::createFromDiscriminatorValue); } /** - * Create an identity provider object that is of the type specified in the request body. Among the types of providers derived from identityProviderBase, you can currently create a socialIdentityProvider resource in Microsoft Entra ID. In Azure AD B2C, this operation can currently create a socialIdentityProvider, or an appleManagedIdentityProvider resource. + * Create new navigation property to identityProviders for identity * @param body The request body * @return a {@link IdentityProviderBase} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IdentityProviderBase post(@jakarta.annotation.Nonnull final IdentityProviderBase body) { return post(body, null); } /** - * Create an identity provider object that is of the type specified in the request body. Among the types of providers derived from identityProviderBase, you can currently create a socialIdentityProvider resource in Microsoft Entra ID. In Azure AD B2C, this operation can currently create a socialIdentityProvider, or an appleManagedIdentityProvider resource. + * Create new navigation property to identityProviders for identity * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link IdentityProviderBase} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IdentityProviderBase post(@jakarta.annotation.Nonnull final IdentityProviderBase body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public IdentityProviderBase post(@jakarta.annotation.Nonnull final IdentityProvi return this.requestAdapter.send(requestInfo, errorMapping, IdentityProviderBase::createFromDiscriminatorValue); } /** - * Get a collection of identity provider resources that are configured for a tenant, and that are derived from identityProviderBase. For a Microsoft Entra tenant, the providers can be socialIdentityProviders or builtinIdentityProviders objects. For an Azure AD B2C, the providers can be socialIdentityProvider, or appleManagedIdentityProvider objects. + * Get identityProviders from identity * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a collection of identity provider resources that are configured for a tenant, and that are derived from identityProviderBase. For a Microsoft Entra tenant, the providers can be socialIdentityProviders or builtinIdentityProviders objects. For an Azure AD B2C, the providers can be socialIdentityProvider, or appleManagedIdentityProvider objects. + * Get identityProviders from identity * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an identity provider object that is of the type specified in the request body. Among the types of providers derived from identityProviderBase, you can currently create a socialIdentityProvider resource in Microsoft Entra ID. In Azure AD B2C, this operation can currently create a socialIdentityProvider, or an appleManagedIdentityProvider resource. + * Create new navigation property to identityProviders for identity * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an identity provider object that is of the type specified in the request body. Among the types of providers derived from identityProviderBase, you can currently create a socialIdentityProvider resource in Microsoft Entra ID. In Azure AD B2C, this operation can currently create a socialIdentityProvider, or an appleManagedIdentityProvider resource. + * Create new navigation property to identityProviders for identity * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public IdentityProvidersRequestBuilder withUrl(@jakarta.annotation.Nonnull final return new IdentityProvidersRequestBuilder(rawUrl, requestAdapter); } /** - * Get a collection of identity provider resources that are configured for a tenant, and that are derived from identityProviderBase. For a Microsoft Entra tenant, the providers can be socialIdentityProviders or builtinIdentityProviders objects. For an Azure AD B2C, the providers can be socialIdentityProvider, or appleManagedIdentityProvider objects. + * Get identityProviders from identity */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identity/identityproviders/availableprovidertypes/AvailableProviderTypesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identity/identityproviders/availableprovidertypes/AvailableProviderTypesRequestBuilder.java index 452df9226b1..b9b4ae9345c 100644 --- a/src/main/java/com/microsoft/graph/generated/identity/identityproviders/availableprovidertypes/AvailableProviderTypesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identity/identityproviders/availableprovidertypes/AvailableProviderTypesRequestBuilder.java @@ -36,19 +36,21 @@ public AvailableProviderTypesRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/identity/identityProviders/availableProviderTypes(){?%24count,%24filter,%24search,%24skip,%24top}", rawUrl); } /** - * Invoke function availableProviderTypes + * Get all identity providers supported in a directory. * @return a {@link AvailableProviderTypesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public AvailableProviderTypesGetResponse get() { return get(null); } /** - * Invoke function availableProviderTypes + * Get all identity providers supported in a directory. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AvailableProviderTypesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public AvailableProviderTypesGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public AvailableProviderTypesGetResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, AvailableProviderTypesGetResponse::createFromDiscriminatorValue); } /** - * Invoke function availableProviderTypes + * Get all identity providers supported in a directory. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function availableProviderTypes + * Get all identity providers supported in a directory. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public AvailableProviderTypesRequestBuilder withUrl(@jakarta.annotation.Nonnull return new AvailableProviderTypesRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function availableProviderTypes + * Get all identity providers supported in a directory. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identity/identityproviders/item/IdentityProviderBaseItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identity/identityproviders/item/IdentityProviderBaseItemRequestBuilder.java index d69dafc39ad..ff696c1ee54 100644 --- a/src/main/java/com/microsoft/graph/generated/identity/identityproviders/item/IdentityProviderBaseItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identity/identityproviders/item/IdentityProviderBaseItemRequestBuilder.java @@ -37,18 +37,16 @@ public IdentityProviderBaseItemRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/identity/identityProviders/{identityProviderBase%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an identity provider resource that is of the type specified by the id in the request. Among the types of providers derived from identityProviderBase, you can currently delete a socialIdentityProvider resource in Microsoft Entra ID. In Azure AD B2C, this operation can currently delete a socialIdentityProvider, or an appleManagedIdentityProvider resource. + * Delete navigation property identityProviders for identity * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an identity provider resource that is of the type specified by the id in the request. Among the types of providers derived from identityProviderBase, you can currently delete a socialIdentityProvider resource in Microsoft Entra ID. In Azure AD B2C, this operation can currently delete a socialIdentityProvider, or an appleManagedIdentityProvider resource. + * Delete navigation property identityProviders for identity * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the properties and relationships of the specified identity provider configured in the tenant. Among the types of providers derived from identityProviderBase, you can currently get a socialIdentityProvider or a builtinIdentityProvider resource in Microsoft Entra ID. In Azure AD B2C, this operation can currently get a socialIdentityProvider, or an appleManagedIdentityProvider resource. + * Get identityProviders from identity * @return a {@link IdentityProviderBase} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IdentityProviderBase get() { return get(null); } /** - * Get the properties and relationships of the specified identity provider configured in the tenant. Among the types of providers derived from identityProviderBase, you can currently get a socialIdentityProvider or a builtinIdentityProvider resource in Microsoft Entra ID. In Azure AD B2C, this operation can currently get a socialIdentityProvider, or an appleManagedIdentityProvider resource. + * Get identityProviders from identity * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link IdentityProviderBase} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IdentityProviderBase get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public IdentityProviderBase get(@jakarta.annotation.Nullable final java.util.fun return this.requestAdapter.send(requestInfo, errorMapping, IdentityProviderBase::createFromDiscriminatorValue); } /** - * Update the properties of the specified identity provider configured in the tenant. Among the types of providers derived from identityProviderBase, you can currently update a socialIdentityProvider resource in Microsoft Entra ID. In Azure AD B2C, this operation can currently update a socialIdentityProvider, or an appleManagedIdentityProvider resource. + * Update the navigation property identityProviders in identity * @param body The request body * @return a {@link IdentityProviderBase} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IdentityProviderBase patch(@jakarta.annotation.Nonnull final IdentityProviderBase body) { return patch(body, null); } /** - * Update the properties of the specified identity provider configured in the tenant. Among the types of providers derived from identityProviderBase, you can currently update a socialIdentityProvider resource in Microsoft Entra ID. In Azure AD B2C, this operation can currently update a socialIdentityProvider, or an appleManagedIdentityProvider resource. + * Update the navigation property identityProviders in identity * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link IdentityProviderBase} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IdentityProviderBase patch(@jakarta.annotation.Nonnull final IdentityProviderBase body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public IdentityProviderBase patch(@jakarta.annotation.Nonnull final IdentityProv return this.requestAdapter.send(requestInfo, errorMapping, IdentityProviderBase::createFromDiscriminatorValue); } /** - * Delete an identity provider resource that is of the type specified by the id in the request. Among the types of providers derived from identityProviderBase, you can currently delete a socialIdentityProvider resource in Microsoft Entra ID. In Azure AD B2C, this operation can currently delete a socialIdentityProvider, or an appleManagedIdentityProvider resource. + * Delete navigation property identityProviders for identity * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an identity provider resource that is of the type specified by the id in the request. Among the types of providers derived from identityProviderBase, you can currently delete a socialIdentityProvider resource in Microsoft Entra ID. In Azure AD B2C, this operation can currently delete a socialIdentityProvider, or an appleManagedIdentityProvider resource. + * Delete navigation property identityProviders for identity * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the properties and relationships of the specified identity provider configured in the tenant. Among the types of providers derived from identityProviderBase, you can currently get a socialIdentityProvider or a builtinIdentityProvider resource in Microsoft Entra ID. In Azure AD B2C, this operation can currently get a socialIdentityProvider, or an appleManagedIdentityProvider resource. + * Get identityProviders from identity * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the properties and relationships of the specified identity provider configured in the tenant. Among the types of providers derived from identityProviderBase, you can currently get a socialIdentityProvider or a builtinIdentityProvider resource in Microsoft Entra ID. In Azure AD B2C, this operation can currently get a socialIdentityProvider, or an appleManagedIdentityProvider resource. + * Get identityProviders from identity * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of the specified identity provider configured in the tenant. Among the types of providers derived from identityProviderBase, you can currently update a socialIdentityProvider resource in Microsoft Entra ID. In Azure AD B2C, this operation can currently update a socialIdentityProvider, or an appleManagedIdentityProvider resource. + * Update the navigation property identityProviders in identity * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of the specified identity provider configured in the tenant. Among the types of providers derived from identityProviderBase, you can currently update a socialIdentityProvider resource in Microsoft Entra ID. In Azure AD B2C, this operation can currently update a socialIdentityProvider, or an appleManagedIdentityProvider resource. + * Update the navigation property identityProviders in identity * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public IdentityProviderBaseItemRequestBuilder withUrl(@jakarta.annotation.Nonnul public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the properties and relationships of the specified identity provider configured in the tenant. Among the types of providers derived from identityProviderBase, you can currently get a socialIdentityProvider or a builtinIdentityProvider resource in Microsoft Entra ID. In Azure AD B2C, this operation can currently get a socialIdentityProvider, or an appleManagedIdentityProvider resource. + * Get identityProviders from identity */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identity/userflowattributes/UserFlowAttributesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identity/userflowattributes/UserFlowAttributesRequestBuilder.java index e3ea1bb3ceb..38b79990b36 100644 --- a/src/main/java/com/microsoft/graph/generated/identity/userflowattributes/UserFlowAttributesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identity/userflowattributes/UserFlowAttributesRequestBuilder.java @@ -60,21 +60,19 @@ public UserFlowAttributesRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/identity/userFlowAttributes{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of identityUserFlowAttribute objects. + * Represents entry point for identity userflow attributes. * @return a {@link IdentityUserFlowAttributeCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IdentityUserFlowAttributeCollectionResponse get() { return get(null); } /** - * Retrieve a list of identityUserFlowAttribute objects. + * Represents entry point for identity userflow attributes. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link IdentityUserFlowAttributeCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IdentityUserFlowAttributeCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public IdentityUserFlowAttributeCollectionResponse get(@jakarta.annotation.Nulla return this.requestAdapter.send(requestInfo, errorMapping, IdentityUserFlowAttributeCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new custom identityUserFlowAttribute object. + * Create new navigation property to userFlowAttributes for identity * @param body The request body * @return a {@link IdentityUserFlowAttribute} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IdentityUserFlowAttribute post(@jakarta.annotation.Nonnull final IdentityUserFlowAttribute body) { return post(body, null); } /** - * Create a new custom identityUserFlowAttribute object. + * Create new navigation property to userFlowAttributes for identity * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link IdentityUserFlowAttribute} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IdentityUserFlowAttribute post(@jakarta.annotation.Nonnull final IdentityUserFlowAttribute body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public IdentityUserFlowAttribute post(@jakarta.annotation.Nonnull final Identity return this.requestAdapter.send(requestInfo, errorMapping, IdentityUserFlowAttribute::createFromDiscriminatorValue); } /** - * Retrieve a list of identityUserFlowAttribute objects. + * Represents entry point for identity userflow attributes. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of identityUserFlowAttribute objects. + * Represents entry point for identity userflow attributes. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new custom identityUserFlowAttribute object. + * Create new navigation property to userFlowAttributes for identity * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new custom identityUserFlowAttribute object. + * Create new navigation property to userFlowAttributes for identity * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public UserFlowAttributesRequestBuilder withUrl(@jakarta.annotation.Nonnull fina return new UserFlowAttributesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of identityUserFlowAttribute objects. + * Represents entry point for identity userflow attributes. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identity/userflowattributes/item/IdentityUserFlowAttributeItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identity/userflowattributes/item/IdentityUserFlowAttributeItemRequestBuilder.java index 7107ac6c3f3..49fb5a8b7e3 100644 --- a/src/main/java/com/microsoft/graph/generated/identity/userflowattributes/item/IdentityUserFlowAttributeItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identity/userflowattributes/item/IdentityUserFlowAttributeItemRequestBuilder.java @@ -37,18 +37,16 @@ public IdentityUserFlowAttributeItemRequestBuilder(@jakarta.annotation.Nonnull f super(requestAdapter, "{+baseurl}/identity/userFlowAttributes/{identityUserFlowAttribute%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a custom identityUserFlowAttribute. + * Delete navigation property userFlowAttributes for identity * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a custom identityUserFlowAttribute. + * Delete navigation property userFlowAttributes for identity * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a identityUserFlowAttribute object. + * Represents entry point for identity userflow attributes. * @return a {@link IdentityUserFlowAttribute} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IdentityUserFlowAttribute get() { return get(null); } /** - * Retrieve the properties and relationships of a identityUserFlowAttribute object. + * Represents entry point for identity userflow attributes. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link IdentityUserFlowAttribute} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IdentityUserFlowAttribute get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public IdentityUserFlowAttribute get(@jakarta.annotation.Nullable final java.uti return this.requestAdapter.send(requestInfo, errorMapping, IdentityUserFlowAttribute::createFromDiscriminatorValue); } /** - * Update the properties of a custom identityUserFlowAttribute object. + * Update the navigation property userFlowAttributes in identity * @param body The request body * @return a {@link IdentityUserFlowAttribute} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IdentityUserFlowAttribute patch(@jakarta.annotation.Nonnull final IdentityUserFlowAttribute body) { return patch(body, null); } /** - * Update the properties of a custom identityUserFlowAttribute object. + * Update the navigation property userFlowAttributes in identity * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link IdentityUserFlowAttribute} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IdentityUserFlowAttribute patch(@jakarta.annotation.Nonnull final IdentityUserFlowAttribute body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public IdentityUserFlowAttribute patch(@jakarta.annotation.Nonnull final Identit return this.requestAdapter.send(requestInfo, errorMapping, IdentityUserFlowAttribute::createFromDiscriminatorValue); } /** - * Delete a custom identityUserFlowAttribute. + * Delete navigation property userFlowAttributes for identity * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a custom identityUserFlowAttribute. + * Delete navigation property userFlowAttributes for identity * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a identityUserFlowAttribute object. + * Represents entry point for identity userflow attributes. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a identityUserFlowAttribute object. + * Represents entry point for identity userflow attributes. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a custom identityUserFlowAttribute object. + * Update the navigation property userFlowAttributes in identity * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a custom identityUserFlowAttribute object. + * Update the navigation property userFlowAttributes in identity * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public IdentityUserFlowAttributeItemRequestBuilder withUrl(@jakarta.annotation.N public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a identityUserFlowAttribute object. + * Represents entry point for identity userflow attributes. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/DefinitionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/DefinitionsRequestBuilder.java index ad3a4e34721..328e51526f0 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/DefinitionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/DefinitionsRequestBuilder.java @@ -71,21 +71,19 @@ public FilterByCurrentUserWithOnRequestBuilder filterByCurrentUserWithOn(@jakart return new FilterByCurrentUserWithOnRequestBuilder(pathParameters, requestAdapter, on); } /** - * Get a list of the accessReviewScheduleDefinition objects and their properties. + * Represents the template and scheduling for an access review. * @return a {@link AccessReviewScheduleDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessReviewScheduleDefinitionCollectionResponse get() { return get(null); } /** - * Get a list of the accessReviewScheduleDefinition objects and their properties. + * Represents the template and scheduling for an access review. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessReviewScheduleDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessReviewScheduleDefinitionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -95,23 +93,21 @@ public AccessReviewScheduleDefinitionCollectionResponse get(@jakarta.annotation. return this.requestAdapter.send(requestInfo, errorMapping, AccessReviewScheduleDefinitionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new accessReviewScheduleDefinition object. + * Create new navigation property to definitions for identityGovernance * @param body The request body * @return a {@link AccessReviewScheduleDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessReviewScheduleDefinition post(@jakarta.annotation.Nonnull final AccessReviewScheduleDefinition body) { return post(body, null); } /** - * Create a new accessReviewScheduleDefinition object. + * Create new navigation property to definitions for identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessReviewScheduleDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessReviewScheduleDefinition post(@jakarta.annotation.Nonnull final AccessReviewScheduleDefinition body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -122,7 +118,7 @@ public AccessReviewScheduleDefinition post(@jakarta.annotation.Nonnull final Acc return this.requestAdapter.send(requestInfo, errorMapping, AccessReviewScheduleDefinition::createFromDiscriminatorValue); } /** - * Get a list of the accessReviewScheduleDefinition objects and their properties. + * Represents the template and scheduling for an access review. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -130,7 +126,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the accessReviewScheduleDefinition objects and their properties. + * Represents the template and scheduling for an access review. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -142,7 +138,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new accessReviewScheduleDefinition object. + * Create new navigation property to definitions for identityGovernance * @param body The request body * @return a {@link RequestInformation} */ @@ -151,7 +147,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new accessReviewScheduleDefinition object. + * Create new navigation property to definitions for identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -176,7 +172,7 @@ public DefinitionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new DefinitionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the accessReviewScheduleDefinition objects and their properties. + * Represents the template and scheduling for an access review. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java index a6d098d832c..22add886c53 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java @@ -38,19 +38,21 @@ public FilterByCurrentUserWithOnRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/identityGovernance/accessReviews/definitions/filterByCurrentUser(on='{on}'){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function filterByCurrentUser + * Returns accessReviewScheduleDefinition objects where the calling user is a reviewer on one or more accessReviewInstance objects. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get() { return get(null); } /** - * Invoke function filterByCurrentUser + * Returns accessReviewScheduleDefinition objects where the calling user is a reviewer on one or more accessReviewInstance objects. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, FilterByCurrentUserWithOnGetResponse::createFromDiscriminatorValue); } /** - * Invoke function filterByCurrentUser + * Returns accessReviewScheduleDefinition objects where the calling user is a reviewer on one or more accessReviewInstance objects. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function filterByCurrentUser + * Returns accessReviewScheduleDefinition objects where the calling user is a reviewer on one or more accessReviewInstance objects. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -90,7 +92,7 @@ public FilterByCurrentUserWithOnRequestBuilder withUrl(@jakarta.annotation.Nonnu return new FilterByCurrentUserWithOnRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function filterByCurrentUser + * Returns accessReviewScheduleDefinition objects where the calling user is a reviewer on one or more accessReviewInstance objects. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/AccessReviewScheduleDefinitionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/AccessReviewScheduleDefinitionItemRequestBuilder.java index 419c22f93d3..3ab703c8338 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/AccessReviewScheduleDefinitionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/AccessReviewScheduleDefinitionItemRequestBuilder.java @@ -55,18 +55,16 @@ public AccessReviewScheduleDefinitionItemRequestBuilder(@jakarta.annotation.Nonn super(requestAdapter, "{+baseurl}/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes an accessReviewScheduleDefinition object. + * Delete navigation property definitions for identityGovernance * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes an accessReviewScheduleDefinition object. + * Delete navigation property definitions for identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -75,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of an accessReviewScheduleDefinition object. To retrieve the instances of the access review series, use the list accessReviewInstance API. + * Represents the template and scheduling for an access review. * @return a {@link AccessReviewScheduleDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessReviewScheduleDefinition get() { return get(null); } /** - * Read the properties and relationships of an accessReviewScheduleDefinition object. To retrieve the instances of the access review series, use the list accessReviewInstance API. + * Represents the template and scheduling for an access review. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessReviewScheduleDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessReviewScheduleDefinition get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +120,7 @@ public AccessReviewScheduleDefinition put(@jakarta.annotation.Nonnull final Acce return this.requestAdapter.send(requestInfo, errorMapping, AccessReviewScheduleDefinition::createFromDiscriminatorValue); } /** - * Deletes an accessReviewScheduleDefinition object. + * Delete navigation property definitions for identityGovernance * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +128,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes an accessReviewScheduleDefinition object. + * Delete navigation property definitions for identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -144,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of an accessReviewScheduleDefinition object. To retrieve the instances of the access review series, use the list accessReviewInstance API. + * Represents the template and scheduling for an access review. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -152,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of an accessReviewScheduleDefinition object. To retrieve the instances of the access review series, use the list accessReviewInstance API. + * Represents the template and scheduling for an access review. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -204,7 +200,7 @@ public AccessReviewScheduleDefinitionItemRequestBuilder withUrl(@jakarta.annotat public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of an accessReviewScheduleDefinition object. To retrieve the instances of the access review series, use the list accessReviewInstance API. + * Represents the template and scheduling for an access review. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/InstancesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/InstancesRequestBuilder.java index e4efcab4cf9..a1d84b78c8a 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/InstancesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/InstancesRequestBuilder.java @@ -71,21 +71,19 @@ public FilterByCurrentUserWithOnRequestBuilder filterByCurrentUserWithOn(@jakart return new FilterByCurrentUserWithOnRequestBuilder(pathParameters, requestAdapter, on); } /** - * Get a list of the accessReviewInstance objects and their properties. + * If the accessReviewScheduleDefinition is a recurring access review, instances represent each recurrence. A review that doesn't recur will have exactly one instance. Instances also represent each unique resource under review in the accessReviewScheduleDefinition. If a review has multiple resources and multiple instances, each resource has a unique instance for each recurrence. * @return a {@link AccessReviewInstanceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessReviewInstanceCollectionResponse get() { return get(null); } /** - * Get a list of the accessReviewInstance objects and their properties. + * If the accessReviewScheduleDefinition is a recurring access review, instances represent each recurrence. A review that doesn't recur will have exactly one instance. Instances also represent each unique resource under review in the accessReviewScheduleDefinition. If a review has multiple resources and multiple instances, each resource has a unique instance for each recurrence. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessReviewInstanceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessReviewInstanceCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +118,7 @@ public AccessReviewInstance post(@jakarta.annotation.Nonnull final AccessReviewI return this.requestAdapter.send(requestInfo, errorMapping, AccessReviewInstance::createFromDiscriminatorValue); } /** - * Get a list of the accessReviewInstance objects and their properties. + * If the accessReviewScheduleDefinition is a recurring access review, instances represent each recurrence. A review that doesn't recur will have exactly one instance. Instances also represent each unique resource under review in the accessReviewScheduleDefinition. If a review has multiple resources and multiple instances, each resource has a unique instance for each recurrence. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +126,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the accessReviewInstance objects and their properties. + * If the accessReviewScheduleDefinition is a recurring access review, instances represent each recurrence. A review that doesn't recur will have exactly one instance. Instances also represent each unique resource under review in the accessReviewScheduleDefinition. If a review has multiple resources and multiple instances, each resource has a unique instance for each recurrence. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -174,7 +172,7 @@ public InstancesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new InstancesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the accessReviewInstance objects and their properties. + * If the accessReviewScheduleDefinition is a recurring access review, instances represent each recurrence. A review that doesn't recur will have exactly one instance. Instances also represent each unique resource under review in the accessReviewScheduleDefinition. If a review has multiple resources and multiple instances, each resource has a unique instance for each recurrence. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java index fa1c9357c1f..176d73922ff 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java @@ -38,19 +38,21 @@ public FilterByCurrentUserWithOnRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition%2Did}/instances/filterByCurrentUser(on='{on}'){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function filterByCurrentUser + * Retrieve all accessReviewInstance objects on a given accessReviewScheduleDefinition where the calling user is a reviewer on one or more accessReviewInstanceDecisionItem objects. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get() { return get(null); } /** - * Invoke function filterByCurrentUser + * Retrieve all accessReviewInstance objects on a given accessReviewScheduleDefinition where the calling user is a reviewer on one or more accessReviewInstanceDecisionItem objects. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, FilterByCurrentUserWithOnGetResponse::createFromDiscriminatorValue); } /** - * Invoke function filterByCurrentUser + * Retrieve all accessReviewInstance objects on a given accessReviewScheduleDefinition where the calling user is a reviewer on one or more accessReviewInstanceDecisionItem objects. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function filterByCurrentUser + * Retrieve all accessReviewInstance objects on a given accessReviewScheduleDefinition where the calling user is a reviewer on one or more accessReviewInstanceDecisionItem objects. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -90,7 +92,7 @@ public FilterByCurrentUserWithOnRequestBuilder withUrl(@jakarta.annotation.Nonnu return new FilterByCurrentUserWithOnRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function filterByCurrentUser + * Retrieve all accessReviewInstance objects on a given accessReviewScheduleDefinition where the calling user is a reviewer on one or more accessReviewInstanceDecisionItem objects. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/AccessReviewInstanceItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/AccessReviewInstanceItemRequestBuilder.java index 32eddd6ecf2..1fa23aa2594 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/AccessReviewInstanceItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/AccessReviewInstanceItemRequestBuilder.java @@ -136,21 +136,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of an accessReviewInstance object. + * If the accessReviewScheduleDefinition is a recurring access review, instances represent each recurrence. A review that doesn't recur will have exactly one instance. Instances also represent each unique resource under review in the accessReviewScheduleDefinition. If a review has multiple resources and multiple instances, each resource has a unique instance for each recurrence. * @return a {@link AccessReviewInstance} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessReviewInstance get() { return get(null); } /** - * Read the properties and relationships of an accessReviewInstance object. + * If the accessReviewScheduleDefinition is a recurring access review, instances represent each recurrence. A review that doesn't recur will have exactly one instance. Instances also represent each unique resource under review in the accessReviewScheduleDefinition. If a review has multiple resources and multiple instances, each resource has a unique instance for each recurrence. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessReviewInstance} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessReviewInstance get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -160,23 +158,21 @@ public AccessReviewInstance get(@jakarta.annotation.Nullable final java.util.fun return this.requestAdapter.send(requestInfo, errorMapping, AccessReviewInstance::createFromDiscriminatorValue); } /** - * Update the properties of an accessReviewInstance object. Only the reviewers and fallbackReviewers properties can be updated but the scope property is also required in the request body. You can only add reviewers to the fallbackReviewers property but can't remove existing fallbackReviewers. To update an accessReviewInstance, it's status must be InProgress. + * Update the navigation property instances in identityGovernance * @param body The request body * @return a {@link AccessReviewInstance} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessReviewInstance patch(@jakarta.annotation.Nonnull final AccessReviewInstance body) { return patch(body, null); } /** - * Update the properties of an accessReviewInstance object. Only the reviewers and fallbackReviewers properties can be updated but the scope property is also required in the request body. You can only add reviewers to the fallbackReviewers property but can't remove existing fallbackReviewers. To update an accessReviewInstance, it's status must be InProgress. + * Update the navigation property instances in identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessReviewInstance} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessReviewInstance patch(@jakarta.annotation.Nonnull final AccessReviewInstance body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -207,7 +203,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of an accessReviewInstance object. + * If the accessReviewScheduleDefinition is a recurring access review, instances represent each recurrence. A review that doesn't recur will have exactly one instance. Instances also represent each unique resource under review in the accessReviewScheduleDefinition. If a review has multiple resources and multiple instances, each resource has a unique instance for each recurrence. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -215,7 +211,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of an accessReviewInstance object. + * If the accessReviewScheduleDefinition is a recurring access review, instances represent each recurrence. A review that doesn't recur will have exactly one instance. Instances also represent each unique resource under review in the accessReviewScheduleDefinition. If a review has multiple resources and multiple instances, each resource has a unique instance for each recurrence. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -227,7 +223,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an accessReviewInstance object. Only the reviewers and fallbackReviewers properties can be updated but the scope property is also required in the request body. You can only add reviewers to the fallbackReviewers property but can't remove existing fallbackReviewers. To update an accessReviewInstance, it's status must be InProgress. + * Update the navigation property instances in identityGovernance * @param body The request body * @return a {@link RequestInformation} */ @@ -236,7 +232,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an accessReviewInstance object. Only the reviewers and fallbackReviewers properties can be updated but the scope property is also required in the request body. You can only add reviewers to the fallbackReviewers property but can't remove existing fallbackReviewers. To update an accessReviewInstance, it's status must be InProgress. + * Update the navigation property instances in identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -267,7 +263,7 @@ public AccessReviewInstanceItemRequestBuilder withUrl(@jakarta.annotation.Nonnul public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of an accessReviewInstance object. + * If the accessReviewScheduleDefinition is a recurring access review, instances represent each recurrence. A review that doesn't recur will have exactly one instance. Instances also represent each unique resource under review in the accessReviewScheduleDefinition. If a review has multiple resources and multiple instances, each resource has a unique instance for each recurrence. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/contactedreviewers/ContactedReviewersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/contactedreviewers/ContactedReviewersRequestBuilder.java index eac846d4d6c..933469acb54 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/contactedreviewers/ContactedReviewersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/contactedreviewers/ContactedReviewersRequestBuilder.java @@ -60,21 +60,19 @@ public ContactedReviewersRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition%2Did}/instances/{accessReviewInstance%2Did}/contactedReviewers{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the reviewers for an access review instance, irrespective of whether or not they have received a notification. The reviewers are represented by an accessReviewReviewer object. A list of zero or more objects are returned, including all of their nested properties. + * Returns the collection of reviewers who were contacted to complete this review. While the reviewers and fallbackReviewers properties of the accessReviewScheduleDefinition might specify group owners or managers as reviewers, contactedReviewers returns their individual identities. Supports $select. Read-only. * @return a {@link AccessReviewReviewerCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessReviewReviewerCollectionResponse get() { return get(null); } /** - * Get the reviewers for an access review instance, irrespective of whether or not they have received a notification. The reviewers are represented by an accessReviewReviewer object. A list of zero or more objects are returned, including all of their nested properties. + * Returns the collection of reviewers who were contacted to complete this review. While the reviewers and fallbackReviewers properties of the accessReviewScheduleDefinition might specify group owners or managers as reviewers, contactedReviewers returns their individual identities. Supports $select. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessReviewReviewerCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessReviewReviewerCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public AccessReviewReviewer post(@jakarta.annotation.Nonnull final AccessReviewR return this.requestAdapter.send(requestInfo, errorMapping, AccessReviewReviewer::createFromDiscriminatorValue); } /** - * Get the reviewers for an access review instance, irrespective of whether or not they have received a notification. The reviewers are represented by an accessReviewReviewer object. A list of zero or more objects are returned, including all of their nested properties. + * Returns the collection of reviewers who were contacted to complete this review. While the reviewers and fallbackReviewers properties of the accessReviewScheduleDefinition might specify group owners or managers as reviewers, contactedReviewers returns their individual identities. Supports $select. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the reviewers for an access review instance, irrespective of whether or not they have received a notification. The reviewers are represented by an accessReviewReviewer object. A list of zero or more objects are returned, including all of their nested properties. + * Returns the collection of reviewers who were contacted to complete this review. While the reviewers and fallbackReviewers properties of the accessReviewScheduleDefinition might specify group owners or managers as reviewers, contactedReviewers returns their individual identities. Supports $select. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public ContactedReviewersRequestBuilder withUrl(@jakarta.annotation.Nonnull fina return new ContactedReviewersRequestBuilder(rawUrl, requestAdapter); } /** - * Get the reviewers for an access review instance, irrespective of whether or not they have received a notification. The reviewers are represented by an accessReviewReviewer object. A list of zero or more objects are returned, including all of their nested properties. + * Returns the collection of reviewers who were contacted to complete this review. While the reviewers and fallbackReviewers properties of the accessReviewScheduleDefinition might specify group owners or managers as reviewers, contactedReviewers returns their individual identities. Supports $select. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/decisions/DecisionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/decisions/DecisionsRequestBuilder.java index 1258338d477..787511f8bb3 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/decisions/DecisionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/decisions/DecisionsRequestBuilder.java @@ -71,21 +71,19 @@ public FilterByCurrentUserWithOnRequestBuilder filterByCurrentUserWithOn(@jakart return new FilterByCurrentUserWithOnRequestBuilder(pathParameters, requestAdapter, on); } /** - * Retrieve the accessReviewInstanceDecisionItem objects for a specific accessReviewInstance. A list of zero or more accessReviewInstanceDecisionItem objects are returned, including all of their nested properties. + * Each user reviewed in an accessReviewInstance has a decision item representing if they were approved, denied, or not yet reviewed. * @return a {@link AccessReviewInstanceDecisionItemCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessReviewInstanceDecisionItemCollectionResponse get() { return get(null); } /** - * Retrieve the accessReviewInstanceDecisionItem objects for a specific accessReviewInstance. A list of zero or more accessReviewInstanceDecisionItem objects are returned, including all of their nested properties. + * Each user reviewed in an accessReviewInstance has a decision item representing if they were approved, denied, or not yet reviewed. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessReviewInstanceDecisionItemCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessReviewInstanceDecisionItemCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +118,7 @@ public AccessReviewInstanceDecisionItem post(@jakarta.annotation.Nonnull final A return this.requestAdapter.send(requestInfo, errorMapping, AccessReviewInstanceDecisionItem::createFromDiscriminatorValue); } /** - * Retrieve the accessReviewInstanceDecisionItem objects for a specific accessReviewInstance. A list of zero or more accessReviewInstanceDecisionItem objects are returned, including all of their nested properties. + * Each user reviewed in an accessReviewInstance has a decision item representing if they were approved, denied, or not yet reviewed. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +126,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the accessReviewInstanceDecisionItem objects for a specific accessReviewInstance. A list of zero or more accessReviewInstanceDecisionItem objects are returned, including all of their nested properties. + * Each user reviewed in an accessReviewInstance has a decision item representing if they were approved, denied, or not yet reviewed. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -174,7 +172,7 @@ public DecisionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new DecisionsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the accessReviewInstanceDecisionItem objects for a specific accessReviewInstance. A list of zero or more accessReviewInstanceDecisionItem objects are returned, including all of their nested properties. + * Each user reviewed in an accessReviewInstance has a decision item representing if they were approved, denied, or not yet reviewed. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/decisions/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/decisions/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java index 369aed3319e..1cf529b38df 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/decisions/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/decisions/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java @@ -38,19 +38,21 @@ public FilterByCurrentUserWithOnRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition%2Did}/instances/{accessReviewInstance%2Did}/decisions/filterByCurrentUser(on='{on}'){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function filterByCurrentUser + * Retrieve all decision items for an instance of an access review or a stage of an instance of a multi-stage access review, for which the calling user is the reviewer. The decision items are represented by accessReviewInstanceDecisionItem objects on a given accessReviewInstance or accessReviewStage for which the calling user is the reviewer. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get() { return get(null); } /** - * Invoke function filterByCurrentUser + * Retrieve all decision items for an instance of an access review or a stage of an instance of a multi-stage access review, for which the calling user is the reviewer. The decision items are represented by accessReviewInstanceDecisionItem objects on a given accessReviewInstance or accessReviewStage for which the calling user is the reviewer. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, FilterByCurrentUserWithOnGetResponse::createFromDiscriminatorValue); } /** - * Invoke function filterByCurrentUser + * Retrieve all decision items for an instance of an access review or a stage of an instance of a multi-stage access review, for which the calling user is the reviewer. The decision items are represented by accessReviewInstanceDecisionItem objects on a given accessReviewInstance or accessReviewStage for which the calling user is the reviewer. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function filterByCurrentUser + * Retrieve all decision items for an instance of an access review or a stage of an instance of a multi-stage access review, for which the calling user is the reviewer. The decision items are represented by accessReviewInstanceDecisionItem objects on a given accessReviewInstance or accessReviewStage for which the calling user is the reviewer. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -90,7 +92,7 @@ public FilterByCurrentUserWithOnRequestBuilder withUrl(@jakarta.annotation.Nonnu return new FilterByCurrentUserWithOnRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function filterByCurrentUser + * Retrieve all decision items for an instance of an access review or a stage of an instance of a multi-stage access review, for which the calling user is the reviewer. The decision items are represented by accessReviewInstanceDecisionItem objects on a given accessReviewInstance or accessReviewStage for which the calling user is the reviewer. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/decisions/item/AccessReviewInstanceDecisionItemItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/decisions/item/AccessReviewInstanceDecisionItemItemRequestBuilder.java index e87427545a2..daee9a6f1ee 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/decisions/item/AccessReviewInstanceDecisionItemItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/decisions/item/AccessReviewInstanceDecisionItemItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of an accessReviewInstanceDecisionItem object. + * Each user reviewed in an accessReviewInstance has a decision item representing if they were approved, denied, or not yet reviewed. * @return a {@link AccessReviewInstanceDecisionItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessReviewInstanceDecisionItem get() { return get(null); } /** - * Read the properties and relationships of an accessReviewInstanceDecisionItem object. + * Each user reviewed in an accessReviewInstance has a decision item representing if they were approved, denied, or not yet reviewed. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessReviewInstanceDecisionItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessReviewInstanceDecisionItem get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of an accessReviewInstanceDecisionItem object. + * Each user reviewed in an accessReviewInstance has a decision item representing if they were approved, denied, or not yet reviewed. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of an accessReviewInstanceDecisionItem object. + * Each user reviewed in an accessReviewInstance has a decision item representing if they were approved, denied, or not yet reviewed. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public AccessReviewInstanceDecisionItemItemRequestBuilder withUrl(@jakarta.annot public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of an accessReviewInstanceDecisionItem object. + * Each user reviewed in an accessReviewInstance has a decision item representing if they were approved, denied, or not yet reviewed. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/stages/StagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/stages/StagesRequestBuilder.java index d6b9dcc49b0..57e5f360b9d 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/stages/StagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/stages/StagesRequestBuilder.java @@ -71,21 +71,19 @@ public FilterByCurrentUserWithOnRequestBuilder filterByCurrentUserWithOn(@jakart return new FilterByCurrentUserWithOnRequestBuilder(pathParameters, requestAdapter, on); } /** - * Retrieve the stages in a multi-stage access review instance. + * If the instance has multiple stages, this returns the collection of stages. A new stage will only be created when the previous stage ends. The existence, number, and settings of stages on a review instance are created based on the accessReviewStageSettings on the parent accessReviewScheduleDefinition. * @return a {@link AccessReviewStageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessReviewStageCollectionResponse get() { return get(null); } /** - * Retrieve the stages in a multi-stage access review instance. + * If the instance has multiple stages, this returns the collection of stages. A new stage will only be created when the previous stage ends. The existence, number, and settings of stages on a review instance are created based on the accessReviewStageSettings on the parent accessReviewScheduleDefinition. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessReviewStageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessReviewStageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +118,7 @@ public AccessReviewStage post(@jakarta.annotation.Nonnull final AccessReviewStag return this.requestAdapter.send(requestInfo, errorMapping, AccessReviewStage::createFromDiscriminatorValue); } /** - * Retrieve the stages in a multi-stage access review instance. + * If the instance has multiple stages, this returns the collection of stages. A new stage will only be created when the previous stage ends. The existence, number, and settings of stages on a review instance are created based on the accessReviewStageSettings on the parent accessReviewScheduleDefinition. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +126,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the stages in a multi-stage access review instance. + * If the instance has multiple stages, this returns the collection of stages. A new stage will only be created when the previous stage ends. The existence, number, and settings of stages on a review instance are created based on the accessReviewStageSettings on the parent accessReviewScheduleDefinition. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -174,7 +172,7 @@ public StagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw return new StagesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the stages in a multi-stage access review instance. + * If the instance has multiple stages, this returns the collection of stages. A new stage will only be created when the previous stage ends. The existence, number, and settings of stages on a review instance are created based on the accessReviewStageSettings on the parent accessReviewScheduleDefinition. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/stages/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/stages/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java index 9872c3c1509..8b034139e32 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/stages/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/stages/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java @@ -38,19 +38,21 @@ public FilterByCurrentUserWithOnRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition%2Did}/instances/{accessReviewInstance%2Did}/stages/filterByCurrentUser(on='{on}'){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function filterByCurrentUser + * Return all accessReviewStage objects on a given accessReviewInstance where the calling user is a reviewer on one or more accessReviewInstanceDecisionItem objects. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get() { return get(null); } /** - * Invoke function filterByCurrentUser + * Return all accessReviewStage objects on a given accessReviewInstance where the calling user is a reviewer on one or more accessReviewInstanceDecisionItem objects. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, FilterByCurrentUserWithOnGetResponse::createFromDiscriminatorValue); } /** - * Invoke function filterByCurrentUser + * Return all accessReviewStage objects on a given accessReviewInstance where the calling user is a reviewer on one or more accessReviewInstanceDecisionItem objects. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function filterByCurrentUser + * Return all accessReviewStage objects on a given accessReviewInstance where the calling user is a reviewer on one or more accessReviewInstanceDecisionItem objects. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -90,7 +92,7 @@ public FilterByCurrentUserWithOnRequestBuilder withUrl(@jakarta.annotation.Nonnu return new FilterByCurrentUserWithOnRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function filterByCurrentUser + * Return all accessReviewStage objects on a given accessReviewInstance where the calling user is a reviewer on one or more accessReviewInstanceDecisionItem objects. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/stages/item/AccessReviewStageItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/stages/item/AccessReviewStageItemRequestBuilder.java index 9dfa938f0c2..0a5860cacd2 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/stages/item/AccessReviewStageItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/stages/item/AccessReviewStageItemRequestBuilder.java @@ -73,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of an accessReviewStage object. + * If the instance has multiple stages, this returns the collection of stages. A new stage will only be created when the previous stage ends. The existence, number, and settings of stages on a review instance are created based on the accessReviewStageSettings on the parent accessReviewScheduleDefinition. * @return a {@link AccessReviewStage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessReviewStage get() { return get(null); } /** - * Retrieve the properties and relationships of an accessReviewStage object. + * If the instance has multiple stages, this returns the collection of stages. A new stage will only be created when the previous stage ends. The existence, number, and settings of stages on a review instance are created based on the accessReviewStageSettings on the parent accessReviewScheduleDefinition. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessReviewStage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessReviewStage get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -97,23 +95,21 @@ public AccessReviewStage get(@jakarta.annotation.Nullable final java.util.functi return this.requestAdapter.send(requestInfo, errorMapping, AccessReviewStage::createFromDiscriminatorValue); } /** - * Update the properties of an accessReviewStage object. Only the reviewers and fallbackReviewers properties can be updated. You can only add reviewers to the fallbackReviewers property but can't remove existing fallbackReviewers. To update an accessReviewStage, its status must be NotStarted, Initializing, or InProgress. + * Update the navigation property stages in identityGovernance * @param body The request body * @return a {@link AccessReviewStage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessReviewStage patch(@jakarta.annotation.Nonnull final AccessReviewStage body) { return patch(body, null); } /** - * Update the properties of an accessReviewStage object. Only the reviewers and fallbackReviewers properties can be updated. You can only add reviewers to the fallbackReviewers property but can't remove existing fallbackReviewers. To update an accessReviewStage, its status must be NotStarted, Initializing, or InProgress. + * Update the navigation property stages in identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessReviewStage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessReviewStage patch(@jakarta.annotation.Nonnull final AccessReviewStage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -144,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of an accessReviewStage object. + * If the instance has multiple stages, this returns the collection of stages. A new stage will only be created when the previous stage ends. The existence, number, and settings of stages on a review instance are created based on the accessReviewStageSettings on the parent accessReviewScheduleDefinition. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -152,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of an accessReviewStage object. + * If the instance has multiple stages, this returns the collection of stages. A new stage will only be created when the previous stage ends. The existence, number, and settings of stages on a review instance are created based on the accessReviewStageSettings on the parent accessReviewScheduleDefinition. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -164,7 +160,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an accessReviewStage object. Only the reviewers and fallbackReviewers properties can be updated. You can only add reviewers to the fallbackReviewers property but can't remove existing fallbackReviewers. To update an accessReviewStage, its status must be NotStarted, Initializing, or InProgress. + * Update the navigation property stages in identityGovernance * @param body The request body * @return a {@link RequestInformation} */ @@ -173,7 +169,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an accessReviewStage object. Only the reviewers and fallbackReviewers properties can be updated. You can only add reviewers to the fallbackReviewers property but can't remove existing fallbackReviewers. To update an accessReviewStage, its status must be NotStarted, Initializing, or InProgress. + * Update the navigation property stages in identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -204,7 +200,7 @@ public AccessReviewStageItemRequestBuilder withUrl(@jakarta.annotation.Nonnull f public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of an accessReviewStage object. + * If the instance has multiple stages, this returns the collection of stages. A new stage will only be created when the previous stage ends. The existence, number, and settings of stages on a review instance are created based on the accessReviewStageSettings on the parent accessReviewScheduleDefinition. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/stages/item/decisions/DecisionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/stages/item/decisions/DecisionsRequestBuilder.java index 5744be82762..d4ab35f4849 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/stages/item/decisions/DecisionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/stages/item/decisions/DecisionsRequestBuilder.java @@ -71,21 +71,19 @@ public FilterByCurrentUserWithOnRequestBuilder filterByCurrentUserWithOn(@jakart return new FilterByCurrentUserWithOnRequestBuilder(pathParameters, requestAdapter, on); } /** - * Get the decisions from a stage in a multi-stage access review. The decisions in an accessReviewStage object are represented by an accessReviewInstanceDecisionItem object. + * Each user reviewed in an accessReviewStage has a decision item representing if they were approved, denied, or not yet reviewed. * @return a {@link AccessReviewInstanceDecisionItemCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessReviewInstanceDecisionItemCollectionResponse get() { return get(null); } /** - * Get the decisions from a stage in a multi-stage access review. The decisions in an accessReviewStage object are represented by an accessReviewInstanceDecisionItem object. + * Each user reviewed in an accessReviewStage has a decision item representing if they were approved, denied, or not yet reviewed. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessReviewInstanceDecisionItemCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessReviewInstanceDecisionItemCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +118,7 @@ public AccessReviewInstanceDecisionItem post(@jakarta.annotation.Nonnull final A return this.requestAdapter.send(requestInfo, errorMapping, AccessReviewInstanceDecisionItem::createFromDiscriminatorValue); } /** - * Get the decisions from a stage in a multi-stage access review. The decisions in an accessReviewStage object are represented by an accessReviewInstanceDecisionItem object. + * Each user reviewed in an accessReviewStage has a decision item representing if they were approved, denied, or not yet reviewed. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +126,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the decisions from a stage in a multi-stage access review. The decisions in an accessReviewStage object are represented by an accessReviewInstanceDecisionItem object. + * Each user reviewed in an accessReviewStage has a decision item representing if they were approved, denied, or not yet reviewed. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -174,7 +172,7 @@ public DecisionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new DecisionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the decisions from a stage in a multi-stage access review. The decisions in an accessReviewStage object are represented by an accessReviewInstanceDecisionItem object. + * Each user reviewed in an accessReviewStage has a decision item representing if they were approved, denied, or not yet reviewed. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/stages/item/decisions/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/stages/item/decisions/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java index 5fedfff08d8..8c6eba46d86 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/stages/item/decisions/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/stages/item/decisions/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java @@ -38,19 +38,21 @@ public FilterByCurrentUserWithOnRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition%2Did}/instances/{accessReviewInstance%2Did}/stages/{accessReviewStage%2Did}/decisions/filterByCurrentUser(on='{on}'){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function filterByCurrentUser + * Retrieve all decision items for an instance of an access review or a stage of an instance of a multi-stage access review, for which the calling user is the reviewer. The decision items are represented by accessReviewInstanceDecisionItem objects on a given accessReviewInstance or accessReviewStage for which the calling user is the reviewer. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get() { return get(null); } /** - * Invoke function filterByCurrentUser + * Retrieve all decision items for an instance of an access review or a stage of an instance of a multi-stage access review, for which the calling user is the reviewer. The decision items are represented by accessReviewInstanceDecisionItem objects on a given accessReviewInstance or accessReviewStage for which the calling user is the reviewer. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, FilterByCurrentUserWithOnGetResponse::createFromDiscriminatorValue); } /** - * Invoke function filterByCurrentUser + * Retrieve all decision items for an instance of an access review or a stage of an instance of a multi-stage access review, for which the calling user is the reviewer. The decision items are represented by accessReviewInstanceDecisionItem objects on a given accessReviewInstance or accessReviewStage for which the calling user is the reviewer. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function filterByCurrentUser + * Retrieve all decision items for an instance of an access review or a stage of an instance of a multi-stage access review, for which the calling user is the reviewer. The decision items are represented by accessReviewInstanceDecisionItem objects on a given accessReviewInstance or accessReviewStage for which the calling user is the reviewer. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -90,7 +92,7 @@ public FilterByCurrentUserWithOnRequestBuilder withUrl(@jakarta.annotation.Nonnu return new FilterByCurrentUserWithOnRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function filterByCurrentUser + * Retrieve all decision items for an instance of an access review or a stage of an instance of a multi-stage access review, for which the calling user is the reviewer. The decision items are represented by accessReviewInstanceDecisionItem objects on a given accessReviewInstance or accessReviewStage for which the calling user is the reviewer. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/stages/item/decisions/item/AccessReviewInstanceDecisionItemItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/stages/item/decisions/item/AccessReviewInstanceDecisionItemItemRequestBuilder.java index 83b94a9a42a..b0b32252d42 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/stages/item/decisions/item/AccessReviewInstanceDecisionItemItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/definitions/item/instances/item/stages/item/decisions/item/AccessReviewInstanceDecisionItemItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of an accessReviewInstanceDecisionItem object. + * Each user reviewed in an accessReviewStage has a decision item representing if they were approved, denied, or not yet reviewed. * @return a {@link AccessReviewInstanceDecisionItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessReviewInstanceDecisionItem get() { return get(null); } /** - * Read the properties and relationships of an accessReviewInstanceDecisionItem object. + * Each user reviewed in an accessReviewStage has a decision item representing if they were approved, denied, or not yet reviewed. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessReviewInstanceDecisionItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessReviewInstanceDecisionItem get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -88,23 +86,21 @@ public AccessReviewInstanceDecisionItem get(@jakarta.annotation.Nullable final j return this.requestAdapter.send(requestInfo, errorMapping, AccessReviewInstanceDecisionItem::createFromDiscriminatorValue); } /** - * Update access decisions, known as accessReviewInstanceDecisionItems, for which the user is the reviewer. + * Update the navigation property decisions in identityGovernance * @param body The request body * @return a {@link AccessReviewInstanceDecisionItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessReviewInstanceDecisionItem patch(@jakarta.annotation.Nonnull final AccessReviewInstanceDecisionItem body) { return patch(body, null); } /** - * Update access decisions, known as accessReviewInstanceDecisionItems, for which the user is the reviewer. + * Update the navigation property decisions in identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessReviewInstanceDecisionItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessReviewInstanceDecisionItem patch(@jakarta.annotation.Nonnull final AccessReviewInstanceDecisionItem body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of an accessReviewInstanceDecisionItem object. + * Each user reviewed in an accessReviewStage has a decision item representing if they were approved, denied, or not yet reviewed. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of an accessReviewInstanceDecisionItem object. + * Each user reviewed in an accessReviewStage has a decision item representing if they were approved, denied, or not yet reviewed. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update access decisions, known as accessReviewInstanceDecisionItems, for which the user is the reviewer. + * Update the navigation property decisions in identityGovernance * @param body The request body * @return a {@link RequestInformation} */ @@ -164,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update access decisions, known as accessReviewInstanceDecisionItems, for which the user is the reviewer. + * Update the navigation property decisions in identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -195,7 +191,7 @@ public AccessReviewInstanceDecisionItemItemRequestBuilder withUrl(@jakarta.annot public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of an accessReviewInstanceDecisionItem object. + * Each user reviewed in an accessReviewStage has a decision item representing if they were approved, denied, or not yet reviewed. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/historydefinitions/HistoryDefinitionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/historydefinitions/HistoryDefinitionsRequestBuilder.java index 00d79e68c71..fa8ddc805d2 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/historydefinitions/HistoryDefinitionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/historydefinitions/HistoryDefinitionsRequestBuilder.java @@ -60,21 +60,19 @@ public HistoryDefinitionsRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/identityGovernance/accessReviews/historyDefinitions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the accessReviewHistoryDefinition objects created in the last 30 days, including all nested properties. + * Represents a collection of access review history data and the scopes used to collect that data. * @return a {@link AccessReviewHistoryDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessReviewHistoryDefinitionCollectionResponse get() { return get(null); } /** - * Retrieve the accessReviewHistoryDefinition objects created in the last 30 days, including all nested properties. + * Represents a collection of access review history data and the scopes used to collect that data. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessReviewHistoryDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessReviewHistoryDefinitionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public AccessReviewHistoryDefinitionCollectionResponse get(@jakarta.annotation.N return this.requestAdapter.send(requestInfo, errorMapping, AccessReviewHistoryDefinitionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new accessReviewHistoryDefinition object. + * Create new navigation property to historyDefinitions for identityGovernance * @param body The request body * @return a {@link AccessReviewHistoryDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessReviewHistoryDefinition post(@jakarta.annotation.Nonnull final AccessReviewHistoryDefinition body) { return post(body, null); } /** - * Create a new accessReviewHistoryDefinition object. + * Create new navigation property to historyDefinitions for identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessReviewHistoryDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessReviewHistoryDefinition post(@jakarta.annotation.Nonnull final AccessReviewHistoryDefinition body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public AccessReviewHistoryDefinition post(@jakarta.annotation.Nonnull final Acce return this.requestAdapter.send(requestInfo, errorMapping, AccessReviewHistoryDefinition::createFromDiscriminatorValue); } /** - * Retrieve the accessReviewHistoryDefinition objects created in the last 30 days, including all nested properties. + * Represents a collection of access review history data and the scopes used to collect that data. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the accessReviewHistoryDefinition objects created in the last 30 days, including all nested properties. + * Represents a collection of access review history data and the scopes used to collect that data. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new accessReviewHistoryDefinition object. + * Create new navigation property to historyDefinitions for identityGovernance * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new accessReviewHistoryDefinition object. + * Create new navigation property to historyDefinitions for identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public HistoryDefinitionsRequestBuilder withUrl(@jakarta.annotation.Nonnull fina return new HistoryDefinitionsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the accessReviewHistoryDefinition objects created in the last 30 days, including all nested properties. + * Represents a collection of access review history data and the scopes used to collect that data. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/historydefinitions/item/AccessReviewHistoryDefinitionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/historydefinitions/item/AccessReviewHistoryDefinitionItemRequestBuilder.java index 8af6e699c5e..1c30ff5ca76 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/historydefinitions/item/AccessReviewHistoryDefinitionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/historydefinitions/item/AccessReviewHistoryDefinitionItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve an accessReviewHistoryDefinition object by its identifier. All the properties of the access review history definition object are returned. If the definition is 30 days or older, a 404 Not Found error is returned. + * Represents a collection of access review history data and the scopes used to collect that data. * @return a {@link AccessReviewHistoryDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessReviewHistoryDefinition get() { return get(null); } /** - * Retrieve an accessReviewHistoryDefinition object by its identifier. All the properties of the access review history definition object are returned. If the definition is 30 days or older, a 404 Not Found error is returned. + * Represents a collection of access review history data and the scopes used to collect that data. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessReviewHistoryDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessReviewHistoryDefinition get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve an accessReviewHistoryDefinition object by its identifier. All the properties of the access review history definition object are returned. If the definition is 30 days or older, a 404 Not Found error is returned. + * Represents a collection of access review history data and the scopes used to collect that data. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve an accessReviewHistoryDefinition object by its identifier. All the properties of the access review history definition object are returned. If the definition is 30 days or older, a 404 Not Found error is returned. + * Represents a collection of access review history data and the scopes used to collect that data. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public AccessReviewHistoryDefinitionItemRequestBuilder withUrl(@jakarta.annotati public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve an accessReviewHistoryDefinition object by its identifier. All the properties of the access review history definition object are returned. If the definition is 30 days or older, a 404 Not Found error is returned. + * Represents a collection of access review history data and the scopes used to collect that data. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/historydefinitions/item/instances/InstancesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/historydefinitions/item/instances/InstancesRequestBuilder.java index 2b39f510d04..4ce7980aab4 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/historydefinitions/item/instances/InstancesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/accessreviews/historydefinitions/item/instances/InstancesRequestBuilder.java @@ -60,21 +60,19 @@ public InstancesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition%2Did}/instances{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the instances of an access review history definition created in the last 30 days. + * If the accessReviewHistoryDefinition is a recurring definition, instances represent each recurrence. A definition that doesn't recur will have exactly one instance. * @return a {@link AccessReviewHistoryInstanceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessReviewHistoryInstanceCollectionResponse get() { return get(null); } /** - * Retrieve the instances of an access review history definition created in the last 30 days. + * If the accessReviewHistoryDefinition is a recurring definition, instances represent each recurrence. A definition that doesn't recur will have exactly one instance. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessReviewHistoryInstanceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessReviewHistoryInstanceCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public AccessReviewHistoryInstance post(@jakarta.annotation.Nonnull final Access return this.requestAdapter.send(requestInfo, errorMapping, AccessReviewHistoryInstance::createFromDiscriminatorValue); } /** - * Retrieve the instances of an access review history definition created in the last 30 days. + * If the accessReviewHistoryDefinition is a recurring definition, instances represent each recurrence. A definition that doesn't recur will have exactly one instance. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the instances of an access review history definition created in the last 30 days. + * If the accessReviewHistoryDefinition is a recurring definition, instances represent each recurrence. A definition that doesn't recur will have exactly one instance. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public InstancesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new InstancesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the instances of an access review history definition created in the last 30 days. + * If the accessReviewHistoryDefinition is a recurring definition, instances represent each recurrence. A definition that doesn't recur will have exactly one instance. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/appconsent/appconsentrequests/AppConsentRequestsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/appconsent/appconsentrequests/AppConsentRequestsRequestBuilder.java index c01e6ad6637..220151d5062 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/appconsent/appconsentrequests/AppConsentRequestsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/appconsent/appconsentrequests/AppConsentRequestsRequestBuilder.java @@ -71,21 +71,19 @@ public FilterByCurrentUserWithOnRequestBuilder filterByCurrentUserWithOn(@jakart return new FilterByCurrentUserWithOnRequestBuilder(pathParameters, requestAdapter, on); } /** - * Retrieve appConsentRequest objects and their properties. + * A collection of appConsentRequest objects representing apps for which admin consent has been requested by one or more users. * @return a {@link AppConsentRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AppConsentRequestCollectionResponse get() { return get(null); } /** - * Retrieve appConsentRequest objects and their properties. + * A collection of appConsentRequest objects representing apps for which admin consent has been requested by one or more users. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AppConsentRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AppConsentRequestCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +118,7 @@ public AppConsentRequest post(@jakarta.annotation.Nonnull final AppConsentReques return this.requestAdapter.send(requestInfo, errorMapping, AppConsentRequest::createFromDiscriminatorValue); } /** - * Retrieve appConsentRequest objects and their properties. + * A collection of appConsentRequest objects representing apps for which admin consent has been requested by one or more users. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +126,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve appConsentRequest objects and their properties. + * A collection of appConsentRequest objects representing apps for which admin consent has been requested by one or more users. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -174,7 +172,7 @@ public AppConsentRequestsRequestBuilder withUrl(@jakarta.annotation.Nonnull fina return new AppConsentRequestsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve appConsentRequest objects and their properties. + * A collection of appConsentRequest objects representing apps for which admin consent has been requested by one or more users. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/appconsent/appconsentrequests/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/appconsent/appconsentrequests/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java index 3d525edaf62..5b1cf7f9673 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/appconsent/appconsentrequests/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/appconsent/appconsentrequests/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java @@ -38,19 +38,21 @@ public FilterByCurrentUserWithOnRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/identityGovernance/appConsent/appConsentRequests/filterByCurrentUser(on='{on}'){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function filterByCurrentUser + * Retrieve a collection of appConsentRequest objects for which the current user is the reviewer and the status of the userConsentRequest for accessing the specified app is InProgress. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get() { return get(null); } /** - * Invoke function filterByCurrentUser + * Retrieve a collection of appConsentRequest objects for which the current user is the reviewer and the status of the userConsentRequest for accessing the specified app is InProgress. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, FilterByCurrentUserWithOnGetResponse::createFromDiscriminatorValue); } /** - * Invoke function filterByCurrentUser + * Retrieve a collection of appConsentRequest objects for which the current user is the reviewer and the status of the userConsentRequest for accessing the specified app is InProgress. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function filterByCurrentUser + * Retrieve a collection of appConsentRequest objects for which the current user is the reviewer and the status of the userConsentRequest for accessing the specified app is InProgress. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -90,7 +92,7 @@ public FilterByCurrentUserWithOnRequestBuilder withUrl(@jakarta.annotation.Nonnu return new FilterByCurrentUserWithOnRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function filterByCurrentUser + * Retrieve a collection of appConsentRequest objects for which the current user is the reviewer and the status of the userConsentRequest for accessing the specified app is InProgress. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/appconsent/appconsentrequests/item/AppConsentRequestItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/appconsent/appconsentrequests/item/AppConsentRequestItemRequestBuilder.java index f4a0063e557..416c5c78d9c 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/appconsent/appconsentrequests/item/AppConsentRequestItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/appconsent/appconsentrequests/item/AppConsentRequestItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of an appConsentRequest object. + * A collection of appConsentRequest objects representing apps for which admin consent has been requested by one or more users. * @return a {@link AppConsentRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AppConsentRequest get() { return get(null); } /** - * Read the properties and relationships of an appConsentRequest object. + * A collection of appConsentRequest objects representing apps for which admin consent has been requested by one or more users. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AppConsentRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AppConsentRequest get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of an appConsentRequest object. + * A collection of appConsentRequest objects representing apps for which admin consent has been requested by one or more users. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of an appConsentRequest object. + * A collection of appConsentRequest objects representing apps for which admin consent has been requested by one or more users. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public AppConsentRequestItemRequestBuilder withUrl(@jakarta.annotation.Nonnull f public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of an appConsentRequest object. + * A collection of appConsentRequest objects representing apps for which admin consent has been requested by one or more users. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/appconsent/appconsentrequests/item/userconsentrequests/UserConsentRequestsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/appconsent/appconsentrequests/item/userconsentrequests/UserConsentRequestsRequestBuilder.java index fc9e60ae6fe..58351d6f57c 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/appconsent/appconsentrequests/item/userconsentrequests/UserConsentRequestsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/appconsent/appconsentrequests/item/userconsentrequests/UserConsentRequestsRequestBuilder.java @@ -71,21 +71,19 @@ public FilterByCurrentUserWithOnRequestBuilder filterByCurrentUserWithOn(@jakart return new FilterByCurrentUserWithOnRequestBuilder(pathParameters, requestAdapter, on); } /** - * Retrieve a collection of userConsentRequest objects and their properties. + * A list of pending user consent requests. Supports $filter (eq). * @return a {@link UserConsentRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserConsentRequestCollectionResponse get() { return get(null); } /** - * Retrieve a collection of userConsentRequest objects and their properties. + * A list of pending user consent requests. Supports $filter (eq). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UserConsentRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserConsentRequestCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +118,7 @@ public UserConsentRequest post(@jakarta.annotation.Nonnull final UserConsentRequ return this.requestAdapter.send(requestInfo, errorMapping, UserConsentRequest::createFromDiscriminatorValue); } /** - * Retrieve a collection of userConsentRequest objects and their properties. + * A list of pending user consent requests. Supports $filter (eq). * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +126,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a collection of userConsentRequest objects and their properties. + * A list of pending user consent requests. Supports $filter (eq). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -174,7 +172,7 @@ public UserConsentRequestsRequestBuilder withUrl(@jakarta.annotation.Nonnull fin return new UserConsentRequestsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a collection of userConsentRequest objects and their properties. + * A list of pending user consent requests. Supports $filter (eq). */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/appconsent/appconsentrequests/item/userconsentrequests/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/appconsent/appconsentrequests/item/userconsentrequests/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java index 61961d5e61e..0793355da4a 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/appconsent/appconsentrequests/item/userconsentrequests/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/appconsent/appconsentrequests/item/userconsentrequests/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java @@ -38,19 +38,21 @@ public FilterByCurrentUserWithOnRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/identityGovernance/appConsent/appConsentRequests/{appConsentRequest%2Did}/userConsentRequests/filterByCurrentUser(on='{on}'){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function filterByCurrentUser + * Retrieve a collection of userConsentRequest objects for accessing a specified app, for which the current user is the reviewer. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get() { return get(null); } /** - * Invoke function filterByCurrentUser + * Retrieve a collection of userConsentRequest objects for accessing a specified app, for which the current user is the reviewer. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, FilterByCurrentUserWithOnGetResponse::createFromDiscriminatorValue); } /** - * Invoke function filterByCurrentUser + * Retrieve a collection of userConsentRequest objects for accessing a specified app, for which the current user is the reviewer. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function filterByCurrentUser + * Retrieve a collection of userConsentRequest objects for accessing a specified app, for which the current user is the reviewer. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -90,7 +92,7 @@ public FilterByCurrentUserWithOnRequestBuilder withUrl(@jakarta.annotation.Nonnu return new FilterByCurrentUserWithOnRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function filterByCurrentUser + * Retrieve a collection of userConsentRequest objects for accessing a specified app, for which the current user is the reviewer. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/appconsent/appconsentrequests/item/userconsentrequests/item/UserConsentRequestItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/appconsent/appconsentrequests/item/userconsentrequests/item/UserConsentRequestItemRequestBuilder.java index 10d85ddba4b..04211572274 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/appconsent/appconsentrequests/item/userconsentrequests/item/UserConsentRequestItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/appconsent/appconsentrequests/item/userconsentrequests/item/UserConsentRequestItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a userConsentRequest object. + * A list of pending user consent requests. Supports $filter (eq). * @return a {@link UserConsentRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserConsentRequest get() { return get(null); } /** - * Read the properties and relationships of a userConsentRequest object. + * A list of pending user consent requests. Supports $filter (eq). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UserConsentRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserConsentRequest get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a userConsentRequest object. + * A list of pending user consent requests. Supports $filter (eq). * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a userConsentRequest object. + * A list of pending user consent requests. Supports $filter (eq). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public UserConsentRequestItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a userConsentRequest object. + * A list of pending user consent requests. Supports $filter (eq). */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/appconsent/appconsentrequests/item/userconsentrequests/item/approval/stages/StagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/appconsent/appconsentrequests/item/userconsentrequests/item/approval/stages/StagesRequestBuilder.java index edbdcea7347..f1c6ab37743 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/appconsent/appconsentrequests/item/userconsentrequests/item/approval/stages/StagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/appconsent/appconsentrequests/item/userconsentrequests/item/approval/stages/StagesRequestBuilder.java @@ -60,21 +60,19 @@ public StagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/identityGovernance/appConsent/appConsentRequests/{appConsentRequest%2Did}/userConsentRequests/{userConsentRequest%2Did}/approval/stages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List the approvalStage objects associated with an approval. This API request is made by an approver in the following scenarios: In Microsoft Entra entitlement management, providing the identifier of the access package assignment request.In PIM for groups, providing the identifier of the assignment schedule request. + * A collection of stages in the approval decision. * @return a {@link ApprovalStageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ApprovalStageCollectionResponse get() { return get(null); } /** - * List the approvalStage objects associated with an approval. This API request is made by an approver in the following scenarios: In Microsoft Entra entitlement management, providing the identifier of the access package assignment request.In PIM for groups, providing the identifier of the assignment schedule request. + * A collection of stages in the approval decision. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ApprovalStageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ApprovalStageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ApprovalStage post(@jakarta.annotation.Nonnull final ApprovalStage body, return this.requestAdapter.send(requestInfo, errorMapping, ApprovalStage::createFromDiscriminatorValue); } /** - * List the approvalStage objects associated with an approval. This API request is made by an approver in the following scenarios: In Microsoft Entra entitlement management, providing the identifier of the access package assignment request.In PIM for groups, providing the identifier of the assignment schedule request. + * A collection of stages in the approval decision. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List the approvalStage objects associated with an approval. This API request is made by an approver in the following scenarios: In Microsoft Entra entitlement management, providing the identifier of the access package assignment request.In PIM for groups, providing the identifier of the assignment schedule request. + * A collection of stages in the approval decision. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public StagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw return new StagesRequestBuilder(rawUrl, requestAdapter); } /** - * List the approvalStage objects associated with an approval. This API request is made by an approver in the following scenarios: In Microsoft Entra entitlement management, providing the identifier of the access package assignment request.In PIM for groups, providing the identifier of the assignment schedule request. + * A collection of stages in the approval decision. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/appconsent/appconsentrequests/item/userconsentrequests/item/approval/stages/item/ApprovalStageItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/appconsent/appconsentrequests/item/userconsentrequests/item/approval/stages/item/ApprovalStageItemRequestBuilder.java index 11e30be4a40..c3a2101e073 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/appconsent/appconsentrequests/item/userconsentrequests/item/approval/stages/item/ApprovalStageItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/appconsent/appconsentrequests/item/userconsentrequests/item/approval/stages/item/ApprovalStageItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties of an approvalStage object. An approval stage is contained within an approval object. + * A collection of stages in the approval decision. * @return a {@link ApprovalStage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ApprovalStage get() { return get(null); } /** - * Retrieve the properties of an approvalStage object. An approval stage is contained within an approval object. + * A collection of stages in the approval decision. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ApprovalStage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ApprovalStage get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public ApprovalStage get(@jakarta.annotation.Nullable final java.util.function.C return this.requestAdapter.send(requestInfo, errorMapping, ApprovalStage::createFromDiscriminatorValue); } /** - * Approve or deny an approvalStage object in an approval. + * Update the navigation property stages in identityGovernance * @param body The request body * @return a {@link ApprovalStage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ApprovalStage patch(@jakarta.annotation.Nonnull final ApprovalStage body) { return patch(body, null); } /** - * Approve or deny an approvalStage object in an approval. + * Update the navigation property stages in identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ApprovalStage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ApprovalStage patch(@jakarta.annotation.Nonnull final ApprovalStage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties of an approvalStage object. An approval stage is contained within an approval object. + * A collection of stages in the approval decision. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties of an approvalStage object. An approval stage is contained within an approval object. + * A collection of stages in the approval decision. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Approve or deny an approvalStage object in an approval. + * Update the navigation property stages in identityGovernance * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Approve or deny an approvalStage object in an approval. + * Update the navigation property stages in identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public ApprovalStageItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties of an approvalStage object. An approval stage is contained within an approval object. + * A collection of stages in the approval decision. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/AccessPackageAssignmentApprovalsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/AccessPackageAssignmentApprovalsRequestBuilder.java index d9baa13da85..fe674a72ff8 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/AccessPackageAssignmentApprovalsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/AccessPackageAssignmentApprovalsRequestBuilder.java @@ -71,7 +71,7 @@ public FilterByCurrentUserWithOnRequestBuilder filterByCurrentUserWithOn(@jakart return new FilterByCurrentUserWithOnRequestBuilder(pathParameters, requestAdapter, on); } /** - * Retrieve the properties of an approval object. This API request is made by an approver in the following scenarios: In Microsoft Entra entitlement management, providing the identifier of the access package assignment request.In PIM for groups, providing the identifier of the assignment schedule request. + * Approval stages for decisions associated with access package assignment requests. * @return a {@link ApprovalCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -80,7 +80,7 @@ public ApprovalCollectionResponse get() { return get(null); } /** - * Retrieve the properties of an approval object. This API request is made by an approver in the following scenarios: In Microsoft Entra entitlement management, providing the identifier of the access package assignment request.In PIM for groups, providing the identifier of the assignment schedule request. + * Approval stages for decisions associated with access package assignment requests. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ApprovalCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -118,7 +118,7 @@ public Approval post(@jakarta.annotation.Nonnull final Approval body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, Approval::createFromDiscriminatorValue); } /** - * Retrieve the properties of an approval object. This API request is made by an approver in the following scenarios: In Microsoft Entra entitlement management, providing the identifier of the access package assignment request.In PIM for groups, providing the identifier of the assignment schedule request. + * Approval stages for decisions associated with access package assignment requests. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -126,7 +126,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties of an approval object. This API request is made by an approver in the following scenarios: In Microsoft Entra entitlement management, providing the identifier of the access package assignment request.In PIM for groups, providing the identifier of the assignment schedule request. + * Approval stages for decisions associated with access package assignment requests. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -172,7 +172,7 @@ public AccessPackageAssignmentApprovalsRequestBuilder withUrl(@jakarta.annotatio return new AccessPackageAssignmentApprovalsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the properties of an approval object. This API request is made by an approver in the following scenarios: In Microsoft Entra entitlement management, providing the identifier of the access package assignment request.In PIM for groups, providing the identifier of the assignment schedule request. + * Approval stages for decisions associated with access package assignment requests. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java index bccb54f766c..89aa32cfedd 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java @@ -38,19 +38,21 @@ public FilterByCurrentUserWithOnRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/filterByCurrentUser(on='{on}'){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function filterByCurrentUser + * In Microsoft Entra entitlement management, return a collection of access package assignment approvals. The objects returned are those that are in scope for approval by the calling user. In PIM for groups, return a collection of assignment approvals. The objects returned are those that are in scope for approval by the calling user. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get() { return get(null); } /** - * Invoke function filterByCurrentUser + * In Microsoft Entra entitlement management, return a collection of access package assignment approvals. The objects returned are those that are in scope for approval by the calling user. In PIM for groups, return a collection of assignment approvals. The objects returned are those that are in scope for approval by the calling user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, FilterByCurrentUserWithOnGetResponse::createFromDiscriminatorValue); } /** - * Invoke function filterByCurrentUser + * In Microsoft Entra entitlement management, return a collection of access package assignment approvals. The objects returned are those that are in scope for approval by the calling user. In PIM for groups, return a collection of assignment approvals. The objects returned are those that are in scope for approval by the calling user. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function filterByCurrentUser + * In Microsoft Entra entitlement management, return a collection of access package assignment approvals. The objects returned are those that are in scope for approval by the calling user. In PIM for groups, return a collection of assignment approvals. The objects returned are those that are in scope for approval by the calling user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -90,7 +92,7 @@ public FilterByCurrentUserWithOnRequestBuilder withUrl(@jakarta.annotation.Nonnu return new FilterByCurrentUserWithOnRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function filterByCurrentUser + * In Microsoft Entra entitlement management, return a collection of access package assignment approvals. The objects returned are those that are in scope for approval by the calling user. In PIM for groups, return a collection of assignment approvals. The objects returned are those that are in scope for approval by the calling user. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/item/ApprovalItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/item/ApprovalItemRequestBuilder.java index d17e1833ab2..4392b421dff 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/item/ApprovalItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/item/ApprovalItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties of an approval object. This API request is made by an approver in the following scenarios: In Microsoft Entra entitlement management, providing the identifier of the access package assignment request.In PIM for groups, providing the identifier of the assignment schedule request. + * Approval stages for decisions associated with access package assignment requests. * @return a {@link Approval} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Approval get() { return get(null); } /** - * Retrieve the properties of an approval object. This API request is made by an approver in the following scenarios: In Microsoft Entra entitlement management, providing the identifier of the access package assignment request.In PIM for groups, providing the identifier of the assignment schedule request. + * Approval stages for decisions associated with access package assignment requests. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Approval} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Approval get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties of an approval object. This API request is made by an approver in the following scenarios: In Microsoft Entra entitlement management, providing the identifier of the access package assignment request.In PIM for groups, providing the identifier of the assignment schedule request. + * Approval stages for decisions associated with access package assignment requests. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties of an approval object. This API request is made by an approver in the following scenarios: In Microsoft Entra entitlement management, providing the identifier of the access package assignment request.In PIM for groups, providing the identifier of the assignment schedule request. + * Approval stages for decisions associated with access package assignment requests. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public ApprovalItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties of an approval object. This API request is made by an approver in the following scenarios: In Microsoft Entra entitlement management, providing the identifier of the access package assignment request.In PIM for groups, providing the identifier of the assignment schedule request. + * Approval stages for decisions associated with access package assignment requests. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/item/stages/StagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/item/stages/StagesRequestBuilder.java index 1ef7c34dce5..36618467196 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/item/stages/StagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/item/stages/StagesRequestBuilder.java @@ -60,21 +60,19 @@ public StagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval%2Did}/stages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List the approvalStage objects associated with an approval. This API request is made by an approver in the following scenarios: In Microsoft Entra entitlement management, providing the identifier of the access package assignment request.In PIM for groups, providing the identifier of the assignment schedule request. + * A collection of stages in the approval decision. * @return a {@link ApprovalStageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ApprovalStageCollectionResponse get() { return get(null); } /** - * List the approvalStage objects associated with an approval. This API request is made by an approver in the following scenarios: In Microsoft Entra entitlement management, providing the identifier of the access package assignment request.In PIM for groups, providing the identifier of the assignment schedule request. + * A collection of stages in the approval decision. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ApprovalStageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ApprovalStageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ApprovalStage post(@jakarta.annotation.Nonnull final ApprovalStage body, return this.requestAdapter.send(requestInfo, errorMapping, ApprovalStage::createFromDiscriminatorValue); } /** - * List the approvalStage objects associated with an approval. This API request is made by an approver in the following scenarios: In Microsoft Entra entitlement management, providing the identifier of the access package assignment request.In PIM for groups, providing the identifier of the assignment schedule request. + * A collection of stages in the approval decision. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List the approvalStage objects associated with an approval. This API request is made by an approver in the following scenarios: In Microsoft Entra entitlement management, providing the identifier of the access package assignment request.In PIM for groups, providing the identifier of the assignment schedule request. + * A collection of stages in the approval decision. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public StagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw return new StagesRequestBuilder(rawUrl, requestAdapter); } /** - * List the approvalStage objects associated with an approval. This API request is made by an approver in the following scenarios: In Microsoft Entra entitlement management, providing the identifier of the access package assignment request.In PIM for groups, providing the identifier of the assignment schedule request. + * A collection of stages in the approval decision. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/item/stages/item/ApprovalStageItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/item/stages/item/ApprovalStageItemRequestBuilder.java index 07dde23c50b..d96f1839523 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/item/stages/item/ApprovalStageItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackageassignmentapprovals/item/stages/item/ApprovalStageItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties of an approvalStage object. An approval stage is contained within an approval object. + * A collection of stages in the approval decision. * @return a {@link ApprovalStage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ApprovalStage get() { return get(null); } /** - * Retrieve the properties of an approvalStage object. An approval stage is contained within an approval object. + * A collection of stages in the approval decision. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ApprovalStage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ApprovalStage get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public ApprovalStage get(@jakarta.annotation.Nullable final java.util.function.C return this.requestAdapter.send(requestInfo, errorMapping, ApprovalStage::createFromDiscriminatorValue); } /** - * Approve or deny an approvalStage object in an approval. + * Update the navigation property stages in identityGovernance * @param body The request body * @return a {@link ApprovalStage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ApprovalStage patch(@jakarta.annotation.Nonnull final ApprovalStage body) { return patch(body, null); } /** - * Approve or deny an approvalStage object in an approval. + * Update the navigation property stages in identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ApprovalStage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ApprovalStage patch(@jakarta.annotation.Nonnull final ApprovalStage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties of an approvalStage object. An approval stage is contained within an approval object. + * A collection of stages in the approval decision. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties of an approvalStage object. An approval stage is contained within an approval object. + * A collection of stages in the approval decision. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Approve or deny an approvalStage object in an approval. + * Update the navigation property stages in identityGovernance * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Approve or deny an approvalStage object in an approval. + * Update the navigation property stages in identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public ApprovalStageItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties of an approvalStage object. An approval stage is contained within an approval object. + * A collection of stages in the approval decision. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/AccessPackagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/AccessPackagesRequestBuilder.java index c80bd324c5c..996db9ddcbe 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/AccessPackagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/AccessPackagesRequestBuilder.java @@ -71,21 +71,19 @@ public FilterByCurrentUserWithOnRequestBuilder filterByCurrentUserWithOn(@jakart return new FilterByCurrentUserWithOnRequestBuilder(pathParameters, requestAdapter, on); } /** - * Retrieve a list of accessPackage objects. The resulting list includes all the access packages that the caller has access to read, across all catalogs. + * Access packages define the collection of resource roles and the policies for which subjects can request or be assigned access to those resources. * @return a {@link AccessPackageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageCollectionResponse get() { return get(null); } /** - * Retrieve a list of accessPackage objects. The resulting list includes all the access packages that the caller has access to read, across all catalogs. + * Access packages define the collection of resource roles and the policies for which subjects can request or be assigned access to those resources. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessPackageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -95,23 +93,21 @@ public AccessPackageCollectionResponse get(@jakarta.annotation.Nullable final ja return this.requestAdapter.send(requestInfo, errorMapping, AccessPackageCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new accessPackage object. The access package will be added to an existing accessPackageCatalog. + * Create new navigation property to accessPackages for identityGovernance * @param body The request body * @return a {@link AccessPackage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackage post(@jakarta.annotation.Nonnull final AccessPackage body) { return post(body, null); } /** - * Create a new accessPackage object. The access package will be added to an existing accessPackageCatalog. + * Create new navigation property to accessPackages for identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessPackage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackage post(@jakarta.annotation.Nonnull final AccessPackage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -122,7 +118,7 @@ public AccessPackage post(@jakarta.annotation.Nonnull final AccessPackage body, return this.requestAdapter.send(requestInfo, errorMapping, AccessPackage::createFromDiscriminatorValue); } /** - * Retrieve a list of accessPackage objects. The resulting list includes all the access packages that the caller has access to read, across all catalogs. + * Access packages define the collection of resource roles and the policies for which subjects can request or be assigned access to those resources. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -130,7 +126,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of accessPackage objects. The resulting list includes all the access packages that the caller has access to read, across all catalogs. + * Access packages define the collection of resource roles and the policies for which subjects can request or be assigned access to those resources. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -142,7 +138,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new accessPackage object. The access package will be added to an existing accessPackageCatalog. + * Create new navigation property to accessPackages for identityGovernance * @param body The request body * @return a {@link RequestInformation} */ @@ -151,7 +147,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new accessPackage object. The access package will be added to an existing accessPackageCatalog. + * Create new navigation property to accessPackages for identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -176,7 +172,7 @@ public AccessPackagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new AccessPackagesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of accessPackage objects. The resulting list includes all the access packages that the caller has access to read, across all catalogs. + * Access packages define the collection of resource roles and the policies for which subjects can request or be assigned access to those resources. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java index 21c1bf6b410..3ee28a381c5 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java @@ -38,19 +38,21 @@ public FilterByCurrentUserWithOnRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/identityGovernance/entitlementManagement/accessPackages/filterByCurrentUser(on='{on}'){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function filterByCurrentUser + * In Microsoft Entra Entitlement Management, retrieve a list of accessPackage objects filtered on the signed-in user. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get() { return get(null); } /** - * Invoke function filterByCurrentUser + * In Microsoft Entra Entitlement Management, retrieve a list of accessPackage objects filtered on the signed-in user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, FilterByCurrentUserWithOnGetResponse::createFromDiscriminatorValue); } /** - * Invoke function filterByCurrentUser + * In Microsoft Entra Entitlement Management, retrieve a list of accessPackage objects filtered on the signed-in user. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function filterByCurrentUser + * In Microsoft Entra Entitlement Management, retrieve a list of accessPackage objects filtered on the signed-in user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -90,7 +92,7 @@ public FilterByCurrentUserWithOnRequestBuilder withUrl(@jakarta.annotation.Nonnu return new FilterByCurrentUserWithOnRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function filterByCurrentUser + * In Microsoft Entra Entitlement Management, retrieve a list of accessPackage objects filtered on the signed-in user. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/AccessPackageItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/AccessPackageItemRequestBuilder.java index 354cb549225..13f89632fc8 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/AccessPackageItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/AccessPackageItemRequestBuilder.java @@ -100,18 +100,16 @@ public AccessPackageItemRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/identityGovernance/entitlementManagement/accessPackages/{accessPackage%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an accessPackage object. You cannot delete an access package if it has any accessPackageAssignment. + * Delete navigation property accessPackages for identityGovernance * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an accessPackage object. You cannot delete an access package if it has any accessPackageAssignment. + * Delete navigation property accessPackages for identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -120,21 +118,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve an access package with a list of accessPackageResourceRoleScope objects. These objects represent the resource roles that an access package assigns to each subject. Each object links to an accessPackageResourceRole and an accessPackageResourceScope. + * Access packages define the collection of resource roles and the policies for which subjects can request or be assigned access to those resources. * @return a {@link AccessPackage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackage get() { return get(null); } /** - * Retrieve an access package with a list of accessPackageResourceRoleScope objects. These objects represent the resource roles that an access package assigns to each subject. Each object links to an accessPackageResourceRole and an accessPackageResourceScope. + * Access packages define the collection of resource roles and the policies for which subjects can request or be assigned access to those resources. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessPackage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackage get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -144,23 +140,21 @@ public AccessPackage get(@jakarta.annotation.Nullable final java.util.function.C return this.requestAdapter.send(requestInfo, errorMapping, AccessPackage::createFromDiscriminatorValue); } /** - * Update an existing accessPackage object to change one or more of its properties, such as the display name or description. + * Update the navigation property accessPackages in identityGovernance * @param body The request body * @return a {@link AccessPackage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackage patch(@jakarta.annotation.Nonnull final AccessPackage body) { return patch(body, null); } /** - * Update an existing accessPackage object to change one or more of its properties, such as the display name or description. + * Update the navigation property accessPackages in identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessPackage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackage patch(@jakarta.annotation.Nonnull final AccessPackage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -171,7 +165,7 @@ public AccessPackage patch(@jakarta.annotation.Nonnull final AccessPackage body, return this.requestAdapter.send(requestInfo, errorMapping, AccessPackage::createFromDiscriminatorValue); } /** - * Delete an accessPackage object. You cannot delete an access package if it has any accessPackageAssignment. + * Delete navigation property accessPackages for identityGovernance * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -179,7 +173,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an accessPackage object. You cannot delete an access package if it has any accessPackageAssignment. + * Delete navigation property accessPackages for identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -191,7 +185,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve an access package with a list of accessPackageResourceRoleScope objects. These objects represent the resource roles that an access package assigns to each subject. Each object links to an accessPackageResourceRole and an accessPackageResourceScope. + * Access packages define the collection of resource roles and the policies for which subjects can request or be assigned access to those resources. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -199,7 +193,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve an access package with a list of accessPackageResourceRoleScope objects. These objects represent the resource roles that an access package assigns to each subject. Each object links to an accessPackageResourceRole and an accessPackageResourceScope. + * Access packages define the collection of resource roles and the policies for which subjects can request or be assigned access to those resources. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -211,7 +205,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update an existing accessPackage object to change one or more of its properties, such as the display name or description. + * Update the navigation property accessPackages in identityGovernance * @param body The request body * @return a {@link RequestInformation} */ @@ -220,7 +214,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update an existing accessPackage object to change one or more of its properties, such as the display name or description. + * Update the navigation property accessPackages in identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -251,7 +245,7 @@ public AccessPackageItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve an access package with a list of accessPackageResourceRoleScope objects. These objects represent the resource roles that an access package assigns to each subject. Each object links to an accessPackageResourceRole and an accessPackageResourceScope. + * Access packages define the collection of resource roles and the policies for which subjects can request or be assigned access to those resources. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/accesspackagesincompatiblewith/AccessPackagesIncompatibleWithRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/accesspackagesincompatiblewith/AccessPackagesIncompatibleWithRequestBuilder.java index b8a2f5f2066..8591e73e9e9 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/accesspackagesincompatiblewith/AccessPackagesIncompatibleWithRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/accesspackagesincompatiblewith/AccessPackagesIncompatibleWithRequestBuilder.java @@ -59,21 +59,19 @@ public AccessPackagesIncompatibleWithRequestBuilder(@jakarta.annotation.Nonnull super(requestAdapter, "{+baseurl}/identityGovernance/entitlementManagement/accessPackages/{accessPackage%2Did}/accessPackagesIncompatibleWith{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of the accessPackage objects that have marked a specified accessPackage as incompatible. + * The access packages that are incompatible with this package. Read-only. * @return a {@link AccessPackageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageCollectionResponse get() { return get(null); } /** - * Retrieve a list of the accessPackage objects that have marked a specified accessPackage as incompatible. + * The access packages that are incompatible with this package. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessPackageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public AccessPackageCollectionResponse get(@jakarta.annotation.Nullable final ja return this.requestAdapter.send(requestInfo, errorMapping, AccessPackageCollectionResponse::createFromDiscriminatorValue); } /** - * Retrieve a list of the accessPackage objects that have marked a specified accessPackage as incompatible. + * The access packages that are incompatible with this package. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of the accessPackage objects that have marked a specified accessPackage as incompatible. + * The access packages that are incompatible with this package. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public AccessPackagesIncompatibleWithRequestBuilder withUrl(@jakarta.annotation. return new AccessPackagesIncompatibleWithRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of the accessPackage objects that have marked a specified accessPackage as incompatible. + * The access packages that are incompatible with this package. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/incompatibleaccesspackages/IncompatibleAccessPackagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/incompatibleaccesspackages/IncompatibleAccessPackagesRequestBuilder.java index d8b5bdf01b5..e8b6e7266d5 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/incompatibleaccesspackages/IncompatibleAccessPackagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/incompatibleaccesspackages/IncompatibleAccessPackagesRequestBuilder.java @@ -68,21 +68,19 @@ public IncompatibleAccessPackagesRequestBuilder(@jakarta.annotation.Nonnull fina super(requestAdapter, "{+baseurl}/identityGovernance/entitlementManagement/accessPackages/{accessPackage%2Did}/incompatibleAccessPackages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of the accessPackage objects that have been marked as incompatible on an accessPackage. + * The access packages whose assigned users are ineligible to be assigned this access package. * @return a {@link AccessPackageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageCollectionResponse get() { return get(null); } /** - * Retrieve a list of the accessPackage objects that have been marked as incompatible on an accessPackage. + * The access packages whose assigned users are ineligible to be assigned this access package. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessPackageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -92,7 +90,7 @@ public AccessPackageCollectionResponse get(@jakarta.annotation.Nullable final ja return this.requestAdapter.send(requestInfo, errorMapping, AccessPackageCollectionResponse::createFromDiscriminatorValue); } /** - * Retrieve a list of the accessPackage objects that have been marked as incompatible on an accessPackage. + * The access packages whose assigned users are ineligible to be assigned this access package. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -100,7 +98,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of the accessPackage objects that have been marked as incompatible on an accessPackage. + * The access packages whose assigned users are ineligible to be assigned this access package. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -122,7 +120,7 @@ public IncompatibleAccessPackagesRequestBuilder withUrl(@jakarta.annotation.Nonn return new IncompatibleAccessPackagesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of the accessPackage objects that have been marked as incompatible on an accessPackage. + * The access packages whose assigned users are ineligible to be assigned this access package. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/incompatibleaccesspackages/item/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/incompatibleaccesspackages/item/ref/RefRequestBuilder.java index d2be20ee79f..2dcdfc79955 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/incompatibleaccesspackages/item/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/incompatibleaccesspackages/item/ref/RefRequestBuilder.java @@ -35,18 +35,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/identityGovernance/entitlementManagement/accessPackages/{accessPackage%2Did}/incompatibleAccessPackages/{accessPackage%2Did1}/$ref", rawUrl); } /** - * Remove an access package from the list of access packages that have been marked as incompatible on an accessPackage. + * Delete ref of navigation property incompatibleAccessPackages for identityGovernance * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove an access package from the list of access packages that have been marked as incompatible on an accessPackage. + * Delete ref of navigation property incompatibleAccessPackages for identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -55,7 +53,7 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove an access package from the list of access packages that have been marked as incompatible on an accessPackage. + * Delete ref of navigation property incompatibleAccessPackages for identityGovernance * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -63,7 +61,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove an access package from the list of access packages that have been marked as incompatible on an accessPackage. + * Delete ref of navigation property incompatibleAccessPackages for identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/incompatibleaccesspackages/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/incompatibleaccesspackages/ref/RefRequestBuilder.java index ef9097ff95b..37aac521483 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/incompatibleaccesspackages/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/incompatibleaccesspackages/ref/RefRequestBuilder.java @@ -38,18 +38,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/identityGovernance/entitlementManagement/accessPackages/{accessPackage%2Did}/incompatibleAccessPackages/$ref?@id={%40id}{&%24count,%24filter,%24orderby,%24search,%24skip,%24top}", rawUrl); } /** - * Remove an access package from the list of access packages that have been marked as incompatible on an accessPackage. + * Delete ref of navigation property incompatibleAccessPackages for identityGovernance * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove an access package from the list of access packages that have been marked as incompatible on an accessPackage. + * Delete ref of navigation property incompatibleAccessPackages for identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -58,21 +56,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a list of the accessPackage objects that have been marked as incompatible on an accessPackage. + * The access packages whose assigned users are ineligible to be assigned this access package. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get() { return get(null); } /** - * Retrieve a list of the accessPackage objects that have been marked as incompatible on an accessPackage. + * The access packages whose assigned users are ineligible to be assigned this access package. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -82,20 +78,18 @@ public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util return this.requestAdapter.send(requestInfo, errorMapping, StringCollectionResponse::createFromDiscriminatorValue); } /** - * Add an accessPackage to the list of access packages that have been marked as incompatible on an accessPackage. + * Create new navigation property ref to incompatibleAccessPackages for identityGovernance * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body) { post(body, null); } /** - * Add an accessPackage to the list of access packages that have been marked as incompatible on an accessPackage. + * Create new navigation property ref to incompatibleAccessPackages for identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { Objects.requireNonNull(body); @@ -105,7 +99,7 @@ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakart this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove an access package from the list of access packages that have been marked as incompatible on an accessPackage. + * Delete ref of navigation property incompatibleAccessPackages for identityGovernance * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -113,7 +107,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove an access package from the list of access packages that have been marked as incompatible on an accessPackage. + * Delete ref of navigation property incompatibleAccessPackages for identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a list of the accessPackage objects that have been marked as incompatible on an accessPackage. + * The access packages whose assigned users are ineligible to be assigned this access package. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -133,7 +127,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of the accessPackage objects that have been marked as incompatible on an accessPackage. + * The access packages whose assigned users are ineligible to be assigned this access package. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add an accessPackage to the list of access packages that have been marked as incompatible on an accessPackage. + * Create new navigation property ref to incompatibleAccessPackages for identityGovernance * @param body The request body * @return a {@link RequestInformation} */ @@ -154,7 +148,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add an accessPackage to the list of access packages that have been marked as incompatible on an accessPackage. + * Create new navigation property ref to incompatibleAccessPackages for identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -179,7 +173,7 @@ public RefRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl return new RefRequestBuilder(rawUrl, requestAdapter); } /** - * Remove an access package from the list of access packages that have been marked as incompatible on an accessPackage. + * Delete ref of navigation property incompatibleAccessPackages for identityGovernance */ @jakarta.annotation.Generated("com.microsoft.kiota") public class DeleteQueryParameters implements QueryParameters { @@ -211,7 +205,7 @@ public class DeleteRequestConfiguration extends BaseRequestConfiguration { public DeleteQueryParameters queryParameters = new DeleteQueryParameters(); } /** - * Retrieve a list of the accessPackage objects that have been marked as incompatible on an accessPackage. + * The access packages whose assigned users are ineligible to be assigned this access package. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/incompatiblegroups/IncompatibleGroupsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/incompatiblegroups/IncompatibleGroupsRequestBuilder.java index 3816128704b..a90a91169fb 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/incompatiblegroups/IncompatibleGroupsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/incompatiblegroups/IncompatibleGroupsRequestBuilder.java @@ -68,21 +68,19 @@ public IncompatibleGroupsRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/identityGovernance/entitlementManagement/accessPackages/{accessPackage%2Did}/incompatibleGroups{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of the group objects that have been marked as incompatible on an accessPackage. + * The groups whose members are ineligible to be assigned this access package. * @return a {@link GroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public GroupCollectionResponse get() { return get(null); } /** - * Retrieve a list of the group objects that have been marked as incompatible on an accessPackage. + * The groups whose members are ineligible to be assigned this access package. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public GroupCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -92,7 +90,7 @@ public GroupCollectionResponse get(@jakarta.annotation.Nullable final java.util. return this.requestAdapter.send(requestInfo, errorMapping, GroupCollectionResponse::createFromDiscriminatorValue); } /** - * Retrieve a list of the group objects that have been marked as incompatible on an accessPackage. + * The groups whose members are ineligible to be assigned this access package. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -100,7 +98,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of the group objects that have been marked as incompatible on an accessPackage. + * The groups whose members are ineligible to be assigned this access package. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -122,7 +120,7 @@ public IncompatibleGroupsRequestBuilder withUrl(@jakarta.annotation.Nonnull fina return new IncompatibleGroupsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of the group objects that have been marked as incompatible on an accessPackage. + * The groups whose members are ineligible to be assigned this access package. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/incompatiblegroups/item/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/incompatiblegroups/item/ref/RefRequestBuilder.java index 6859621fc6c..ca351c0dcd4 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/incompatiblegroups/item/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/incompatiblegroups/item/ref/RefRequestBuilder.java @@ -35,18 +35,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/identityGovernance/entitlementManagement/accessPackages/{accessPackage%2Did}/incompatibleGroups/{group%2Did}/$ref", rawUrl); } /** - * Remove a group from the list of groups that have been marked as incompatible on an accessPackage. + * Delete ref of navigation property incompatibleGroups for identityGovernance * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove a group from the list of groups that have been marked as incompatible on an accessPackage. + * Delete ref of navigation property incompatibleGroups for identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -55,7 +53,7 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove a group from the list of groups that have been marked as incompatible on an accessPackage. + * Delete ref of navigation property incompatibleGroups for identityGovernance * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -63,7 +61,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove a group from the list of groups that have been marked as incompatible on an accessPackage. + * Delete ref of navigation property incompatibleGroups for identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/incompatiblegroups/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/incompatiblegroups/ref/RefRequestBuilder.java index ae340818ef3..ed1cc936946 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/incompatiblegroups/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/incompatiblegroups/ref/RefRequestBuilder.java @@ -38,18 +38,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/identityGovernance/entitlementManagement/accessPackages/{accessPackage%2Did}/incompatibleGroups/$ref?@id={%40id}{&%24count,%24filter,%24orderby,%24search,%24skip,%24top}", rawUrl); } /** - * Remove a group from the list of groups that have been marked as incompatible on an accessPackage. + * Delete ref of navigation property incompatibleGroups for identityGovernance * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove a group from the list of groups that have been marked as incompatible on an accessPackage. + * Delete ref of navigation property incompatibleGroups for identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -58,21 +56,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a list of the group objects that have been marked as incompatible on an accessPackage. + * The groups whose members are ineligible to be assigned this access package. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get() { return get(null); } /** - * Retrieve a list of the group objects that have been marked as incompatible on an accessPackage. + * The groups whose members are ineligible to be assigned this access package. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -82,20 +78,18 @@ public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util return this.requestAdapter.send(requestInfo, errorMapping, StringCollectionResponse::createFromDiscriminatorValue); } /** - * Add a group to the list of groups that have been marked as incompatible on an accessPackage. + * Create new navigation property ref to incompatibleGroups for identityGovernance * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body) { post(body, null); } /** - * Add a group to the list of groups that have been marked as incompatible on an accessPackage. + * Create new navigation property ref to incompatibleGroups for identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { Objects.requireNonNull(body); @@ -105,7 +99,7 @@ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakart this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove a group from the list of groups that have been marked as incompatible on an accessPackage. + * Delete ref of navigation property incompatibleGroups for identityGovernance * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -113,7 +107,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove a group from the list of groups that have been marked as incompatible on an accessPackage. + * Delete ref of navigation property incompatibleGroups for identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a list of the group objects that have been marked as incompatible on an accessPackage. + * The groups whose members are ineligible to be assigned this access package. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -133,7 +127,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of the group objects that have been marked as incompatible on an accessPackage. + * The groups whose members are ineligible to be assigned this access package. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add a group to the list of groups that have been marked as incompatible on an accessPackage. + * Create new navigation property ref to incompatibleGroups for identityGovernance * @param body The request body * @return a {@link RequestInformation} */ @@ -154,7 +148,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add a group to the list of groups that have been marked as incompatible on an accessPackage. + * Create new navigation property ref to incompatibleGroups for identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -179,7 +173,7 @@ public RefRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl return new RefRequestBuilder(rawUrl, requestAdapter); } /** - * Remove a group from the list of groups that have been marked as incompatible on an accessPackage. + * Delete ref of navigation property incompatibleGroups for identityGovernance */ @jakarta.annotation.Generated("com.microsoft.kiota") public class DeleteQueryParameters implements QueryParameters { @@ -211,7 +205,7 @@ public class DeleteRequestConfiguration extends BaseRequestConfiguration { public DeleteQueryParameters queryParameters = new DeleteQueryParameters(); } /** - * Retrieve a list of the group objects that have been marked as incompatible on an accessPackage. + * The groups whose members are ineligible to be assigned this access package. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/resourcerolescopes/ResourceRoleScopesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/resourcerolescopes/ResourceRoleScopesRequestBuilder.java index 8e886864896..cc0790e98a7 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/resourcerolescopes/ResourceRoleScopesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/resourcerolescopes/ResourceRoleScopesRequestBuilder.java @@ -82,23 +82,21 @@ public AccessPackageResourceRoleScopeCollectionResponse get(@jakarta.annotation. return this.requestAdapter.send(requestInfo, errorMapping, AccessPackageResourceRoleScopeCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new accessPackageResourceRoleScope for adding a resource role to an access package. The access package resource, for a group, an app, or a SharePoint Online site, must already exist in the access package catalog, and the originId for the resource role retrieved from the list of the resource roles. Once you add the resource role scope to the access package, the user will receive this resource role through any current and future access package assignments. + * Create new navigation property to resourceRoleScopes for identityGovernance * @param body The request body * @return a {@link AccessPackageResourceRoleScope} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageResourceRoleScope post(@jakarta.annotation.Nonnull final AccessPackageResourceRoleScope body) { return post(body, null); } /** - * Create a new accessPackageResourceRoleScope for adding a resource role to an access package. The access package resource, for a group, an app, or a SharePoint Online site, must already exist in the access package catalog, and the originId for the resource role retrieved from the list of the resource roles. Once you add the resource role scope to the access package, the user will receive this resource role through any current and future access package assignments. + * Create new navigation property to resourceRoleScopes for identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessPackageResourceRoleScope} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageResourceRoleScope post(@jakarta.annotation.Nonnull final AccessPackageResourceRoleScope body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -129,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new accessPackageResourceRoleScope for adding a resource role to an access package. The access package resource, for a group, an app, or a SharePoint Online site, must already exist in the access package catalog, and the originId for the resource role retrieved from the list of the resource roles. Once you add the resource role scope to the access package, the user will receive this resource role through any current and future access package assignments. + * Create new navigation property to resourceRoleScopes for identityGovernance * @param body The request body * @return a {@link RequestInformation} */ @@ -138,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new accessPackageResourceRoleScope for adding a resource role to an access package. The access package resource, for a group, an app, or a SharePoint Online site, must already exist in the access package catalog, and the originId for the resource role retrieved from the list of the resource roles. Once you add the resource role scope to the access package, the user will receive this resource role through any current and future access package assignments. + * Create new navigation property to resourceRoleScopes for identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/resourcerolescopes/item/AccessPackageResourceRoleScopeItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/resourcerolescopes/item/AccessPackageResourceRoleScopeItemRequestBuilder.java index 24f040e2192..ddbd13982b3 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/resourcerolescopes/item/AccessPackageResourceRoleScopeItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/accesspackages/item/resourcerolescopes/item/AccessPackageResourceRoleScopeItemRequestBuilder.java @@ -55,18 +55,16 @@ public AccessPackageResourceRoleScopeItemRequestBuilder(@jakarta.annotation.Nonn super(requestAdapter, "{+baseurl}/identityGovernance/entitlementManagement/accessPackages/{accessPackage%2Did}/resourceRoleScopes/{accessPackageResourceRoleScope%2Did}{?%24expand,%24select}", rawUrl); } /** - * Remove a accessPackageResourceRoleScope from an accessPackage list of resource role scopes. + * Delete navigation property resourceRoleScopes for identityGovernance * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove a accessPackageResourceRoleScope from an accessPackage list of resource role scopes. + * Delete navigation property resourceRoleScopes for identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -122,7 +120,7 @@ public AccessPackageResourceRoleScope patch(@jakarta.annotation.Nonnull final Ac return this.requestAdapter.send(requestInfo, errorMapping, AccessPackageResourceRoleScope::createFromDiscriminatorValue); } /** - * Remove a accessPackageResourceRoleScope from an accessPackage list of resource role scopes. + * Delete navigation property resourceRoleScopes for identityGovernance * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -130,7 +128,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove a accessPackageResourceRoleScope from an accessPackage list of resource role scopes. + * Delete navigation property resourceRoleScopes for identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/assignmentpolicies/AssignmentPoliciesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/assignmentpolicies/AssignmentPoliciesRequestBuilder.java index 517ecc606fe..a476aa8b276 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/assignmentpolicies/AssignmentPoliciesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/assignmentpolicies/AssignmentPoliciesRequestBuilder.java @@ -60,21 +60,19 @@ public AssignmentPoliciesRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/identityGovernance/entitlementManagement/assignmentPolicies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * In Microsoft Entra entitlement management, retrieve a list of accessPackageAssignmentPolicy objects. If the delegated user is in a directory role, the resulting list includes all the assignment policies that the caller has access to read, across all catalogs and access packages. If the delegated user is an access package manager or catalog owner, they should instead retrieve the policies for the access packages they can read with list accessPackages by including $expand=assignmentPolicies as a query parameter. + * Access package assignment policies govern which subjects can request or be assigned an access package via an access package assignment. * @return a {@link AccessPackageAssignmentPolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageAssignmentPolicyCollectionResponse get() { return get(null); } /** - * In Microsoft Entra entitlement management, retrieve a list of accessPackageAssignmentPolicy objects. If the delegated user is in a directory role, the resulting list includes all the assignment policies that the caller has access to read, across all catalogs and access packages. If the delegated user is an access package manager or catalog owner, they should instead retrieve the policies for the access packages they can read with list accessPackages by including $expand=assignmentPolicies as a query parameter. + * Access package assignment policies govern which subjects can request or be assigned an access package via an access package assignment. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessPackageAssignmentPolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageAssignmentPolicyCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public AccessPackageAssignmentPolicyCollectionResponse get(@jakarta.annotation.N return this.requestAdapter.send(requestInfo, errorMapping, AccessPackageAssignmentPolicyCollectionResponse::createFromDiscriminatorValue); } /** - * In Microsoft Entra entitlement management, create a new accessPackageAssignmentPolicy object. The request will include a reference to the accessPackage that will contain this policy, which must already exist. + * Create new navigation property to assignmentPolicies for identityGovernance * @param body The request body * @return a {@link AccessPackageAssignmentPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageAssignmentPolicy post(@jakarta.annotation.Nonnull final AccessPackageAssignmentPolicy body) { return post(body, null); } /** - * In Microsoft Entra entitlement management, create a new accessPackageAssignmentPolicy object. The request will include a reference to the accessPackage that will contain this policy, which must already exist. + * Create new navigation property to assignmentPolicies for identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessPackageAssignmentPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageAssignmentPolicy post(@jakarta.annotation.Nonnull final AccessPackageAssignmentPolicy body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public AccessPackageAssignmentPolicy post(@jakarta.annotation.Nonnull final Acce return this.requestAdapter.send(requestInfo, errorMapping, AccessPackageAssignmentPolicy::createFromDiscriminatorValue); } /** - * In Microsoft Entra entitlement management, retrieve a list of accessPackageAssignmentPolicy objects. If the delegated user is in a directory role, the resulting list includes all the assignment policies that the caller has access to read, across all catalogs and access packages. If the delegated user is an access package manager or catalog owner, they should instead retrieve the policies for the access packages they can read with list accessPackages by including $expand=assignmentPolicies as a query parameter. + * Access package assignment policies govern which subjects can request or be assigned an access package via an access package assignment. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * In Microsoft Entra entitlement management, retrieve a list of accessPackageAssignmentPolicy objects. If the delegated user is in a directory role, the resulting list includes all the assignment policies that the caller has access to read, across all catalogs and access packages. If the delegated user is an access package manager or catalog owner, they should instead retrieve the policies for the access packages they can read with list accessPackages by including $expand=assignmentPolicies as a query parameter. + * Access package assignment policies govern which subjects can request or be assigned an access package via an access package assignment. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * In Microsoft Entra entitlement management, create a new accessPackageAssignmentPolicy object. The request will include a reference to the accessPackage that will contain this policy, which must already exist. + * Create new navigation property to assignmentPolicies for identityGovernance * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * In Microsoft Entra entitlement management, create a new accessPackageAssignmentPolicy object. The request will include a reference to the accessPackage that will contain this policy, which must already exist. + * Create new navigation property to assignmentPolicies for identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public AssignmentPoliciesRequestBuilder withUrl(@jakarta.annotation.Nonnull fina return new AssignmentPoliciesRequestBuilder(rawUrl, requestAdapter); } /** - * In Microsoft Entra entitlement management, retrieve a list of accessPackageAssignmentPolicy objects. If the delegated user is in a directory role, the resulting list includes all the assignment policies that the caller has access to read, across all catalogs and access packages. If the delegated user is an access package manager or catalog owner, they should instead retrieve the policies for the access packages they can read with list accessPackages by including $expand=assignmentPolicies as a query parameter. + * Access package assignment policies govern which subjects can request or be assigned an access package via an access package assignment. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/assignmentpolicies/item/AccessPackageAssignmentPolicyItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/assignmentpolicies/item/AccessPackageAssignmentPolicyItemRequestBuilder.java index b11a0fcc833..d53428dd636 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/assignmentpolicies/item/AccessPackageAssignmentPolicyItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/assignmentpolicies/item/AccessPackageAssignmentPolicyItemRequestBuilder.java @@ -73,18 +73,16 @@ public AccessPackageAssignmentPolicyItemRequestBuilder(@jakarta.annotation.Nonnu super(requestAdapter, "{+baseurl}/identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy%2Did}{?%24expand,%24select}", rawUrl); } /** - * In Microsoft Entra entitlement management, delete an accessPackageAssignmentPolicy. + * Delete navigation property assignmentPolicies for identityGovernance * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * In Microsoft Entra entitlement management, delete an accessPackageAssignmentPolicy. + * Delete navigation property assignmentPolicies for identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -93,21 +91,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * In Microsoft Entra entitlement management, retrieve the properties and relationships of an accessPackageAssignmentPolicy object. + * Access package assignment policies govern which subjects can request or be assigned an access package via an access package assignment. * @return a {@link AccessPackageAssignmentPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageAssignmentPolicy get() { return get(null); } /** - * In Microsoft Entra entitlement management, retrieve the properties and relationships of an accessPackageAssignmentPolicy object. + * Access package assignment policies govern which subjects can request or be assigned an access package via an access package assignment. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessPackageAssignmentPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageAssignmentPolicy get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -142,7 +138,7 @@ public AccessPackageAssignmentPolicy put(@jakarta.annotation.Nonnull final Acces return this.requestAdapter.send(requestInfo, errorMapping, AccessPackageAssignmentPolicy::createFromDiscriminatorValue); } /** - * In Microsoft Entra entitlement management, delete an accessPackageAssignmentPolicy. + * Delete navigation property assignmentPolicies for identityGovernance * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -150,7 +146,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * In Microsoft Entra entitlement management, delete an accessPackageAssignmentPolicy. + * Delete navigation property assignmentPolicies for identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -162,7 +158,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * In Microsoft Entra entitlement management, retrieve the properties and relationships of an accessPackageAssignmentPolicy object. + * Access package assignment policies govern which subjects can request or be assigned an access package via an access package assignment. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -170,7 +166,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * In Microsoft Entra entitlement management, retrieve the properties and relationships of an accessPackageAssignmentPolicy object. + * Access package assignment policies govern which subjects can request or be assigned an access package via an access package assignment. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -222,7 +218,7 @@ public AccessPackageAssignmentPolicyItemRequestBuilder withUrl(@jakarta.annotati public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * In Microsoft Entra entitlement management, retrieve the properties and relationships of an accessPackageAssignmentPolicy object. + * Access package assignment policies govern which subjects can request or be assigned an access package via an access package assignment. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/assignmentrequests/AssignmentRequestsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/assignmentrequests/AssignmentRequestsRequestBuilder.java index 2dc137d61f7..f5eaea38fd8 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/assignmentrequests/AssignmentRequestsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/assignmentrequests/AssignmentRequestsRequestBuilder.java @@ -71,21 +71,19 @@ public FilterByCurrentUserWithOnRequestBuilder filterByCurrentUserWithOn(@jakart return new FilterByCurrentUserWithOnRequestBuilder(pathParameters, requestAdapter, on); } /** - * In Microsoft Entra entitlement management, retrieve a list of accessPackageAssignmentRequest objects. The resulting list includes all the assignment requests, current and well as expired, that the caller has access to read, across all catalogs and access packages. + * Access package assignment requests created by or on behalf of a subject. * @return a {@link AccessPackageAssignmentRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageAssignmentRequestCollectionResponse get() { return get(null); } /** - * In Microsoft Entra entitlement management, retrieve a list of accessPackageAssignmentRequest objects. The resulting list includes all the assignment requests, current and well as expired, that the caller has access to read, across all catalogs and access packages. + * Access package assignment requests created by or on behalf of a subject. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessPackageAssignmentRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageAssignmentRequestCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -95,23 +93,21 @@ public AccessPackageAssignmentRequestCollectionResponse get(@jakarta.annotation. return this.requestAdapter.send(requestInfo, errorMapping, AccessPackageAssignmentRequestCollectionResponse::createFromDiscriminatorValue); } /** - * In Microsoft Entra Entitlement Management, create a new accessPackageAssignmentRequest object. This operation is used to assign a user to an access package, update the assignment, or to remove an access package assignment. + * Create new navigation property to assignmentRequests for identityGovernance * @param body The request body * @return a {@link AccessPackageAssignmentRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageAssignmentRequest post(@jakarta.annotation.Nonnull final AccessPackageAssignmentRequest body) { return post(body, null); } /** - * In Microsoft Entra Entitlement Management, create a new accessPackageAssignmentRequest object. This operation is used to assign a user to an access package, update the assignment, or to remove an access package assignment. + * Create new navigation property to assignmentRequests for identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessPackageAssignmentRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageAssignmentRequest post(@jakarta.annotation.Nonnull final AccessPackageAssignmentRequest body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -122,7 +118,7 @@ public AccessPackageAssignmentRequest post(@jakarta.annotation.Nonnull final Acc return this.requestAdapter.send(requestInfo, errorMapping, AccessPackageAssignmentRequest::createFromDiscriminatorValue); } /** - * In Microsoft Entra entitlement management, retrieve a list of accessPackageAssignmentRequest objects. The resulting list includes all the assignment requests, current and well as expired, that the caller has access to read, across all catalogs and access packages. + * Access package assignment requests created by or on behalf of a subject. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -130,7 +126,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * In Microsoft Entra entitlement management, retrieve a list of accessPackageAssignmentRequest objects. The resulting list includes all the assignment requests, current and well as expired, that the caller has access to read, across all catalogs and access packages. + * Access package assignment requests created by or on behalf of a subject. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -142,7 +138,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * In Microsoft Entra Entitlement Management, create a new accessPackageAssignmentRequest object. This operation is used to assign a user to an access package, update the assignment, or to remove an access package assignment. + * Create new navigation property to assignmentRequests for identityGovernance * @param body The request body * @return a {@link RequestInformation} */ @@ -151,7 +147,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * In Microsoft Entra Entitlement Management, create a new accessPackageAssignmentRequest object. This operation is used to assign a user to an access package, update the assignment, or to remove an access package assignment. + * Create new navigation property to assignmentRequests for identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -176,7 +172,7 @@ public AssignmentRequestsRequestBuilder withUrl(@jakarta.annotation.Nonnull fina return new AssignmentRequestsRequestBuilder(rawUrl, requestAdapter); } /** - * In Microsoft Entra entitlement management, retrieve a list of accessPackageAssignmentRequest objects. The resulting list includes all the assignment requests, current and well as expired, that the caller has access to read, across all catalogs and access packages. + * Access package assignment requests created by or on behalf of a subject. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/assignmentrequests/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/assignmentrequests/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java index 042fe07c943..ab27cb9e2cd 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/assignmentrequests/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/assignmentrequests/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java @@ -38,19 +38,21 @@ public FilterByCurrentUserWithOnRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/identityGovernance/entitlementManagement/assignmentRequests/filterByCurrentUser(on='{on}'){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function filterByCurrentUser + * In Microsoft Entra Entitlement Management, retrieve a list of accessPackageAssignmentRequest objects filtered on the signed-in user. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get() { return get(null); } /** - * Invoke function filterByCurrentUser + * In Microsoft Entra Entitlement Management, retrieve a list of accessPackageAssignmentRequest objects filtered on the signed-in user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, FilterByCurrentUserWithOnGetResponse::createFromDiscriminatorValue); } /** - * Invoke function filterByCurrentUser + * In Microsoft Entra Entitlement Management, retrieve a list of accessPackageAssignmentRequest objects filtered on the signed-in user. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function filterByCurrentUser + * In Microsoft Entra Entitlement Management, retrieve a list of accessPackageAssignmentRequest objects filtered on the signed-in user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -90,7 +92,7 @@ public FilterByCurrentUserWithOnRequestBuilder withUrl(@jakarta.annotation.Nonnu return new FilterByCurrentUserWithOnRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function filterByCurrentUser + * In Microsoft Entra Entitlement Management, retrieve a list of accessPackageAssignmentRequest objects filtered on the signed-in user. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/assignmentrequests/item/AccessPackageAssignmentRequestItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/assignmentrequests/item/AccessPackageAssignmentRequestItemRequestBuilder.java index 99d07928804..b668779a6cb 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/assignmentrequests/item/AccessPackageAssignmentRequestItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/assignmentrequests/item/AccessPackageAssignmentRequestItemRequestBuilder.java @@ -91,18 +91,16 @@ public AccessPackageAssignmentRequestItemRequestBuilder(@jakarta.annotation.Nonn super(requestAdapter, "{+baseurl}/identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an accessPackageAssignmentRequest object. This request can be made to remove a denied or completed request. You cannot delete an access package assignment request if it has any accessPackageAssignment objects. + * Delete navigation property assignmentRequests for identityGovernance * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an accessPackageAssignmentRequest object. This request can be made to remove a denied or completed request. You cannot delete an access package assignment request if it has any accessPackageAssignment objects. + * Delete navigation property assignmentRequests for identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -111,21 +109,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * In Microsoft Entra entitlement management, retrieve the properties and relationships of an accessPackageAssignmentRequest object. + * Access package assignment requests created by or on behalf of a subject. * @return a {@link AccessPackageAssignmentRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageAssignmentRequest get() { return get(null); } /** - * In Microsoft Entra entitlement management, retrieve the properties and relationships of an accessPackageAssignmentRequest object. + * Access package assignment requests created by or on behalf of a subject. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessPackageAssignmentRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageAssignmentRequest get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -160,7 +156,7 @@ public AccessPackageAssignmentRequest patch(@jakarta.annotation.Nonnull final Ac return this.requestAdapter.send(requestInfo, errorMapping, AccessPackageAssignmentRequest::createFromDiscriminatorValue); } /** - * Delete an accessPackageAssignmentRequest object. This request can be made to remove a denied or completed request. You cannot delete an access package assignment request if it has any accessPackageAssignment objects. + * Delete navigation property assignmentRequests for identityGovernance * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -168,7 +164,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an accessPackageAssignmentRequest object. This request can be made to remove a denied or completed request. You cannot delete an access package assignment request if it has any accessPackageAssignment objects. + * Delete navigation property assignmentRequests for identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -180,7 +176,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * In Microsoft Entra entitlement management, retrieve the properties and relationships of an accessPackageAssignmentRequest object. + * Access package assignment requests created by or on behalf of a subject. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -188,7 +184,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * In Microsoft Entra entitlement management, retrieve the properties and relationships of an accessPackageAssignmentRequest object. + * Access package assignment requests created by or on behalf of a subject. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -240,7 +236,7 @@ public AccessPackageAssignmentRequestItemRequestBuilder withUrl(@jakarta.annotat public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * In Microsoft Entra entitlement management, retrieve the properties and relationships of an accessPackageAssignmentRequest object. + * Access package assignment requests created by or on behalf of a subject. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/assignments/AssignmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/assignments/AssignmentsRequestBuilder.java index 2e93cf131fd..48432e754e9 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/assignments/AssignmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/assignments/AssignmentsRequestBuilder.java @@ -93,21 +93,19 @@ public FilterByCurrentUserWithOnRequestBuilder filterByCurrentUserWithOn(@jakart return new FilterByCurrentUserWithOnRequestBuilder(pathParameters, requestAdapter, on); } /** - * In Microsoft Entra entitlement management, retrieve a list of accessPackageAssignment objects. For directory-wide administrators, the resulting list includes all the assignments, current and well as expired, that the caller has access to read, across all catalogs and access packages. If the caller is on behalf of a delegated user who is assigned only to catalog-specific delegated administrative roles, the request must supply a filter to indicate a specific access package, such as: $filter=accessPackage/id eq 'a914b616-e04e-476b-aa37-91038f0b165b'. + * The assignment of an access package to a subject for a period of time. * @return a {@link AccessPackageAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageAssignmentCollectionResponse get() { return get(null); } /** - * In Microsoft Entra entitlement management, retrieve a list of accessPackageAssignment objects. For directory-wide administrators, the resulting list includes all the assignments, current and well as expired, that the caller has access to read, across all catalogs and access packages. If the caller is on behalf of a delegated user who is assigned only to catalog-specific delegated administrative roles, the request must supply a filter to indicate a specific access package, such as: $filter=accessPackage/id eq 'a914b616-e04e-476b-aa37-91038f0b165b'. + * The assignment of an access package to a subject for a period of time. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessPackageAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageAssignmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -142,7 +140,7 @@ public AccessPackageAssignment post(@jakarta.annotation.Nonnull final AccessPack return this.requestAdapter.send(requestInfo, errorMapping, AccessPackageAssignment::createFromDiscriminatorValue); } /** - * In Microsoft Entra entitlement management, retrieve a list of accessPackageAssignment objects. For directory-wide administrators, the resulting list includes all the assignments, current and well as expired, that the caller has access to read, across all catalogs and access packages. If the caller is on behalf of a delegated user who is assigned only to catalog-specific delegated administrative roles, the request must supply a filter to indicate a specific access package, such as: $filter=accessPackage/id eq 'a914b616-e04e-476b-aa37-91038f0b165b'. + * The assignment of an access package to a subject for a period of time. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -150,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * In Microsoft Entra entitlement management, retrieve a list of accessPackageAssignment objects. For directory-wide administrators, the resulting list includes all the assignments, current and well as expired, that the caller has access to read, across all catalogs and access packages. If the caller is on behalf of a delegated user who is assigned only to catalog-specific delegated administrative roles, the request must supply a filter to indicate a specific access package, such as: $filter=accessPackage/id eq 'a914b616-e04e-476b-aa37-91038f0b165b'. + * The assignment of an access package to a subject for a period of time. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -196,7 +194,7 @@ public AssignmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AssignmentsRequestBuilder(rawUrl, requestAdapter); } /** - * In Microsoft Entra entitlement management, retrieve a list of accessPackageAssignment objects. For directory-wide administrators, the resulting list includes all the assignments, current and well as expired, that the caller has access to read, across all catalogs and access packages. If the caller is on behalf of a delegated user who is assigned only to catalog-specific delegated administrative roles, the request must supply a filter to indicate a specific access package, such as: $filter=accessPackage/id eq 'a914b616-e04e-476b-aa37-91038f0b165b'. + * The assignment of an access package to a subject for a period of time. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/assignments/additionalaccess/AdditionalAccessRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/assignments/additionalaccess/AdditionalAccessRequestBuilder.java index 327d0314b9e..8b3de13da32 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/assignments/additionalaccess/AdditionalAccessRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/assignments/additionalaccess/AdditionalAccessRequestBuilder.java @@ -36,19 +36,21 @@ public AdditionalAccessRequestBuilder(@jakarta.annotation.Nonnull final String r super(requestAdapter, "{+baseurl}/identityGovernance/entitlementManagement/assignments/additionalAccess(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function additionalAccess + * In Microsoft Entra Entitlement Management, retrieve a collection of accessPackageAssignment objects that indicate a target user has an assignment to a specified access package and also an assignment to another, potentially incompatible, access package. This can be used to prepare to configure the incompatible access packages for a specific access package. * @return a {@link AdditionalAccessGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public AdditionalAccessGetResponse get() { return get(null); } /** - * Invoke function additionalAccess + * In Microsoft Entra Entitlement Management, retrieve a collection of accessPackageAssignment objects that indicate a target user has an assignment to a specified access package and also an assignment to another, potentially incompatible, access package. This can be used to prepare to configure the incompatible access packages for a specific access package. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AdditionalAccessGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public AdditionalAccessGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public AdditionalAccessGetResponse get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, AdditionalAccessGetResponse::createFromDiscriminatorValue); } /** - * Invoke function additionalAccess + * In Microsoft Entra Entitlement Management, retrieve a collection of accessPackageAssignment objects that indicate a target user has an assignment to a specified access package and also an assignment to another, potentially incompatible, access package. This can be used to prepare to configure the incompatible access packages for a specific access package. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function additionalAccess + * In Microsoft Entra Entitlement Management, retrieve a collection of accessPackageAssignment objects that indicate a target user has an assignment to a specified access package and also an assignment to another, potentially incompatible, access package. This can be used to prepare to configure the incompatible access packages for a specific access package. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public AdditionalAccessRequestBuilder withUrl(@jakarta.annotation.Nonnull final return new AdditionalAccessRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function additionalAccess + * In Microsoft Entra Entitlement Management, retrieve a collection of accessPackageAssignment objects that indicate a target user has an assignment to a specified access package and also an assignment to another, potentially incompatible, access package. This can be used to prepare to configure the incompatible access packages for a specific access package. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/assignments/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/assignments/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java index 0848013d879..eed392827a8 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/assignments/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/assignments/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java @@ -38,19 +38,21 @@ public FilterByCurrentUserWithOnRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/identityGovernance/entitlementManagement/assignments/filterByCurrentUser(on='{on}'){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function filterByCurrentUser + * In Microsoft Entra Entitlement Management, retrieve a list of accessPackageAssignment objects filtered on the signed-in user. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get() { return get(null); } /** - * Invoke function filterByCurrentUser + * In Microsoft Entra Entitlement Management, retrieve a list of accessPackageAssignment objects filtered on the signed-in user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, FilterByCurrentUserWithOnGetResponse::createFromDiscriminatorValue); } /** - * Invoke function filterByCurrentUser + * In Microsoft Entra Entitlement Management, retrieve a list of accessPackageAssignment objects filtered on the signed-in user. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function filterByCurrentUser + * In Microsoft Entra Entitlement Management, retrieve a list of accessPackageAssignment objects filtered on the signed-in user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -90,7 +92,7 @@ public FilterByCurrentUserWithOnRequestBuilder withUrl(@jakarta.annotation.Nonnu return new FilterByCurrentUserWithOnRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function filterByCurrentUser + * In Microsoft Entra Entitlement Management, retrieve a list of accessPackageAssignment objects filtered on the signed-in user. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/assignments/item/AccessPackageAssignmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/assignments/item/AccessPackageAssignmentItemRequestBuilder.java index ef968f69c43..006fd9612b8 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/assignments/item/AccessPackageAssignmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/assignments/item/AccessPackageAssignmentItemRequestBuilder.java @@ -91,21 +91,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * In Microsoft Entra entitlement management, retrieve the properties and relationships of an accessPackageAssignment object. + * The assignment of an access package to a subject for a period of time. * @return a {@link AccessPackageAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageAssignment get() { return get(null); } /** - * In Microsoft Entra entitlement management, retrieve the properties and relationships of an accessPackageAssignment object. + * The assignment of an access package to a subject for a period of time. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessPackageAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageAssignment get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -160,7 +158,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * In Microsoft Entra entitlement management, retrieve the properties and relationships of an accessPackageAssignment object. + * The assignment of an access package to a subject for a period of time. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -168,7 +166,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * In Microsoft Entra entitlement management, retrieve the properties and relationships of an accessPackageAssignment object. + * The assignment of an access package to a subject for a period of time. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -220,7 +218,7 @@ public AccessPackageAssignmentItemRequestBuilder withUrl(@jakarta.annotation.Non public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * In Microsoft Entra entitlement management, retrieve the properties and relationships of an accessPackageAssignment object. + * The assignment of an access package to a subject for a period of time. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/catalogs/CatalogsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/catalogs/CatalogsRequestBuilder.java index d33b4b47686..ea3e7b0dd49 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/catalogs/CatalogsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/catalogs/CatalogsRequestBuilder.java @@ -60,21 +60,19 @@ public CatalogsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/identityGovernance/entitlementManagement/catalogs{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of accessPackageCatalog objects. + * A container for access packages. * @return a {@link AccessPackageCatalogCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageCatalogCollectionResponse get() { return get(null); } /** - * Retrieve a list of accessPackageCatalog objects. + * A container for access packages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessPackageCatalogCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageCatalogCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public AccessPackageCatalogCollectionResponse get(@jakarta.annotation.Nullable f return this.requestAdapter.send(requestInfo, errorMapping, AccessPackageCatalogCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new accessPackageCatalog object. + * Create new navigation property to catalogs for identityGovernance * @param body The request body * @return a {@link AccessPackageCatalog} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageCatalog post(@jakarta.annotation.Nonnull final AccessPackageCatalog body) { return post(body, null); } /** - * Create a new accessPackageCatalog object. + * Create new navigation property to catalogs for identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessPackageCatalog} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageCatalog post(@jakarta.annotation.Nonnull final AccessPackageCatalog body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public AccessPackageCatalog post(@jakarta.annotation.Nonnull final AccessPackage return this.requestAdapter.send(requestInfo, errorMapping, AccessPackageCatalog::createFromDiscriminatorValue); } /** - * Retrieve a list of accessPackageCatalog objects. + * A container for access packages. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of accessPackageCatalog objects. + * A container for access packages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new accessPackageCatalog object. + * Create new navigation property to catalogs for identityGovernance * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new accessPackageCatalog object. + * Create new navigation property to catalogs for identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public CatalogsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new CatalogsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of accessPackageCatalog objects. + * A container for access packages. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/catalogs/item/AccessPackageCatalogItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/catalogs/item/AccessPackageCatalogItemRequestBuilder.java index 7a384b6adfd..4f3b62b79fc 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/catalogs/item/AccessPackageCatalogItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/catalogs/item/AccessPackageCatalogItemRequestBuilder.java @@ -82,18 +82,16 @@ public AccessPackageCatalogItemRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an accessPackageCatalog. + * Delete navigation property catalogs for identityGovernance * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an accessPackageCatalog. + * Delete navigation property catalogs for identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -102,21 +100,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of an accessPackageCatalog object. + * A container for access packages. * @return a {@link AccessPackageCatalog} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageCatalog get() { return get(null); } /** - * Retrieve the properties and relationships of an accessPackageCatalog object. + * A container for access packages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessPackageCatalog} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageCatalog get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,23 +122,21 @@ public AccessPackageCatalog get(@jakarta.annotation.Nullable final java.util.fun return this.requestAdapter.send(requestInfo, errorMapping, AccessPackageCatalog::createFromDiscriminatorValue); } /** - * Update an existing accessPackageCatalog object to change one or more of its properties, such as the display name or description. + * Update the navigation property catalogs in identityGovernance * @param body The request body * @return a {@link AccessPackageCatalog} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageCatalog patch(@jakarta.annotation.Nonnull final AccessPackageCatalog body) { return patch(body, null); } /** - * Update an existing accessPackageCatalog object to change one or more of its properties, such as the display name or description. + * Update the navigation property catalogs in identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessPackageCatalog} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageCatalog patch(@jakarta.annotation.Nonnull final AccessPackageCatalog body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -153,7 +147,7 @@ public AccessPackageCatalog patch(@jakarta.annotation.Nonnull final AccessPackag return this.requestAdapter.send(requestInfo, errorMapping, AccessPackageCatalog::createFromDiscriminatorValue); } /** - * Delete an accessPackageCatalog. + * Delete navigation property catalogs for identityGovernance * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -161,7 +155,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an accessPackageCatalog. + * Delete navigation property catalogs for identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -173,7 +167,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of an accessPackageCatalog object. + * A container for access packages. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -181,7 +175,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of an accessPackageCatalog object. + * A container for access packages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +187,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update an existing accessPackageCatalog object to change one or more of its properties, such as the display name or description. + * Update the navigation property catalogs in identityGovernance * @param body The request body * @return a {@link RequestInformation} */ @@ -202,7 +196,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update an existing accessPackageCatalog object to change one or more of its properties, such as the display name or description. + * Update the navigation property catalogs in identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -233,7 +227,7 @@ public AccessPackageCatalogItemRequestBuilder withUrl(@jakarta.annotation.Nonnul public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of an accessPackageCatalog object. + * A container for access packages. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/catalogs/item/customworkflowextensions/CustomWorkflowExtensionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/catalogs/item/customworkflowextensions/CustomWorkflowExtensionsRequestBuilder.java index 30c63686456..df2d06bd99c 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/catalogs/item/customworkflowextensions/CustomWorkflowExtensionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/catalogs/item/customworkflowextensions/CustomWorkflowExtensionsRequestBuilder.java @@ -60,21 +60,19 @@ public CustomWorkflowExtensionsRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog%2Did}/customWorkflowExtensions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the accessPackageAssignmentRequestWorkflowExtension and accessPackageAssignmentWorkflowExtension objects and their properties. The resulting list includes all the customAccessPackageWorkflowExtension objects for the catalog that the caller has access to read. Each object includes an @odata.type property that indicates whether the object is an accessPackageAssignmentRequestWorkflowExtension or an accessPackageAssignmentWorkflowExtension. + * Get customWorkflowExtensions from identityGovernance * @return a {@link CustomCalloutExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CustomCalloutExtensionCollectionResponse get() { return get(null); } /** - * Get a list of the accessPackageAssignmentRequestWorkflowExtension and accessPackageAssignmentWorkflowExtension objects and their properties. The resulting list includes all the customAccessPackageWorkflowExtension objects for the catalog that the caller has access to read. Each object includes an @odata.type property that indicates whether the object is an accessPackageAssignmentRequestWorkflowExtension or an accessPackageAssignmentWorkflowExtension. + * Get customWorkflowExtensions from identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CustomCalloutExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CustomCalloutExtensionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public CustomCalloutExtensionCollectionResponse get(@jakarta.annotation.Nullable return this.requestAdapter.send(requestInfo, errorMapping, CustomCalloutExtensionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new accessPackageAssignmentRequestWorkflowExtension or accessPackageAssignmentWorkflowExtension object and add it to an existing accessPackageCatalog object. You must explicitly provide an @odata.type property that indicates whether the object is an accessPackageAssignmentRequestWorkflowExtension or an accessPackageAssignmentWorkflowExtension. + * Create new navigation property to customWorkflowExtensions for identityGovernance * @param body The request body * @return a {@link CustomCalloutExtension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CustomCalloutExtension post(@jakarta.annotation.Nonnull final CustomCalloutExtension body) { return post(body, null); } /** - * Create a new accessPackageAssignmentRequestWorkflowExtension or accessPackageAssignmentWorkflowExtension object and add it to an existing accessPackageCatalog object. You must explicitly provide an @odata.type property that indicates whether the object is an accessPackageAssignmentRequestWorkflowExtension or an accessPackageAssignmentWorkflowExtension. + * Create new navigation property to customWorkflowExtensions for identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CustomCalloutExtension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CustomCalloutExtension post(@jakarta.annotation.Nonnull final CustomCalloutExtension body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public CustomCalloutExtension post(@jakarta.annotation.Nonnull final CustomCallo return this.requestAdapter.send(requestInfo, errorMapping, CustomCalloutExtension::createFromDiscriminatorValue); } /** - * Get a list of the accessPackageAssignmentRequestWorkflowExtension and accessPackageAssignmentWorkflowExtension objects and their properties. The resulting list includes all the customAccessPackageWorkflowExtension objects for the catalog that the caller has access to read. Each object includes an @odata.type property that indicates whether the object is an accessPackageAssignmentRequestWorkflowExtension or an accessPackageAssignmentWorkflowExtension. + * Get customWorkflowExtensions from identityGovernance * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the accessPackageAssignmentRequestWorkflowExtension and accessPackageAssignmentWorkflowExtension objects and their properties. The resulting list includes all the customAccessPackageWorkflowExtension objects for the catalog that the caller has access to read. Each object includes an @odata.type property that indicates whether the object is an accessPackageAssignmentRequestWorkflowExtension or an accessPackageAssignmentWorkflowExtension. + * Get customWorkflowExtensions from identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new accessPackageAssignmentRequestWorkflowExtension or accessPackageAssignmentWorkflowExtension object and add it to an existing accessPackageCatalog object. You must explicitly provide an @odata.type property that indicates whether the object is an accessPackageAssignmentRequestWorkflowExtension or an accessPackageAssignmentWorkflowExtension. + * Create new navigation property to customWorkflowExtensions for identityGovernance * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new accessPackageAssignmentRequestWorkflowExtension or accessPackageAssignmentWorkflowExtension object and add it to an existing accessPackageCatalog object. You must explicitly provide an @odata.type property that indicates whether the object is an accessPackageAssignmentRequestWorkflowExtension or an accessPackageAssignmentWorkflowExtension. + * Create new navigation property to customWorkflowExtensions for identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public CustomWorkflowExtensionsRequestBuilder withUrl(@jakarta.annotation.Nonnul return new CustomWorkflowExtensionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the accessPackageAssignmentRequestWorkflowExtension and accessPackageAssignmentWorkflowExtension objects and their properties. The resulting list includes all the customAccessPackageWorkflowExtension objects for the catalog that the caller has access to read. Each object includes an @odata.type property that indicates whether the object is an accessPackageAssignmentRequestWorkflowExtension or an accessPackageAssignmentWorkflowExtension. + * Get customWorkflowExtensions from identityGovernance */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/catalogs/item/customworkflowextensions/item/CustomCalloutExtensionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/catalogs/item/customworkflowextensions/item/CustomCalloutExtensionItemRequestBuilder.java index 4979d88e543..75732171e78 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/catalogs/item/customworkflowextensions/item/CustomCalloutExtensionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/catalogs/item/customworkflowextensions/item/CustomCalloutExtensionItemRequestBuilder.java @@ -37,18 +37,16 @@ public CustomCalloutExtensionItemRequestBuilder(@jakarta.annotation.Nonnull fina super(requestAdapter, "{+baseurl}/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog%2Did}/customWorkflowExtensions/{customCalloutExtension%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an accessPackageAssignmentRequestWorkflowExtension object. The custom workflow extension must first be removed from any associated policies before it can be deleted. Follow these steps to remove the custom workflow extension from any associated policies: + * Delete navigation property customWorkflowExtensions for identityGovernance * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an accessPackageAssignmentRequestWorkflowExtension object. The custom workflow extension must first be removed from any associated policies before it can be deleted. Follow these steps to remove the custom workflow extension from any associated policies: + * Delete navigation property customWorkflowExtensions for identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of an accessPackageAssignmentRequestWorkflowExtension object. + * Get customWorkflowExtensions from identityGovernance * @return a {@link CustomCalloutExtension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CustomCalloutExtension get() { return get(null); } /** - * Read the properties and relationships of an accessPackageAssignmentRequestWorkflowExtension object. + * Get customWorkflowExtensions from identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CustomCalloutExtension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CustomCalloutExtension get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public CustomCalloutExtension get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, CustomCalloutExtension::createFromDiscriminatorValue); } /** - * Update the properties of an accessPackageAssignmentWorkflowExtension object. + * Update the navigation property customWorkflowExtensions in identityGovernance * @param body The request body * @return a {@link CustomCalloutExtension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CustomCalloutExtension patch(@jakarta.annotation.Nonnull final CustomCalloutExtension body) { return patch(body, null); } /** - * Update the properties of an accessPackageAssignmentWorkflowExtension object. + * Update the navigation property customWorkflowExtensions in identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CustomCalloutExtension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CustomCalloutExtension patch(@jakarta.annotation.Nonnull final CustomCalloutExtension body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public CustomCalloutExtension patch(@jakarta.annotation.Nonnull final CustomCall return this.requestAdapter.send(requestInfo, errorMapping, CustomCalloutExtension::createFromDiscriminatorValue); } /** - * Delete an accessPackageAssignmentRequestWorkflowExtension object. The custom workflow extension must first be removed from any associated policies before it can be deleted. Follow these steps to remove the custom workflow extension from any associated policies: + * Delete navigation property customWorkflowExtensions for identityGovernance * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an accessPackageAssignmentRequestWorkflowExtension object. The custom workflow extension must first be removed from any associated policies before it can be deleted. Follow these steps to remove the custom workflow extension from any associated policies: + * Delete navigation property customWorkflowExtensions for identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of an accessPackageAssignmentRequestWorkflowExtension object. + * Get customWorkflowExtensions from identityGovernance * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of an accessPackageAssignmentRequestWorkflowExtension object. + * Get customWorkflowExtensions from identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an accessPackageAssignmentWorkflowExtension object. + * Update the navigation property customWorkflowExtensions in identityGovernance * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an accessPackageAssignmentWorkflowExtension object. + * Update the navigation property customWorkflowExtensions in identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public CustomCalloutExtensionItemRequestBuilder withUrl(@jakarta.annotation.Nonn public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of an accessPackageAssignmentRequestWorkflowExtension object. + * Get customWorkflowExtensions from identityGovernance */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/catalogs/item/resourceroles/ResourceRolesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/catalogs/item/resourceroles/ResourceRolesRequestBuilder.java index f97bbeae5a3..c75bc621734 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/catalogs/item/resourceroles/ResourceRolesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/catalogs/item/resourceroles/ResourceRolesRequestBuilder.java @@ -60,21 +60,19 @@ public ResourceRolesRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog%2Did}/resourceRoles{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of accessPackageResourceRole objects of an accessPackageResource in an accessPackageCatalog. The resource should have been added to the catalog by creating an accessPackageResourceRequest. This list of roles can then be used by the caller to select a role, which is needed when subsequently creating an accessPackageResourceRoleScope. + * Get resourceRoles from identityGovernance * @return a {@link AccessPackageResourceRoleCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageResourceRoleCollectionResponse get() { return get(null); } /** - * Retrieve a list of accessPackageResourceRole objects of an accessPackageResource in an accessPackageCatalog. The resource should have been added to the catalog by creating an accessPackageResourceRequest. This list of roles can then be used by the caller to select a role, which is needed when subsequently creating an accessPackageResourceRoleScope. + * Get resourceRoles from identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessPackageResourceRoleCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageResourceRoleCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public AccessPackageResourceRole post(@jakarta.annotation.Nonnull final AccessPa return this.requestAdapter.send(requestInfo, errorMapping, AccessPackageResourceRole::createFromDiscriminatorValue); } /** - * Retrieve a list of accessPackageResourceRole objects of an accessPackageResource in an accessPackageCatalog. The resource should have been added to the catalog by creating an accessPackageResourceRequest. This list of roles can then be used by the caller to select a role, which is needed when subsequently creating an accessPackageResourceRoleScope. + * Get resourceRoles from identityGovernance * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of accessPackageResourceRole objects of an accessPackageResource in an accessPackageCatalog. The resource should have been added to the catalog by creating an accessPackageResourceRequest. This list of roles can then be used by the caller to select a role, which is needed when subsequently creating an accessPackageResourceRoleScope. + * Get resourceRoles from identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public ResourceRolesRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new ResourceRolesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of accessPackageResourceRole objects of an accessPackageResource in an accessPackageCatalog. The resource should have been added to the catalog by creating an accessPackageResourceRequest. This list of roles can then be used by the caller to select a role, which is needed when subsequently creating an accessPackageResourceRoleScope. + * Get resourceRoles from identityGovernance */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/catalogs/item/resources/ResourcesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/catalogs/item/resources/ResourcesRequestBuilder.java index d18cca18633..1a448c1df76 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/catalogs/item/resources/ResourcesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/catalogs/item/resources/ResourcesRequestBuilder.java @@ -60,21 +60,19 @@ public ResourcesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog%2Did}/resources{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of accessPackageResource objects in an accessPackageCatalog. + * Access package resources in this catalog. * @return a {@link AccessPackageResourceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageResourceCollectionResponse get() { return get(null); } /** - * Retrieve a list of accessPackageResource objects in an accessPackageCatalog. + * Access package resources in this catalog. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessPackageResourceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageResourceCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public AccessPackageResource post(@jakarta.annotation.Nonnull final AccessPackag return this.requestAdapter.send(requestInfo, errorMapping, AccessPackageResource::createFromDiscriminatorValue); } /** - * Retrieve a list of accessPackageResource objects in an accessPackageCatalog. + * Access package resources in this catalog. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of accessPackageResource objects in an accessPackageCatalog. + * Access package resources in this catalog. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public ResourcesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ResourcesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of accessPackageResource objects in an accessPackageCatalog. + * Access package resources in this catalog. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/connectedorganizations/ConnectedOrganizationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/connectedorganizations/ConnectedOrganizationsRequestBuilder.java index f4a70dd99f8..867d353fbb4 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/connectedorganizations/ConnectedOrganizationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/connectedorganizations/ConnectedOrganizationsRequestBuilder.java @@ -60,21 +60,19 @@ public ConnectedOrganizationsRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/identityGovernance/entitlementManagement/connectedOrganizations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of connectedOrganization objects. + * References to a directory or domain of another organization whose users can request access. * @return a {@link ConnectedOrganizationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConnectedOrganizationCollectionResponse get() { return get(null); } /** - * Retrieve a list of connectedOrganization objects. + * References to a directory or domain of another organization whose users can request access. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConnectedOrganizationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConnectedOrganizationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public ConnectedOrganizationCollectionResponse get(@jakarta.annotation.Nullable return this.requestAdapter.send(requestInfo, errorMapping, ConnectedOrganizationCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new connectedOrganization object. + * Create new navigation property to connectedOrganizations for identityGovernance * @param body The request body * @return a {@link ConnectedOrganization} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConnectedOrganization post(@jakarta.annotation.Nonnull final ConnectedOrganization body) { return post(body, null); } /** - * Create a new connectedOrganization object. + * Create new navigation property to connectedOrganizations for identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConnectedOrganization} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConnectedOrganization post(@jakarta.annotation.Nonnull final ConnectedOrganization body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public ConnectedOrganization post(@jakarta.annotation.Nonnull final ConnectedOrg return this.requestAdapter.send(requestInfo, errorMapping, ConnectedOrganization::createFromDiscriminatorValue); } /** - * Retrieve a list of connectedOrganization objects. + * References to a directory or domain of another organization whose users can request access. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of connectedOrganization objects. + * References to a directory or domain of another organization whose users can request access. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new connectedOrganization object. + * Create new navigation property to connectedOrganizations for identityGovernance * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new connectedOrganization object. + * Create new navigation property to connectedOrganizations for identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ConnectedOrganizationsRequestBuilder withUrl(@jakarta.annotation.Nonnull return new ConnectedOrganizationsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of connectedOrganization objects. + * References to a directory or domain of another organization whose users can request access. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/connectedorganizations/item/ConnectedOrganizationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/connectedorganizations/item/ConnectedOrganizationItemRequestBuilder.java index 3b76be0130a..3366010da05 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/connectedorganizations/item/ConnectedOrganizationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/connectedorganizations/item/ConnectedOrganizationItemRequestBuilder.java @@ -55,18 +55,16 @@ public ConnectedOrganizationItemRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a connectedOrganization object. + * Delete navigation property connectedOrganizations for identityGovernance * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a connectedOrganization object. + * Delete navigation property connectedOrganizations for identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -75,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a connectedOrganization object. + * References to a directory or domain of another organization whose users can request access. * @return a {@link ConnectedOrganization} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConnectedOrganization get() { return get(null); } /** - * Retrieve the properties and relationships of a connectedOrganization object. + * References to a directory or domain of another organization whose users can request access. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConnectedOrganization} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConnectedOrganization get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -99,23 +95,21 @@ public ConnectedOrganization get(@jakarta.annotation.Nullable final java.util.fu return this.requestAdapter.send(requestInfo, errorMapping, ConnectedOrganization::createFromDiscriminatorValue); } /** - * Update a connectedOrganization object to change one or more of its properties. + * Update the navigation property connectedOrganizations in identityGovernance * @param body The request body * @return a {@link ConnectedOrganization} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConnectedOrganization patch(@jakarta.annotation.Nonnull final ConnectedOrganization body) { return patch(body, null); } /** - * Update a connectedOrganization object to change one or more of its properties. + * Update the navigation property connectedOrganizations in identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConnectedOrganization} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConnectedOrganization patch(@jakarta.annotation.Nonnull final ConnectedOrganization body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +120,7 @@ public ConnectedOrganization patch(@jakarta.annotation.Nonnull final ConnectedOr return this.requestAdapter.send(requestInfo, errorMapping, ConnectedOrganization::createFromDiscriminatorValue); } /** - * Delete a connectedOrganization object. + * Delete navigation property connectedOrganizations for identityGovernance * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +128,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a connectedOrganization object. + * Delete navigation property connectedOrganizations for identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a connectedOrganization object. + * References to a directory or domain of another organization whose users can request access. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -154,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a connectedOrganization object. + * References to a directory or domain of another organization whose users can request access. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update a connectedOrganization object to change one or more of its properties. + * Update the navigation property connectedOrganizations in identityGovernance * @param body The request body * @return a {@link RequestInformation} */ @@ -175,7 +169,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update a connectedOrganization object to change one or more of its properties. + * Update the navigation property connectedOrganizations in identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -206,7 +200,7 @@ public ConnectedOrganizationItemRequestBuilder withUrl(@jakarta.annotation.Nonnu public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a connectedOrganization object. + * References to a directory or domain of another organization whose users can request access. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/connectedorganizations/item/externalsponsors/ExternalSponsorsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/connectedorganizations/item/externalsponsors/ExternalSponsorsRequestBuilder.java index b56dbc54b75..c5ae60be5ac 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/connectedorganizations/item/externalsponsors/ExternalSponsorsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/connectedorganizations/item/externalsponsors/ExternalSponsorsRequestBuilder.java @@ -68,21 +68,19 @@ public ExternalSponsorsRequestBuilder(@jakarta.annotation.Nonnull final String r super(requestAdapter, "{+baseurl}/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization%2Did}/externalSponsors{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of a connectedOrganization's external sponsors. The external sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Get externalSponsors from identityGovernance * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get() { return get(null); } /** - * Retrieve a list of a connectedOrganization's external sponsors. The external sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Get externalSponsors from identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -92,7 +90,7 @@ public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, DirectoryObjectCollectionResponse::createFromDiscriminatorValue); } /** - * Retrieve a list of a connectedOrganization's external sponsors. The external sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Get externalSponsors from identityGovernance * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -100,7 +98,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of a connectedOrganization's external sponsors. The external sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Get externalSponsors from identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -122,7 +120,7 @@ public ExternalSponsorsRequestBuilder withUrl(@jakarta.annotation.Nonnull final return new ExternalSponsorsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of a connectedOrganization's external sponsors. The external sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Get externalSponsors from identityGovernance */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/connectedorganizations/item/externalsponsors/item/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/connectedorganizations/item/externalsponsors/item/ref/RefRequestBuilder.java index 225f10e18b7..c5f7ea8cb08 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/connectedorganizations/item/externalsponsors/item/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/connectedorganizations/item/externalsponsors/item/ref/RefRequestBuilder.java @@ -35,18 +35,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization%2Did}/externalSponsors/{directoryObject%2Did}/$ref", rawUrl); } /** - * Remove a user or a group from the connected organization's external sponsors. The external sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Delete ref of navigation property externalSponsors for identityGovernance * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove a user or a group from the connected organization's external sponsors. The external sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Delete ref of navigation property externalSponsors for identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -55,7 +53,7 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove a user or a group from the connected organization's external sponsors. The external sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Delete ref of navigation property externalSponsors for identityGovernance * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -63,7 +61,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove a user or a group from the connected organization's external sponsors. The external sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Delete ref of navigation property externalSponsors for identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/connectedorganizations/item/externalsponsors/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/connectedorganizations/item/externalsponsors/ref/RefRequestBuilder.java index 28fc4687941..5899d191b7d 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/connectedorganizations/item/externalsponsors/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/connectedorganizations/item/externalsponsors/ref/RefRequestBuilder.java @@ -38,18 +38,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization%2Did}/externalSponsors/$ref?@id={%40id}{&%24count,%24filter,%24orderby,%24search,%24skip,%24top}", rawUrl); } /** - * Remove a user or a group from the connected organization's external sponsors. The external sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Delete ref of navigation property externalSponsors for identityGovernance * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove a user or a group from the connected organization's external sponsors. The external sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Delete ref of navigation property externalSponsors for identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -58,21 +56,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a list of a connectedOrganization's external sponsors. The external sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Get ref of externalSponsors from identityGovernance * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get() { return get(null); } /** - * Retrieve a list of a connectedOrganization's external sponsors. The external sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Get ref of externalSponsors from identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -82,20 +78,18 @@ public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util return this.requestAdapter.send(requestInfo, errorMapping, StringCollectionResponse::createFromDiscriminatorValue); } /** - * Add a user or a group to the connected organization's external sponsors. The external sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Create new navigation property ref to externalSponsors for identityGovernance * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body) { post(body, null); } /** - * Add a user or a group to the connected organization's external sponsors. The external sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Create new navigation property ref to externalSponsors for identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { Objects.requireNonNull(body); @@ -105,7 +99,7 @@ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakart this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove a user or a group from the connected organization's external sponsors. The external sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Delete ref of navigation property externalSponsors for identityGovernance * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -113,7 +107,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove a user or a group from the connected organization's external sponsors. The external sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Delete ref of navigation property externalSponsors for identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a list of a connectedOrganization's external sponsors. The external sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Get ref of externalSponsors from identityGovernance * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -133,7 +127,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of a connectedOrganization's external sponsors. The external sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Get ref of externalSponsors from identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add a user or a group to the connected organization's external sponsors. The external sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Create new navigation property ref to externalSponsors for identityGovernance * @param body The request body * @return a {@link RequestInformation} */ @@ -154,7 +148,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add a user or a group to the connected organization's external sponsors. The external sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Create new navigation property ref to externalSponsors for identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -179,7 +173,7 @@ public RefRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl return new RefRequestBuilder(rawUrl, requestAdapter); } /** - * Remove a user or a group from the connected organization's external sponsors. The external sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Delete ref of navigation property externalSponsors for identityGovernance */ @jakarta.annotation.Generated("com.microsoft.kiota") public class DeleteQueryParameters implements QueryParameters { @@ -211,7 +205,7 @@ public class DeleteRequestConfiguration extends BaseRequestConfiguration { public DeleteQueryParameters queryParameters = new DeleteQueryParameters(); } /** - * Retrieve a list of a connectedOrganization's external sponsors. The external sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Get ref of externalSponsors from identityGovernance */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/connectedorganizations/item/internalsponsors/InternalSponsorsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/connectedorganizations/item/internalsponsors/InternalSponsorsRequestBuilder.java index ff8eb44f8d3..16279d0b822 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/connectedorganizations/item/internalsponsors/InternalSponsorsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/connectedorganizations/item/internalsponsors/InternalSponsorsRequestBuilder.java @@ -68,21 +68,19 @@ public InternalSponsorsRequestBuilder(@jakarta.annotation.Nonnull final String r super(requestAdapter, "{+baseurl}/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization%2Did}/internalSponsors{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of a connectedOrganization's internal sponsors. The internal sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Get internalSponsors from identityGovernance * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get() { return get(null); } /** - * Retrieve a list of a connectedOrganization's internal sponsors. The internal sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Get internalSponsors from identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -92,7 +90,7 @@ public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, DirectoryObjectCollectionResponse::createFromDiscriminatorValue); } /** - * Retrieve a list of a connectedOrganization's internal sponsors. The internal sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Get internalSponsors from identityGovernance * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -100,7 +98,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of a connectedOrganization's internal sponsors. The internal sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Get internalSponsors from identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -122,7 +120,7 @@ public InternalSponsorsRequestBuilder withUrl(@jakarta.annotation.Nonnull final return new InternalSponsorsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of a connectedOrganization's internal sponsors. The internal sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Get internalSponsors from identityGovernance */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/connectedorganizations/item/internalsponsors/item/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/connectedorganizations/item/internalsponsors/item/ref/RefRequestBuilder.java index 881338153eb..5a96f9e4142 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/connectedorganizations/item/internalsponsors/item/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/connectedorganizations/item/internalsponsors/item/ref/RefRequestBuilder.java @@ -35,18 +35,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization%2Did}/internalSponsors/{directoryObject%2Did}/$ref", rawUrl); } /** - * Remove a user or a group from the connected organization's internal sponsors. The internal sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Delete ref of navigation property internalSponsors for identityGovernance * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove a user or a group from the connected organization's internal sponsors. The internal sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Delete ref of navigation property internalSponsors for identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -55,7 +53,7 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove a user or a group from the connected organization's internal sponsors. The internal sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Delete ref of navigation property internalSponsors for identityGovernance * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -63,7 +61,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove a user or a group from the connected organization's internal sponsors. The internal sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Delete ref of navigation property internalSponsors for identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/connectedorganizations/item/internalsponsors/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/connectedorganizations/item/internalsponsors/ref/RefRequestBuilder.java index c289b312046..b7a2f964612 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/connectedorganizations/item/internalsponsors/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/connectedorganizations/item/internalsponsors/ref/RefRequestBuilder.java @@ -38,18 +38,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization%2Did}/internalSponsors/$ref?@id={%40id}{&%24count,%24filter,%24orderby,%24search,%24skip,%24top}", rawUrl); } /** - * Remove a user or a group from the connected organization's internal sponsors. The internal sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Delete ref of navigation property internalSponsors for identityGovernance * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove a user or a group from the connected organization's internal sponsors. The internal sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Delete ref of navigation property internalSponsors for identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -58,21 +56,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a list of a connectedOrganization's internal sponsors. The internal sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Get ref of internalSponsors from identityGovernance * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get() { return get(null); } /** - * Retrieve a list of a connectedOrganization's internal sponsors. The internal sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Get ref of internalSponsors from identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -82,20 +78,18 @@ public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util return this.requestAdapter.send(requestInfo, errorMapping, StringCollectionResponse::createFromDiscriminatorValue); } /** - * Add a user or a group to the connected organization's internal sponsors. The internal sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Create new navigation property ref to internalSponsors for identityGovernance * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body) { post(body, null); } /** - * Add a user or a group to the connected organization's internal sponsors. The internal sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Create new navigation property ref to internalSponsors for identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { Objects.requireNonNull(body); @@ -105,7 +99,7 @@ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakart this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove a user or a group from the connected organization's internal sponsors. The internal sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Delete ref of navigation property internalSponsors for identityGovernance * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -113,7 +107,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove a user or a group from the connected organization's internal sponsors. The internal sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Delete ref of navigation property internalSponsors for identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a list of a connectedOrganization's internal sponsors. The internal sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Get ref of internalSponsors from identityGovernance * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -133,7 +127,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of a connectedOrganization's internal sponsors. The internal sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Get ref of internalSponsors from identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add a user or a group to the connected organization's internal sponsors. The internal sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Create new navigation property ref to internalSponsors for identityGovernance * @param body The request body * @return a {@link RequestInformation} */ @@ -154,7 +148,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add a user or a group to the connected organization's internal sponsors. The internal sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Create new navigation property ref to internalSponsors for identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -179,7 +173,7 @@ public RefRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl return new RefRequestBuilder(rawUrl, requestAdapter); } /** - * Remove a user or a group from the connected organization's internal sponsors. The internal sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Delete ref of navigation property internalSponsors for identityGovernance */ @jakarta.annotation.Generated("com.microsoft.kiota") public class DeleteQueryParameters implements QueryParameters { @@ -211,7 +205,7 @@ public class DeleteRequestConfiguration extends BaseRequestConfiguration { public DeleteQueryParameters queryParameters = new DeleteQueryParameters(); } /** - * Retrieve a list of a connectedOrganization's internal sponsors. The internal sponsors are a set of users who can approve requests on behalf of other users from that connected organization. + * Get ref of internalSponsors from identityGovernance */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/resourceenvironments/ResourceEnvironmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/resourceenvironments/ResourceEnvironmentsRequestBuilder.java index 2523bfcee9c..a5a81a54af4 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/resourceenvironments/ResourceEnvironmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/resourceenvironments/ResourceEnvironmentsRequestBuilder.java @@ -60,21 +60,19 @@ public ResourceEnvironmentsRequestBuilder(@jakarta.annotation.Nonnull final Stri super(requestAdapter, "{+baseurl}/identityGovernance/entitlementManagement/resourceEnvironments{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of accessPackageResourceEnvironment objects and their properties. + * A reference to the geolocation environments in which a resource is located. * @return a {@link AccessPackageResourceEnvironmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageResourceEnvironmentCollectionResponse get() { return get(null); } /** - * Retrieve a list of accessPackageResourceEnvironment objects and their properties. + * A reference to the geolocation environments in which a resource is located. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessPackageResourceEnvironmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageResourceEnvironmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public AccessPackageResourceEnvironment post(@jakarta.annotation.Nonnull final A return this.requestAdapter.send(requestInfo, errorMapping, AccessPackageResourceEnvironment::createFromDiscriminatorValue); } /** - * Retrieve a list of accessPackageResourceEnvironment objects and their properties. + * A reference to the geolocation environments in which a resource is located. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of accessPackageResourceEnvironment objects and their properties. + * A reference to the geolocation environments in which a resource is located. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public ResourceEnvironmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull fi return new ResourceEnvironmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of accessPackageResourceEnvironment objects and their properties. + * A reference to the geolocation environments in which a resource is located. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/resourcerequests/ResourceRequestsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/resourcerequests/ResourceRequestsRequestBuilder.java index 07c28217eda..80de824d700 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/resourcerequests/ResourceRequestsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/resourcerequests/ResourceRequestsRequestBuilder.java @@ -60,21 +60,19 @@ public ResourceRequestsRequestBuilder(@jakarta.annotation.Nonnull final String r super(requestAdapter, "{+baseurl}/identityGovernance/entitlementManagement/resourceRequests{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of accessPackageResourceRequest objects. + * Represents a request to add or remove a resource to or from a catalog respectively. * @return a {@link AccessPackageResourceRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageResourceRequestCollectionResponse get() { return get(null); } /** - * Retrieve a list of accessPackageResourceRequest objects. + * Represents a request to add or remove a resource to or from a catalog respectively. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessPackageResourceRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageResourceRequestCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public AccessPackageResourceRequestCollectionResponse get(@jakarta.annotation.Nu return this.requestAdapter.send(requestInfo, errorMapping, AccessPackageResourceRequestCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new accessPackageResourceRequest object to request the addition of a resource to an access package catalog, update of a resource, or the removal of a resource from a catalog. A resource must be included in an access package catalog before a role of that resource can be added to an access package. + * Create new navigation property to resourceRequests for identityGovernance * @param body The request body * @return a {@link AccessPackageResourceRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageResourceRequest post(@jakarta.annotation.Nonnull final AccessPackageResourceRequest body) { return post(body, null); } /** - * Create a new accessPackageResourceRequest object to request the addition of a resource to an access package catalog, update of a resource, or the removal of a resource from a catalog. A resource must be included in an access package catalog before a role of that resource can be added to an access package. + * Create new navigation property to resourceRequests for identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessPackageResourceRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageResourceRequest post(@jakarta.annotation.Nonnull final AccessPackageResourceRequest body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public AccessPackageResourceRequest post(@jakarta.annotation.Nonnull final Acces return this.requestAdapter.send(requestInfo, errorMapping, AccessPackageResourceRequest::createFromDiscriminatorValue); } /** - * Retrieve a list of accessPackageResourceRequest objects. + * Represents a request to add or remove a resource to or from a catalog respectively. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of accessPackageResourceRequest objects. + * Represents a request to add or remove a resource to or from a catalog respectively. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new accessPackageResourceRequest object to request the addition of a resource to an access package catalog, update of a resource, or the removal of a resource from a catalog. A resource must be included in an access package catalog before a role of that resource can be added to an access package. + * Create new navigation property to resourceRequests for identityGovernance * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new accessPackageResourceRequest object to request the addition of a resource to an access package catalog, update of a resource, or the removal of a resource from a catalog. A resource must be included in an access package catalog before a role of that resource can be added to an access package. + * Create new navigation property to resourceRequests for identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ResourceRequestsRequestBuilder withUrl(@jakarta.annotation.Nonnull final return new ResourceRequestsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of accessPackageResourceRequest objects. + * Represents a request to add or remove a resource to or from a catalog respectively. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/resourcerequests/item/catalog/customworkflowextensions/CustomWorkflowExtensionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/resourcerequests/item/catalog/customworkflowextensions/CustomWorkflowExtensionsRequestBuilder.java index aa1773bd575..fe273b8bf1a 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/resourcerequests/item/catalog/customworkflowextensions/CustomWorkflowExtensionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/resourcerequests/item/catalog/customworkflowextensions/CustomWorkflowExtensionsRequestBuilder.java @@ -60,21 +60,19 @@ public CustomWorkflowExtensionsRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest%2Did}/catalog/customWorkflowExtensions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the accessPackageAssignmentRequestWorkflowExtension and accessPackageAssignmentWorkflowExtension objects and their properties. The resulting list includes all the customAccessPackageWorkflowExtension objects for the catalog that the caller has access to read. Each object includes an @odata.type property that indicates whether the object is an accessPackageAssignmentRequestWorkflowExtension or an accessPackageAssignmentWorkflowExtension. + * Get customWorkflowExtensions from identityGovernance * @return a {@link CustomCalloutExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CustomCalloutExtensionCollectionResponse get() { return get(null); } /** - * Get a list of the accessPackageAssignmentRequestWorkflowExtension and accessPackageAssignmentWorkflowExtension objects and their properties. The resulting list includes all the customAccessPackageWorkflowExtension objects for the catalog that the caller has access to read. Each object includes an @odata.type property that indicates whether the object is an accessPackageAssignmentRequestWorkflowExtension or an accessPackageAssignmentWorkflowExtension. + * Get customWorkflowExtensions from identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CustomCalloutExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CustomCalloutExtensionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public CustomCalloutExtensionCollectionResponse get(@jakarta.annotation.Nullable return this.requestAdapter.send(requestInfo, errorMapping, CustomCalloutExtensionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new accessPackageAssignmentRequestWorkflowExtension or accessPackageAssignmentWorkflowExtension object and add it to an existing accessPackageCatalog object. You must explicitly provide an @odata.type property that indicates whether the object is an accessPackageAssignmentRequestWorkflowExtension or an accessPackageAssignmentWorkflowExtension. + * Create new navigation property to customWorkflowExtensions for identityGovernance * @param body The request body * @return a {@link CustomCalloutExtension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CustomCalloutExtension post(@jakarta.annotation.Nonnull final CustomCalloutExtension body) { return post(body, null); } /** - * Create a new accessPackageAssignmentRequestWorkflowExtension or accessPackageAssignmentWorkflowExtension object and add it to an existing accessPackageCatalog object. You must explicitly provide an @odata.type property that indicates whether the object is an accessPackageAssignmentRequestWorkflowExtension or an accessPackageAssignmentWorkflowExtension. + * Create new navigation property to customWorkflowExtensions for identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CustomCalloutExtension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CustomCalloutExtension post(@jakarta.annotation.Nonnull final CustomCalloutExtension body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public CustomCalloutExtension post(@jakarta.annotation.Nonnull final CustomCallo return this.requestAdapter.send(requestInfo, errorMapping, CustomCalloutExtension::createFromDiscriminatorValue); } /** - * Get a list of the accessPackageAssignmentRequestWorkflowExtension and accessPackageAssignmentWorkflowExtension objects and their properties. The resulting list includes all the customAccessPackageWorkflowExtension objects for the catalog that the caller has access to read. Each object includes an @odata.type property that indicates whether the object is an accessPackageAssignmentRequestWorkflowExtension or an accessPackageAssignmentWorkflowExtension. + * Get customWorkflowExtensions from identityGovernance * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the accessPackageAssignmentRequestWorkflowExtension and accessPackageAssignmentWorkflowExtension objects and their properties. The resulting list includes all the customAccessPackageWorkflowExtension objects for the catalog that the caller has access to read. Each object includes an @odata.type property that indicates whether the object is an accessPackageAssignmentRequestWorkflowExtension or an accessPackageAssignmentWorkflowExtension. + * Get customWorkflowExtensions from identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new accessPackageAssignmentRequestWorkflowExtension or accessPackageAssignmentWorkflowExtension object and add it to an existing accessPackageCatalog object. You must explicitly provide an @odata.type property that indicates whether the object is an accessPackageAssignmentRequestWorkflowExtension or an accessPackageAssignmentWorkflowExtension. + * Create new navigation property to customWorkflowExtensions for identityGovernance * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new accessPackageAssignmentRequestWorkflowExtension or accessPackageAssignmentWorkflowExtension object and add it to an existing accessPackageCatalog object. You must explicitly provide an @odata.type property that indicates whether the object is an accessPackageAssignmentRequestWorkflowExtension or an accessPackageAssignmentWorkflowExtension. + * Create new navigation property to customWorkflowExtensions for identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public CustomWorkflowExtensionsRequestBuilder withUrl(@jakarta.annotation.Nonnul return new CustomWorkflowExtensionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the accessPackageAssignmentRequestWorkflowExtension and accessPackageAssignmentWorkflowExtension objects and their properties. The resulting list includes all the customAccessPackageWorkflowExtension objects for the catalog that the caller has access to read. Each object includes an @odata.type property that indicates whether the object is an accessPackageAssignmentRequestWorkflowExtension or an accessPackageAssignmentWorkflowExtension. + * Get customWorkflowExtensions from identityGovernance */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/resourcerequests/item/catalog/customworkflowextensions/item/CustomCalloutExtensionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/resourcerequests/item/catalog/customworkflowextensions/item/CustomCalloutExtensionItemRequestBuilder.java index 90595deaa1a..9014954c6a9 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/resourcerequests/item/catalog/customworkflowextensions/item/CustomCalloutExtensionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/resourcerequests/item/catalog/customworkflowextensions/item/CustomCalloutExtensionItemRequestBuilder.java @@ -37,18 +37,16 @@ public CustomCalloutExtensionItemRequestBuilder(@jakarta.annotation.Nonnull fina super(requestAdapter, "{+baseurl}/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest%2Did}/catalog/customWorkflowExtensions/{customCalloutExtension%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an accessPackageAssignmentRequestWorkflowExtension object. The custom workflow extension must first be removed from any associated policies before it can be deleted. Follow these steps to remove the custom workflow extension from any associated policies: + * Delete navigation property customWorkflowExtensions for identityGovernance * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an accessPackageAssignmentRequestWorkflowExtension object. The custom workflow extension must first be removed from any associated policies before it can be deleted. Follow these steps to remove the custom workflow extension from any associated policies: + * Delete navigation property customWorkflowExtensions for identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of an accessPackageAssignmentRequestWorkflowExtension object. + * Get customWorkflowExtensions from identityGovernance * @return a {@link CustomCalloutExtension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CustomCalloutExtension get() { return get(null); } /** - * Read the properties and relationships of an accessPackageAssignmentRequestWorkflowExtension object. + * Get customWorkflowExtensions from identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CustomCalloutExtension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CustomCalloutExtension get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public CustomCalloutExtension get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, CustomCalloutExtension::createFromDiscriminatorValue); } /** - * Update the properties of an accessPackageAssignmentWorkflowExtension object. + * Update the navigation property customWorkflowExtensions in identityGovernance * @param body The request body * @return a {@link CustomCalloutExtension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CustomCalloutExtension patch(@jakarta.annotation.Nonnull final CustomCalloutExtension body) { return patch(body, null); } /** - * Update the properties of an accessPackageAssignmentWorkflowExtension object. + * Update the navigation property customWorkflowExtensions in identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CustomCalloutExtension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CustomCalloutExtension patch(@jakarta.annotation.Nonnull final CustomCalloutExtension body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public CustomCalloutExtension patch(@jakarta.annotation.Nonnull final CustomCall return this.requestAdapter.send(requestInfo, errorMapping, CustomCalloutExtension::createFromDiscriminatorValue); } /** - * Delete an accessPackageAssignmentRequestWorkflowExtension object. The custom workflow extension must first be removed from any associated policies before it can be deleted. Follow these steps to remove the custom workflow extension from any associated policies: + * Delete navigation property customWorkflowExtensions for identityGovernance * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an accessPackageAssignmentRequestWorkflowExtension object. The custom workflow extension must first be removed from any associated policies before it can be deleted. Follow these steps to remove the custom workflow extension from any associated policies: + * Delete navigation property customWorkflowExtensions for identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of an accessPackageAssignmentRequestWorkflowExtension object. + * Get customWorkflowExtensions from identityGovernance * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of an accessPackageAssignmentRequestWorkflowExtension object. + * Get customWorkflowExtensions from identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an accessPackageAssignmentWorkflowExtension object. + * Update the navigation property customWorkflowExtensions in identityGovernance * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an accessPackageAssignmentWorkflowExtension object. + * Update the navigation property customWorkflowExtensions in identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public CustomCalloutExtensionItemRequestBuilder withUrl(@jakarta.annotation.Nonn public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of an accessPackageAssignmentRequestWorkflowExtension object. + * Get customWorkflowExtensions from identityGovernance */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/resourcerequests/item/catalog/resourceroles/ResourceRolesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/resourcerequests/item/catalog/resourceroles/ResourceRolesRequestBuilder.java index 7542fbe2e1d..dd7775bb38b 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/resourcerequests/item/catalog/resourceroles/ResourceRolesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/resourcerequests/item/catalog/resourceroles/ResourceRolesRequestBuilder.java @@ -60,21 +60,19 @@ public ResourceRolesRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest%2Did}/catalog/resourceRoles{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of accessPackageResourceRole objects of an accessPackageResource in an accessPackageCatalog. The resource should have been added to the catalog by creating an accessPackageResourceRequest. This list of roles can then be used by the caller to select a role, which is needed when subsequently creating an accessPackageResourceRoleScope. + * Get resourceRoles from identityGovernance * @return a {@link AccessPackageResourceRoleCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageResourceRoleCollectionResponse get() { return get(null); } /** - * Retrieve a list of accessPackageResourceRole objects of an accessPackageResource in an accessPackageCatalog. The resource should have been added to the catalog by creating an accessPackageResourceRequest. This list of roles can then be used by the caller to select a role, which is needed when subsequently creating an accessPackageResourceRoleScope. + * Get resourceRoles from identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessPackageResourceRoleCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageResourceRoleCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public AccessPackageResourceRole post(@jakarta.annotation.Nonnull final AccessPa return this.requestAdapter.send(requestInfo, errorMapping, AccessPackageResourceRole::createFromDiscriminatorValue); } /** - * Retrieve a list of accessPackageResourceRole objects of an accessPackageResource in an accessPackageCatalog. The resource should have been added to the catalog by creating an accessPackageResourceRequest. This list of roles can then be used by the caller to select a role, which is needed when subsequently creating an accessPackageResourceRoleScope. + * Get resourceRoles from identityGovernance * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of accessPackageResourceRole objects of an accessPackageResource in an accessPackageCatalog. The resource should have been added to the catalog by creating an accessPackageResourceRequest. This list of roles can then be used by the caller to select a role, which is needed when subsequently creating an accessPackageResourceRoleScope. + * Get resourceRoles from identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public ResourceRolesRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new ResourceRolesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of accessPackageResourceRole objects of an accessPackageResource in an accessPackageCatalog. The resource should have been added to the catalog by creating an accessPackageResourceRequest. This list of roles can then be used by the caller to select a role, which is needed when subsequently creating an accessPackageResourceRoleScope. + * Get resourceRoles from identityGovernance */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/resourcerequests/item/catalog/resources/ResourcesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/resourcerequests/item/catalog/resources/ResourcesRequestBuilder.java index 87d73e86318..181b8b2d317 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/resourcerequests/item/catalog/resources/ResourcesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/resourcerequests/item/catalog/resources/ResourcesRequestBuilder.java @@ -60,21 +60,19 @@ public ResourcesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest%2Did}/catalog/resources{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of accessPackageResource objects in an accessPackageCatalog. + * Access package resources in this catalog. * @return a {@link AccessPackageResourceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageResourceCollectionResponse get() { return get(null); } /** - * Retrieve a list of accessPackageResource objects in an accessPackageCatalog. + * Access package resources in this catalog. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AccessPackageResourceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AccessPackageResourceCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public AccessPackageResource post(@jakarta.annotation.Nonnull final AccessPackag return this.requestAdapter.send(requestInfo, errorMapping, AccessPackageResource::createFromDiscriminatorValue); } /** - * Retrieve a list of accessPackageResource objects in an accessPackageCatalog. + * Access package resources in this catalog. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of accessPackageResource objects in an accessPackageCatalog. + * Access package resources in this catalog. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public ResourcesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ResourcesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of accessPackageResource objects in an accessPackageCatalog. + * Access package resources in this catalog. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/settings/SettingsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/settings/SettingsRequestBuilder.java index f4c2e64d8d9..5767680b826 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/settings/SettingsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/entitlementmanagement/settings/SettingsRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties of an entitlementManagementSettings object. + * The settings that control the behavior of Microsoft Entra entitlement management. * @return a {@link EntitlementManagementSettings} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EntitlementManagementSettings get() { return get(null); } /** - * Retrieve the properties of an entitlementManagementSettings object. + * The settings that control the behavior of Microsoft Entra entitlement management. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EntitlementManagementSettings} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EntitlementManagementSettings get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public EntitlementManagementSettings get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, EntitlementManagementSettings::createFromDiscriminatorValue); } /** - * Update an existing entitlementManagementSettings object to change one or more of its properties. + * Update the navigation property settings in identityGovernance * @param body The request body * @return a {@link EntitlementManagementSettings} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EntitlementManagementSettings patch(@jakarta.annotation.Nonnull final EntitlementManagementSettings body) { return patch(body, null); } /** - * Update an existing entitlementManagementSettings object to change one or more of its properties. + * Update the navigation property settings in identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EntitlementManagementSettings} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EntitlementManagementSettings patch(@jakarta.annotation.Nonnull final EntitlementManagementSettings body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties of an entitlementManagementSettings object. + * The settings that control the behavior of Microsoft Entra entitlement management. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties of an entitlementManagementSettings object. + * The settings that control the behavior of Microsoft Entra entitlement management. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update an existing entitlementManagementSettings object to change one or more of its properties. + * Update the navigation property settings in identityGovernance * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update an existing entitlementManagementSettings object to change one or more of its properties. + * Update the navigation property settings in identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public SettingsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties of an entitlementManagementSettings object. + * The settings that control the behavior of Microsoft Entra entitlement management. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/customtaskextensions/CustomTaskExtensionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/customtaskextensions/CustomTaskExtensionsRequestBuilder.java index 32c50a3c320..c34fa0efa39 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/customtaskextensions/CustomTaskExtensionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/customtaskextensions/CustomTaskExtensionsRequestBuilder.java @@ -60,21 +60,19 @@ public CustomTaskExtensionsRequestBuilder(@jakarta.annotation.Nonnull final Stri super(requestAdapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/customTaskExtensions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the customTaskExtension objects and their properties. + * The customTaskExtension instance. * @return a {@link CustomTaskExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CustomTaskExtensionCollectionResponse get() { return get(null); } /** - * Get a list of the customTaskExtension objects and their properties. + * The customTaskExtension instance. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CustomTaskExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CustomTaskExtensionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public CustomTaskExtensionCollectionResponse get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, CustomTaskExtensionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new customTaskExtension object. + * Create new navigation property to customTaskExtensions for identityGovernance * @param body The request body * @return a {@link CustomTaskExtension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CustomTaskExtension post(@jakarta.annotation.Nonnull final CustomTaskExtension body) { return post(body, null); } /** - * Create a new customTaskExtension object. + * Create new navigation property to customTaskExtensions for identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CustomTaskExtension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CustomTaskExtension post(@jakarta.annotation.Nonnull final CustomTaskExtension body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public CustomTaskExtension post(@jakarta.annotation.Nonnull final CustomTaskExte return this.requestAdapter.send(requestInfo, errorMapping, CustomTaskExtension::createFromDiscriminatorValue); } /** - * Get a list of the customTaskExtension objects and their properties. + * The customTaskExtension instance. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the customTaskExtension objects and their properties. + * The customTaskExtension instance. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new customTaskExtension object. + * Create new navigation property to customTaskExtensions for identityGovernance * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new customTaskExtension object. + * Create new navigation property to customTaskExtensions for identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public CustomTaskExtensionsRequestBuilder withUrl(@jakarta.annotation.Nonnull fi return new CustomTaskExtensionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the customTaskExtension objects and their properties. + * The customTaskExtension instance. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/customtaskextensions/item/CustomTaskExtensionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/customtaskextensions/item/CustomTaskExtensionItemRequestBuilder.java index 402bbff06bb..807391c1964 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/customtaskextensions/item/CustomTaskExtensionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/customtaskextensions/item/CustomTaskExtensionItemRequestBuilder.java @@ -55,18 +55,16 @@ public CustomTaskExtensionItemRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a customTaskExtension object. A custom task extension can only be deleted if it is not referenced in any task objects in a lifecycle workflow. + * Delete navigation property customTaskExtensions for identityGovernance * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a customTaskExtension object. A custom task extension can only be deleted if it is not referenced in any task objects in a lifecycle workflow. + * Delete navigation property customTaskExtensions for identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -75,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a customTaskExtension object. + * The customTaskExtension instance. * @return a {@link CustomTaskExtension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CustomTaskExtension get() { return get(null); } /** - * Read the properties and relationships of a customTaskExtension object. + * The customTaskExtension instance. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CustomTaskExtension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CustomTaskExtension get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -99,23 +95,21 @@ public CustomTaskExtension get(@jakarta.annotation.Nullable final java.util.func return this.requestAdapter.send(requestInfo, errorMapping, CustomTaskExtension::createFromDiscriminatorValue); } /** - * Update the properties of a customTaskExtension object. + * Update the navigation property customTaskExtensions in identityGovernance * @param body The request body * @return a {@link CustomTaskExtension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CustomTaskExtension patch(@jakarta.annotation.Nonnull final CustomTaskExtension body) { return patch(body, null); } /** - * Update the properties of a customTaskExtension object. + * Update the navigation property customTaskExtensions in identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CustomTaskExtension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CustomTaskExtension patch(@jakarta.annotation.Nonnull final CustomTaskExtension body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +120,7 @@ public CustomTaskExtension patch(@jakarta.annotation.Nonnull final CustomTaskExt return this.requestAdapter.send(requestInfo, errorMapping, CustomTaskExtension::createFromDiscriminatorValue); } /** - * Delete a customTaskExtension object. A custom task extension can only be deleted if it is not referenced in any task objects in a lifecycle workflow. + * Delete navigation property customTaskExtensions for identityGovernance * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +128,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a customTaskExtension object. A custom task extension can only be deleted if it is not referenced in any task objects in a lifecycle workflow. + * Delete navigation property customTaskExtensions for identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a customTaskExtension object. + * The customTaskExtension instance. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -154,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a customTaskExtension object. + * The customTaskExtension instance. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a customTaskExtension object. + * Update the navigation property customTaskExtensions in identityGovernance * @param body The request body * @return a {@link RequestInformation} */ @@ -175,7 +169,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a customTaskExtension object. + * Update the navigation property customTaskExtensions in identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -206,7 +200,7 @@ public CustomTaskExtensionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a customTaskExtension object. + * The customTaskExtension instance. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/WorkflowsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/WorkflowsRequestBuilder.java index dee6febbc2a..c3ebfc7b724 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/WorkflowsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/WorkflowsRequestBuilder.java @@ -59,21 +59,19 @@ public WorkflowsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/workflows{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the deleted workflow objects and their properties. + * Deleted workflows that end up in the deletedItemsContainer. * @return a {@link WorkflowCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkflowCollectionResponse get() { return get(null); } /** - * Get a list of the deleted workflow objects and their properties. + * Deleted workflows that end up in the deletedItemsContainer. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkflowCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkflowCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public WorkflowCollectionResponse get(@jakarta.annotation.Nullable final java.ut return this.requestAdapter.send(requestInfo, errorMapping, WorkflowCollectionResponse::createFromDiscriminatorValue); } /** - * Get a list of the deleted workflow objects and their properties. + * Deleted workflows that end up in the deletedItemsContainer. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the deleted workflow objects and their properties. + * Deleted workflows that end up in the deletedItemsContainer. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public WorkflowsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new WorkflowsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the deleted workflow objects and their properties. + * Deleted workflows that end up in the deletedItemsContainer. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/WorkflowItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/WorkflowItemRequestBuilder.java index 214e6a6fbb4..59020cc67b0 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/WorkflowItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/WorkflowItemRequestBuilder.java @@ -136,18 +136,16 @@ public WorkflowItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a workflow object. + * Delete navigation property workflows for identityGovernance * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a workflow object. + * Delete navigation property workflows for identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -156,21 +154,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a deleted workflow object. + * Deleted workflows that end up in the deletedItemsContainer. * @return a {@link Workflow} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Workflow get() { return get(null); } /** - * Retrieve a deleted workflow object. + * Deleted workflows that end up in the deletedItemsContainer. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Workflow} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Workflow get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -180,7 +176,7 @@ public Workflow get(@jakarta.annotation.Nullable final java.util.function.Consum return this.requestAdapter.send(requestInfo, errorMapping, Workflow::createFromDiscriminatorValue); } /** - * Delete a workflow object. + * Delete navigation property workflows for identityGovernance * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -188,7 +184,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a workflow object. + * Delete navigation property workflows for identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -200,7 +196,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a deleted workflow object. + * Deleted workflows that end up in the deletedItemsContainer. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -208,7 +204,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a deleted workflow object. + * Deleted workflows that end up in the deletedItemsContainer. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -236,7 +232,7 @@ public WorkflowItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve a deleted workflow object. + * Deleted workflows that end up in the deletedItemsContainer. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/runs/RunsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/runs/RunsRequestBuilder.java index 6d1528161fa..a27ed4a64a2 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/runs/RunsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/runs/RunsRequestBuilder.java @@ -61,21 +61,19 @@ public RunsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka super(requestAdapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow%2Did}/runs{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the run objects and their properties for a lifecycle workflow. + * Workflow runs. * @return a {@link RunCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RunCollectionResponse get() { return get(null); } /** - * Get a list of the run objects and their properties for a lifecycle workflow. + * Workflow runs. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RunCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RunCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -97,7 +95,7 @@ public MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRe return new MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder(pathParameters, requestAdapter, endDateTime, startDateTime); } /** - * Get a list of the run objects and their properties for a lifecycle workflow. + * Workflow runs. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -105,7 +103,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the run objects and their properties for a lifecycle workflow. + * Workflow runs. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -127,7 +125,7 @@ public RunsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr return new RunsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the run objects and their properties for a lifecycle workflow. + * Workflow runs. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/runs/item/RunItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/runs/item/RunItemRequestBuilder.java index f4b5881ec75..5197b567110 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/runs/item/RunItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/runs/item/RunItemRequestBuilder.java @@ -55,21 +55,19 @@ public RunItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow%2Did}/runs/{run%2Did}{?%24expand,%24select}", rawUrl); } /** - * Read the properties and relationships of a run object. + * Workflow runs. * @return a {@link Run} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Run get() { return get(null); } /** - * Read the properties and relationships of a run object. + * Workflow runs. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Run} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Run get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,7 +77,7 @@ public Run get(@jakarta.annotation.Nullable final java.util.function.ConsumerFind more info here */ @jakarta.annotation.Nullable public TaskProcessingResultCollectionResponse get() { return get(null); } /** - * Get the taskProcessingResult resources for a run. + * The related taskProcessingResults. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TaskProcessingResultCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TaskProcessingResultCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public TaskProcessingResultCollectionResponse get(@jakarta.annotation.Nullable f return this.requestAdapter.send(requestInfo, errorMapping, TaskProcessingResultCollectionResponse::createFromDiscriminatorValue); } /** - * Get the taskProcessingResult resources for a run. + * The related taskProcessingResults. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the taskProcessingResult resources for a run. + * The related taskProcessingResults. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public TaskProcessingResultsRequestBuilder withUrl(@jakarta.annotation.Nonnull f return new TaskProcessingResultsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the taskProcessingResult resources for a run. + * The related taskProcessingResults. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/runs/item/userprocessingresults/UserProcessingResultsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/runs/item/userprocessingresults/UserProcessingResultsRequestBuilder.java index 1c961dd2332..47052f581f5 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/runs/item/userprocessingresults/UserProcessingResultsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/runs/item/userprocessingresults/UserProcessingResultsRequestBuilder.java @@ -61,21 +61,19 @@ public UserProcessingResultsRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow%2Did}/runs/{run%2Did}/userProcessingResults{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get user processing results of a workflow run object. + * The associated individual user execution. * @return a {@link UserProcessingResultCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserProcessingResultCollectionResponse get() { return get(null); } /** - * Get user processing results of a workflow run object. + * The associated individual user execution. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UserProcessingResultCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserProcessingResultCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -97,7 +95,7 @@ public MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRe return new MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder(pathParameters, requestAdapter, endDateTime, startDateTime); } /** - * Get user processing results of a workflow run object. + * The associated individual user execution. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -105,7 +103,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get user processing results of a workflow run object. + * The associated individual user execution. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -127,7 +125,7 @@ public UserProcessingResultsRequestBuilder withUrl(@jakarta.annotation.Nonnull f return new UserProcessingResultsRequestBuilder(rawUrl, requestAdapter); } /** - * Get user processing results of a workflow run object. + * The associated individual user execution. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/runs/item/userprocessingresults/item/UserProcessingResultItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/runs/item/userprocessingresults/item/UserProcessingResultItemRequestBuilder.java index c950e25a40c..ec2e5f67156 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/runs/item/userprocessingresults/item/UserProcessingResultItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/runs/item/userprocessingresults/item/UserProcessingResultItemRequestBuilder.java @@ -55,21 +55,19 @@ public UserProcessingResultItemRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow%2Did}/runs/{run%2Did}/userProcessingResults/{userProcessingResult%2Did}{?%24expand,%24select}", rawUrl); } /** - * Get the user processing result of a user processing result of a run. + * The associated individual user execution. * @return a {@link UserProcessingResult} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserProcessingResult get() { return get(null); } /** - * Get the user processing result of a user processing result of a run. + * The associated individual user execution. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UserProcessingResult} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserProcessingResult get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,7 +77,7 @@ public UserProcessingResult get(@jakarta.annotation.Nullable final java.util.fun return this.requestAdapter.send(requestInfo, errorMapping, UserProcessingResult::createFromDiscriminatorValue); } /** - * Get the user processing result of a user processing result of a run. + * The associated individual user execution. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -87,7 +85,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the user processing result of a user processing result of a run. + * The associated individual user execution. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -109,7 +107,7 @@ public UserProcessingResultItemRequestBuilder withUrl(@jakarta.annotation.Nonnul return new UserProcessingResultItemRequestBuilder(rawUrl, requestAdapter); } /** - * Get the user processing result of a user processing result of a run. + * The associated individual user execution. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/runs/item/userprocessingresults/item/taskprocessingresults/TaskProcessingResultsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/runs/item/userprocessingresults/item/taskprocessingresults/TaskProcessingResultsRequestBuilder.java index 96bf9eeeeff..4fc56a146ff 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/runs/item/userprocessingresults/item/taskprocessingresults/TaskProcessingResultsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/runs/item/userprocessingresults/item/taskprocessingresults/TaskProcessingResultsRequestBuilder.java @@ -59,21 +59,19 @@ public TaskProcessingResultsRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow%2Did}/runs/{run%2Did}/userProcessingResults/{userProcessingResult%2Did}/taskProcessingResults{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the task processing result from a userProcessingResult either directly or through a run. + * The associated individual task execution. * @return a {@link TaskProcessingResultCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TaskProcessingResultCollectionResponse get() { return get(null); } /** - * Get the task processing result from a userProcessingResult either directly or through a run. + * The associated individual task execution. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TaskProcessingResultCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TaskProcessingResultCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public TaskProcessingResultCollectionResponse get(@jakarta.annotation.Nullable f return this.requestAdapter.send(requestInfo, errorMapping, TaskProcessingResultCollectionResponse::createFromDiscriminatorValue); } /** - * Get the task processing result from a userProcessingResult either directly or through a run. + * The associated individual task execution. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the task processing result from a userProcessingResult either directly or through a run. + * The associated individual task execution. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public TaskProcessingResultsRequestBuilder withUrl(@jakarta.annotation.Nonnull f return new TaskProcessingResultsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the task processing result from a userProcessingResult either directly or through a run. + * The associated individual task execution. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/taskreports/TaskReportsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/taskreports/TaskReportsRequestBuilder.java index 999d862128b..2274e2801a3 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/taskreports/TaskReportsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/taskreports/TaskReportsRequestBuilder.java @@ -61,21 +61,19 @@ public TaskReportsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow%2Did}/taskReports{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the taskReport objects and their properties. + * Represents the aggregation of task execution data for tasks within a workflow object. * @return a {@link TaskReportCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TaskReportCollectionResponse get() { return get(null); } /** - * Get a list of the taskReport objects and their properties. + * Represents the aggregation of task execution data for tasks within a workflow object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TaskReportCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TaskReportCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -97,7 +95,7 @@ public MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRe return new MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder(pathParameters, requestAdapter, endDateTime, startDateTime); } /** - * Get a list of the taskReport objects and their properties. + * Represents the aggregation of task execution data for tasks within a workflow object. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -105,7 +103,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the taskReport objects and their properties. + * Represents the aggregation of task execution data for tasks within a workflow object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -127,7 +125,7 @@ public TaskReportsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new TaskReportsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the taskReport objects and their properties. + * Represents the aggregation of task execution data for tasks within a workflow object. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/taskreports/item/taskprocessingresults/TaskProcessingResultsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/taskreports/item/taskprocessingresults/TaskProcessingResultsRequestBuilder.java index 434aa3865e8..1eb21328192 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/taskreports/item/taskprocessingresults/TaskProcessingResultsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/taskreports/item/taskprocessingresults/TaskProcessingResultsRequestBuilder.java @@ -59,21 +59,19 @@ public TaskProcessingResultsRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow%2Did}/taskReports/{taskReport%2Did}/taskProcessingResults{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the task processing result resources from the taskReport. + * The related lifecycle workflow taskProcessingResults. * @return a {@link TaskProcessingResultCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TaskProcessingResultCollectionResponse get() { return get(null); } /** - * Get the task processing result resources from the taskReport. + * The related lifecycle workflow taskProcessingResults. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TaskProcessingResultCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TaskProcessingResultCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public TaskProcessingResultCollectionResponse get(@jakarta.annotation.Nullable f return this.requestAdapter.send(requestInfo, errorMapping, TaskProcessingResultCollectionResponse::createFromDiscriminatorValue); } /** - * Get the task processing result resources from the taskReport. + * The related lifecycle workflow taskProcessingResults. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the task processing result resources from the taskReport. + * The related lifecycle workflow taskProcessingResults. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public TaskProcessingResultsRequestBuilder withUrl(@jakarta.annotation.Nonnull f return new TaskProcessingResultsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the task processing result resources from the taskReport. + * The related lifecycle workflow taskProcessingResults. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/userprocessingresults/UserProcessingResultsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/userprocessingresults/UserProcessingResultsRequestBuilder.java index 1ee097dfcce..04a9e2b2dbd 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/userprocessingresults/UserProcessingResultsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/userprocessingresults/UserProcessingResultsRequestBuilder.java @@ -61,21 +61,19 @@ public UserProcessingResultsRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow%2Did}/userProcessingResults{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the userProcessingResult resources for a workflow. + * Per-user workflow execution results. * @return a {@link UserProcessingResultCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserProcessingResultCollectionResponse get() { return get(null); } /** - * Get the userProcessingResult resources for a workflow. + * Per-user workflow execution results. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UserProcessingResultCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserProcessingResultCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -97,7 +95,7 @@ public MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRe return new MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder(pathParameters, requestAdapter, endDateTime, startDateTime); } /** - * Get the userProcessingResult resources for a workflow. + * Per-user workflow execution results. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -105,7 +103,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the userProcessingResult resources for a workflow. + * Per-user workflow execution results. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -127,7 +125,7 @@ public UserProcessingResultsRequestBuilder withUrl(@jakarta.annotation.Nonnull f return new UserProcessingResultsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the userProcessingResult resources for a workflow. + * Per-user workflow execution results. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/userprocessingresults/item/taskprocessingresults/TaskProcessingResultsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/userprocessingresults/item/taskprocessingresults/TaskProcessingResultsRequestBuilder.java index 8dfb0e2b92c..b143bf9c1dc 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/userprocessingresults/item/taskprocessingresults/TaskProcessingResultsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/userprocessingresults/item/taskprocessingresults/TaskProcessingResultsRequestBuilder.java @@ -59,21 +59,19 @@ public TaskProcessingResultsRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow%2Did}/userProcessingResults/{userProcessingResult%2Did}/taskProcessingResults{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the task processing result from a userProcessingResult either directly or through a run. + * The associated individual task execution. * @return a {@link TaskProcessingResultCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TaskProcessingResultCollectionResponse get() { return get(null); } /** - * Get the task processing result from a userProcessingResult either directly or through a run. + * The associated individual task execution. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TaskProcessingResultCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TaskProcessingResultCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public TaskProcessingResultCollectionResponse get(@jakarta.annotation.Nullable f return this.requestAdapter.send(requestInfo, errorMapping, TaskProcessingResultCollectionResponse::createFromDiscriminatorValue); } /** - * Get the task processing result from a userProcessingResult either directly or through a run. + * The associated individual task execution. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the task processing result from a userProcessingResult either directly or through a run. + * The associated individual task execution. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public TaskProcessingResultsRequestBuilder withUrl(@jakarta.annotation.Nonnull f return new TaskProcessingResultsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the task processing result from a userProcessingResult either directly or through a run. + * The associated individual task execution. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/versions/VersionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/versions/VersionsRequestBuilder.java index 5a63e15475d..e19d58b8f3a 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/versions/VersionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/versions/VersionsRequestBuilder.java @@ -59,21 +59,19 @@ public VersionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow%2Did}/versions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the workflowVersion objects and their properties. + * The workflow versions that are available. * @return a {@link WorkflowVersionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkflowVersionCollectionResponse get() { return get(null); } /** - * Get a list of the workflowVersion objects and their properties. + * The workflow versions that are available. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkflowVersionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkflowVersionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public WorkflowVersionCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, WorkflowVersionCollectionResponse::createFromDiscriminatorValue); } /** - * Get a list of the workflowVersion objects and their properties. + * The workflow versions that are available. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the workflowVersion objects and their properties. + * The workflow versions that are available. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public VersionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new VersionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the workflowVersion objects and their properties. + * The workflow versions that are available. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/versions/item/WorkflowVersionVersionNumberItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/versions/item/WorkflowVersionVersionNumberItemRequestBuilder.java index ed32d35cdb5..907e84525e2 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/versions/item/WorkflowVersionVersionNumberItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/deleteditems/workflows/item/versions/item/WorkflowVersionVersionNumberItemRequestBuilder.java @@ -64,21 +64,19 @@ public WorkflowVersionVersionNumberItemRequestBuilder(@jakarta.annotation.Nonnul super(requestAdapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow%2Did}/versions/{workflowVersion%2DversionNumber}{?%24expand,%24select}", rawUrl); } /** - * Read the properties and relationships of a workflowVersion object. + * The workflow versions that are available. * @return a {@link WorkflowVersion} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkflowVersion get() { return get(null); } /** - * Read the properties and relationships of a workflowVersion object. + * The workflow versions that are available. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkflowVersion} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkflowVersion get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -88,7 +86,7 @@ public WorkflowVersion get(@jakarta.annotation.Nullable final java.util.function return this.requestAdapter.send(requestInfo, errorMapping, WorkflowVersion::createFromDiscriminatorValue); } /** - * Read the properties and relationships of a workflowVersion object. + * The workflow versions that are available. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -96,7 +94,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a workflowVersion object. + * The workflow versions that are available. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -118,7 +116,7 @@ public WorkflowVersionVersionNumberItemRequestBuilder withUrl(@jakarta.annotatio return new WorkflowVersionVersionNumberItemRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of a workflowVersion object. + * The workflow versions that are available. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/settings/SettingsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/settings/SettingsRequestBuilder.java index 26687933040..943f6192998 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/settings/SettingsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/settings/SettingsRequestBuilder.java @@ -37,21 +37,19 @@ public SettingsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/settings{?%24expand,%24select}", rawUrl); } /** - * Read the properties and relationships of a lifecycleManagementSettings object. + * The settings of the lifecycle workflows instance. * @return a {@link LifecycleManagementSettings} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LifecycleManagementSettings get() { return get(null); } /** - * Read the properties and relationships of a lifecycleManagementSettings object. + * The settings of the lifecycle workflows instance. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link LifecycleManagementSettings} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LifecycleManagementSettings get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -61,23 +59,21 @@ public LifecycleManagementSettings get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, LifecycleManagementSettings::createFromDiscriminatorValue); } /** - * Update the properties of a lifecycleManagementSettings object. + * Update the navigation property settings in identityGovernance * @param body The request body * @return a {@link LifecycleManagementSettings} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LifecycleManagementSettings patch(@jakarta.annotation.Nonnull final LifecycleManagementSettings body) { return patch(body, null); } /** - * Update the properties of a lifecycleManagementSettings object. + * Update the navigation property settings in identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link LifecycleManagementSettings} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LifecycleManagementSettings patch(@jakarta.annotation.Nonnull final LifecycleManagementSettings body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -88,7 +84,7 @@ public LifecycleManagementSettings patch(@jakarta.annotation.Nonnull final Lifec return this.requestAdapter.send(requestInfo, errorMapping, LifecycleManagementSettings::createFromDiscriminatorValue); } /** - * Read the properties and relationships of a lifecycleManagementSettings object. + * The settings of the lifecycle workflows instance. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -96,7 +92,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a lifecycleManagementSettings object. + * The settings of the lifecycle workflows instance. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -108,7 +104,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a lifecycleManagementSettings object. + * Update the navigation property settings in identityGovernance * @param body The request body * @return a {@link RequestInformation} */ @@ -117,7 +113,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a lifecycleManagementSettings object. + * Update the navigation property settings in identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -142,7 +138,7 @@ public SettingsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new SettingsRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of a lifecycleManagementSettings object. + * The settings of the lifecycle workflows instance. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/taskdefinitions/TaskDefinitionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/taskdefinitions/TaskDefinitionsRequestBuilder.java index 780eb3f68c7..d0c366442ea 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/taskdefinitions/TaskDefinitionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/taskdefinitions/TaskDefinitionsRequestBuilder.java @@ -59,21 +59,19 @@ public TaskDefinitionsRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/taskDefinitions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the taskDefinition objects and their properties. + * The definition of tasks within the lifecycle workflows instance. * @return a {@link TaskDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TaskDefinitionCollectionResponse get() { return get(null); } /** - * Get a list of the taskDefinition objects and their properties. + * The definition of tasks within the lifecycle workflows instance. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TaskDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TaskDefinitionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public TaskDefinitionCollectionResponse get(@jakarta.annotation.Nullable final j return this.requestAdapter.send(requestInfo, errorMapping, TaskDefinitionCollectionResponse::createFromDiscriminatorValue); } /** - * Get a list of the taskDefinition objects and their properties. + * The definition of tasks within the lifecycle workflows instance. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the taskDefinition objects and their properties. + * The definition of tasks within the lifecycle workflows instance. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public TaskDefinitionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final S return new TaskDefinitionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the taskDefinition objects and their properties. + * The definition of tasks within the lifecycle workflows instance. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/taskdefinitions/item/TaskDefinitionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/taskdefinitions/item/TaskDefinitionItemRequestBuilder.java index bd54f6ddcb2..c103b5422ef 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/taskdefinitions/item/TaskDefinitionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/taskdefinitions/item/TaskDefinitionItemRequestBuilder.java @@ -37,21 +37,19 @@ public TaskDefinitionItemRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/taskDefinitions/{taskDefinition%2Did}{?%24expand,%24select}", rawUrl); } /** - * Read the details of a built-in workflow task. + * The definition of tasks within the lifecycle workflows instance. * @return a {@link TaskDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TaskDefinition get() { return get(null); } /** - * Read the details of a built-in workflow task. + * The definition of tasks within the lifecycle workflows instance. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TaskDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TaskDefinition get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -61,7 +59,7 @@ public TaskDefinition get(@jakarta.annotation.Nullable final java.util.function. return this.requestAdapter.send(requestInfo, errorMapping, TaskDefinition::createFromDiscriminatorValue); } /** - * Read the details of a built-in workflow task. + * The definition of tasks within the lifecycle workflows instance. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -69,7 +67,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the details of a built-in workflow task. + * The definition of tasks within the lifecycle workflows instance. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -91,7 +89,7 @@ public TaskDefinitionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fina return new TaskDefinitionItemRequestBuilder(rawUrl, requestAdapter); } /** - * Read the details of a built-in workflow task. + * The definition of tasks within the lifecycle workflows instance. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/WorkflowsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/WorkflowsRequestBuilder.java index 76593241235..7062492c14a 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/WorkflowsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/WorkflowsRequestBuilder.java @@ -60,21 +60,19 @@ public WorkflowsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/workflows{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of workflow resources that are associated with lifecycle workflows. + * The workflows in the lifecycle workflows instance. * @return a {@link WorkflowCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkflowCollectionResponse get() { return get(null); } /** - * Get a list of workflow resources that are associated with lifecycle workflows. + * The workflows in the lifecycle workflows instance. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkflowCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkflowCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public WorkflowCollectionResponse get(@jakarta.annotation.Nullable final java.ut return this.requestAdapter.send(requestInfo, errorMapping, WorkflowCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new workflow object. You can create up to 50 workflows in a tenant. + * Create new navigation property to workflows for identityGovernance * @param body The request body * @return a {@link Workflow} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Workflow post(@jakarta.annotation.Nonnull final Workflow body) { return post(body, null); } /** - * Create a new workflow object. You can create up to 50 workflows in a tenant. + * Create new navigation property to workflows for identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Workflow} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Workflow post(@jakarta.annotation.Nonnull final Workflow body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public Workflow post(@jakarta.annotation.Nonnull final Workflow body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, Workflow::createFromDiscriminatorValue); } /** - * Get a list of workflow resources that are associated with lifecycle workflows. + * The workflows in the lifecycle workflows instance. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of workflow resources that are associated with lifecycle workflows. + * The workflows in the lifecycle workflows instance. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new workflow object. You can create up to 50 workflows in a tenant. + * Create new navigation property to workflows for identityGovernance * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new workflow object. You can create up to 50 workflows in a tenant. + * Create new navigation property to workflows for identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public WorkflowsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new WorkflowsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of workflow resources that are associated with lifecycle workflows. + * The workflows in the lifecycle workflows instance. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/WorkflowItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/WorkflowItemRequestBuilder.java index a555c974481..1b67c822002 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/WorkflowItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/WorkflowItemRequestBuilder.java @@ -136,18 +136,16 @@ public WorkflowItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/workflows/{workflow%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a workflow object and its associated tasks, taskProcessingResults and versions. You can restore a deleted workflow and its associated objects within 30 days of deletion. + * Delete navigation property workflows for identityGovernance * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a workflow object and its associated tasks, taskProcessingResults and versions. You can restore a deleted workflow and its associated objects within 30 days of deletion. + * Delete navigation property workflows for identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -156,21 +154,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a workflow object. + * The workflows in the lifecycle workflows instance. * @return a {@link Workflow} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Workflow get() { return get(null); } /** - * Read the properties and relationships of a workflow object. + * The workflows in the lifecycle workflows instance. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Workflow} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Workflow get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -180,23 +176,21 @@ public Workflow get(@jakarta.annotation.Nullable final java.util.function.Consum return this.requestAdapter.send(requestInfo, errorMapping, Workflow::createFromDiscriminatorValue); } /** - * Update the properties of a workflow object. Only the properties listed in the request body table can be updated. To update any other workflow properties, see workflow: createNewVersion. + * Update the navigation property workflows in identityGovernance * @param body The request body * @return a {@link Workflow} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Workflow patch(@jakarta.annotation.Nonnull final Workflow body) { return patch(body, null); } /** - * Update the properties of a workflow object. Only the properties listed in the request body table can be updated. To update any other workflow properties, see workflow: createNewVersion. + * Update the navigation property workflows in identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Workflow} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Workflow patch(@jakarta.annotation.Nonnull final Workflow body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -207,7 +201,7 @@ public Workflow patch(@jakarta.annotation.Nonnull final Workflow body, @jakarta. return this.requestAdapter.send(requestInfo, errorMapping, Workflow::createFromDiscriminatorValue); } /** - * Delete a workflow object and its associated tasks, taskProcessingResults and versions. You can restore a deleted workflow and its associated objects within 30 days of deletion. + * Delete navigation property workflows for identityGovernance * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -215,7 +209,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a workflow object and its associated tasks, taskProcessingResults and versions. You can restore a deleted workflow and its associated objects within 30 days of deletion. + * Delete navigation property workflows for identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -227,7 +221,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a workflow object. + * The workflows in the lifecycle workflows instance. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -235,7 +229,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a workflow object. + * The workflows in the lifecycle workflows instance. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -247,7 +241,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a workflow object. Only the properties listed in the request body table can be updated. To update any other workflow properties, see workflow: createNewVersion. + * Update the navigation property workflows in identityGovernance * @param body The request body * @return a {@link RequestInformation} */ @@ -256,7 +250,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a workflow object. Only the properties listed in the request body table can be updated. To update any other workflow properties, see workflow: createNewVersion. + * Update the navigation property workflows in identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -287,7 +281,7 @@ public WorkflowItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a workflow object. + * The workflows in the lifecycle workflows instance. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/runs/RunsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/runs/RunsRequestBuilder.java index 502ecd689be..85f92603377 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/runs/RunsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/runs/RunsRequestBuilder.java @@ -61,21 +61,19 @@ public RunsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka super(requestAdapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/workflows/{workflow%2Did}/runs{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the run objects and their properties for a lifecycle workflow. + * Workflow runs. * @return a {@link RunCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RunCollectionResponse get() { return get(null); } /** - * Get a list of the run objects and their properties for a lifecycle workflow. + * Workflow runs. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RunCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RunCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -97,7 +95,7 @@ public MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRe return new MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder(pathParameters, requestAdapter, endDateTime, startDateTime); } /** - * Get a list of the run objects and their properties for a lifecycle workflow. + * Workflow runs. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -105,7 +103,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the run objects and their properties for a lifecycle workflow. + * Workflow runs. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -127,7 +125,7 @@ public RunsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr return new RunsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the run objects and their properties for a lifecycle workflow. + * Workflow runs. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/runs/item/RunItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/runs/item/RunItemRequestBuilder.java index 4129be05921..27d1da14a2f 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/runs/item/RunItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/runs/item/RunItemRequestBuilder.java @@ -55,21 +55,19 @@ public RunItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/workflows/{workflow%2Did}/runs/{run%2Did}{?%24expand,%24select}", rawUrl); } /** - * Read the properties and relationships of a run object. + * Workflow runs. * @return a {@link Run} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Run get() { return get(null); } /** - * Read the properties and relationships of a run object. + * Workflow runs. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Run} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Run get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,7 +77,7 @@ public Run get(@jakarta.annotation.Nullable final java.util.function.ConsumerFind more info here */ @jakarta.annotation.Nullable public TaskProcessingResultCollectionResponse get() { return get(null); } /** - * Get the taskProcessingResult resources for a run. + * The related taskProcessingResults. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TaskProcessingResultCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TaskProcessingResultCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public TaskProcessingResultCollectionResponse get(@jakarta.annotation.Nullable f return this.requestAdapter.send(requestInfo, errorMapping, TaskProcessingResultCollectionResponse::createFromDiscriminatorValue); } /** - * Get the taskProcessingResult resources for a run. + * The related taskProcessingResults. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the taskProcessingResult resources for a run. + * The related taskProcessingResults. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public TaskProcessingResultsRequestBuilder withUrl(@jakarta.annotation.Nonnull f return new TaskProcessingResultsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the taskProcessingResult resources for a run. + * The related taskProcessingResults. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/runs/item/userprocessingresults/UserProcessingResultsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/runs/item/userprocessingresults/UserProcessingResultsRequestBuilder.java index e9afccfdf9d..a357c01d81c 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/runs/item/userprocessingresults/UserProcessingResultsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/runs/item/userprocessingresults/UserProcessingResultsRequestBuilder.java @@ -61,21 +61,19 @@ public UserProcessingResultsRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/workflows/{workflow%2Did}/runs/{run%2Did}/userProcessingResults{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get user processing results of a workflow run object. + * The associated individual user execution. * @return a {@link UserProcessingResultCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserProcessingResultCollectionResponse get() { return get(null); } /** - * Get user processing results of a workflow run object. + * The associated individual user execution. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UserProcessingResultCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserProcessingResultCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -97,7 +95,7 @@ public MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRe return new MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder(pathParameters, requestAdapter, endDateTime, startDateTime); } /** - * Get user processing results of a workflow run object. + * The associated individual user execution. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -105,7 +103,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get user processing results of a workflow run object. + * The associated individual user execution. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -127,7 +125,7 @@ public UserProcessingResultsRequestBuilder withUrl(@jakarta.annotation.Nonnull f return new UserProcessingResultsRequestBuilder(rawUrl, requestAdapter); } /** - * Get user processing results of a workflow run object. + * The associated individual user execution. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/runs/item/userprocessingresults/item/UserProcessingResultItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/runs/item/userprocessingresults/item/UserProcessingResultItemRequestBuilder.java index afab9c03d24..63e9a0d828b 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/runs/item/userprocessingresults/item/UserProcessingResultItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/runs/item/userprocessingresults/item/UserProcessingResultItemRequestBuilder.java @@ -55,21 +55,19 @@ public UserProcessingResultItemRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/workflows/{workflow%2Did}/runs/{run%2Did}/userProcessingResults/{userProcessingResult%2Did}{?%24expand,%24select}", rawUrl); } /** - * Get the user processing result of a user processing result of a run. + * The associated individual user execution. * @return a {@link UserProcessingResult} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserProcessingResult get() { return get(null); } /** - * Get the user processing result of a user processing result of a run. + * The associated individual user execution. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UserProcessingResult} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserProcessingResult get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,7 +77,7 @@ public UserProcessingResult get(@jakarta.annotation.Nullable final java.util.fun return this.requestAdapter.send(requestInfo, errorMapping, UserProcessingResult::createFromDiscriminatorValue); } /** - * Get the user processing result of a user processing result of a run. + * The associated individual user execution. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -87,7 +85,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the user processing result of a user processing result of a run. + * The associated individual user execution. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -109,7 +107,7 @@ public UserProcessingResultItemRequestBuilder withUrl(@jakarta.annotation.Nonnul return new UserProcessingResultItemRequestBuilder(rawUrl, requestAdapter); } /** - * Get the user processing result of a user processing result of a run. + * The associated individual user execution. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/runs/item/userprocessingresults/item/taskprocessingresults/TaskProcessingResultsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/runs/item/userprocessingresults/item/taskprocessingresults/TaskProcessingResultsRequestBuilder.java index 044aaf751f4..447b1bc2b72 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/runs/item/userprocessingresults/item/taskprocessingresults/TaskProcessingResultsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/runs/item/userprocessingresults/item/taskprocessingresults/TaskProcessingResultsRequestBuilder.java @@ -59,21 +59,19 @@ public TaskProcessingResultsRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/workflows/{workflow%2Did}/runs/{run%2Did}/userProcessingResults/{userProcessingResult%2Did}/taskProcessingResults{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the task processing result from a userProcessingResult either directly or through a run. + * The associated individual task execution. * @return a {@link TaskProcessingResultCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TaskProcessingResultCollectionResponse get() { return get(null); } /** - * Get the task processing result from a userProcessingResult either directly or through a run. + * The associated individual task execution. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TaskProcessingResultCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TaskProcessingResultCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public TaskProcessingResultCollectionResponse get(@jakarta.annotation.Nullable f return this.requestAdapter.send(requestInfo, errorMapping, TaskProcessingResultCollectionResponse::createFromDiscriminatorValue); } /** - * Get the task processing result from a userProcessingResult either directly or through a run. + * The associated individual task execution. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the task processing result from a userProcessingResult either directly or through a run. + * The associated individual task execution. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public TaskProcessingResultsRequestBuilder withUrl(@jakarta.annotation.Nonnull f return new TaskProcessingResultsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the task processing result from a userProcessingResult either directly or through a run. + * The associated individual task execution. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/taskreports/TaskReportsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/taskreports/TaskReportsRequestBuilder.java index 2c9048486ed..146b4430534 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/taskreports/TaskReportsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/taskreports/TaskReportsRequestBuilder.java @@ -61,21 +61,19 @@ public TaskReportsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/workflows/{workflow%2Did}/taskReports{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the taskReport objects and their properties. + * Represents the aggregation of task execution data for tasks within a workflow object. * @return a {@link TaskReportCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TaskReportCollectionResponse get() { return get(null); } /** - * Get a list of the taskReport objects and their properties. + * Represents the aggregation of task execution data for tasks within a workflow object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TaskReportCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TaskReportCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -97,7 +95,7 @@ public MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRe return new MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder(pathParameters, requestAdapter, endDateTime, startDateTime); } /** - * Get a list of the taskReport objects and their properties. + * Represents the aggregation of task execution data for tasks within a workflow object. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -105,7 +103,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the taskReport objects and their properties. + * Represents the aggregation of task execution data for tasks within a workflow object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -127,7 +125,7 @@ public TaskReportsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new TaskReportsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the taskReport objects and their properties. + * Represents the aggregation of task execution data for tasks within a workflow object. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/taskreports/item/taskprocessingresults/TaskProcessingResultsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/taskreports/item/taskprocessingresults/TaskProcessingResultsRequestBuilder.java index e7543968bd3..fe99e5c9e3b 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/taskreports/item/taskprocessingresults/TaskProcessingResultsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/taskreports/item/taskprocessingresults/TaskProcessingResultsRequestBuilder.java @@ -59,21 +59,19 @@ public TaskProcessingResultsRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/workflows/{workflow%2Did}/taskReports/{taskReport%2Did}/taskProcessingResults{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the task processing result resources from the taskReport. + * The related lifecycle workflow taskProcessingResults. * @return a {@link TaskProcessingResultCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TaskProcessingResultCollectionResponse get() { return get(null); } /** - * Get the task processing result resources from the taskReport. + * The related lifecycle workflow taskProcessingResults. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TaskProcessingResultCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TaskProcessingResultCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public TaskProcessingResultCollectionResponse get(@jakarta.annotation.Nullable f return this.requestAdapter.send(requestInfo, errorMapping, TaskProcessingResultCollectionResponse::createFromDiscriminatorValue); } /** - * Get the task processing result resources from the taskReport. + * The related lifecycle workflow taskProcessingResults. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the task processing result resources from the taskReport. + * The related lifecycle workflow taskProcessingResults. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public TaskProcessingResultsRequestBuilder withUrl(@jakarta.annotation.Nonnull f return new TaskProcessingResultsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the task processing result resources from the taskReport. + * The related lifecycle workflow taskProcessingResults. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/userprocessingresults/UserProcessingResultsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/userprocessingresults/UserProcessingResultsRequestBuilder.java index 70d328142e7..975e802c00a 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/userprocessingresults/UserProcessingResultsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/userprocessingresults/UserProcessingResultsRequestBuilder.java @@ -61,21 +61,19 @@ public UserProcessingResultsRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/workflows/{workflow%2Did}/userProcessingResults{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the userProcessingResult resources for a workflow. + * Per-user workflow execution results. * @return a {@link UserProcessingResultCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserProcessingResultCollectionResponse get() { return get(null); } /** - * Get the userProcessingResult resources for a workflow. + * Per-user workflow execution results. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UserProcessingResultCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserProcessingResultCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -97,7 +95,7 @@ public MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRe return new MicrosoftGraphIdentityGovernanceSummaryWithStartDateTimeWithEndDateTimeRequestBuilder(pathParameters, requestAdapter, endDateTime, startDateTime); } /** - * Get the userProcessingResult resources for a workflow. + * Per-user workflow execution results. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -105,7 +103,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the userProcessingResult resources for a workflow. + * Per-user workflow execution results. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -127,7 +125,7 @@ public UserProcessingResultsRequestBuilder withUrl(@jakarta.annotation.Nonnull f return new UserProcessingResultsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the userProcessingResult resources for a workflow. + * Per-user workflow execution results. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/userprocessingresults/item/taskprocessingresults/TaskProcessingResultsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/userprocessingresults/item/taskprocessingresults/TaskProcessingResultsRequestBuilder.java index 56f63bda12d..34b00f22e58 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/userprocessingresults/item/taskprocessingresults/TaskProcessingResultsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/userprocessingresults/item/taskprocessingresults/TaskProcessingResultsRequestBuilder.java @@ -59,21 +59,19 @@ public TaskProcessingResultsRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/workflows/{workflow%2Did}/userProcessingResults/{userProcessingResult%2Did}/taskProcessingResults{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the task processing result from a userProcessingResult either directly or through a run. + * The associated individual task execution. * @return a {@link TaskProcessingResultCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TaskProcessingResultCollectionResponse get() { return get(null); } /** - * Get the task processing result from a userProcessingResult either directly or through a run. + * The associated individual task execution. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TaskProcessingResultCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TaskProcessingResultCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public TaskProcessingResultCollectionResponse get(@jakarta.annotation.Nullable f return this.requestAdapter.send(requestInfo, errorMapping, TaskProcessingResultCollectionResponse::createFromDiscriminatorValue); } /** - * Get the task processing result from a userProcessingResult either directly or through a run. + * The associated individual task execution. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the task processing result from a userProcessingResult either directly or through a run. + * The associated individual task execution. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public TaskProcessingResultsRequestBuilder withUrl(@jakarta.annotation.Nonnull f return new TaskProcessingResultsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the task processing result from a userProcessingResult either directly or through a run. + * The associated individual task execution. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/versions/VersionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/versions/VersionsRequestBuilder.java index cb45e42f520..5c5b27bf0d7 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/versions/VersionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/versions/VersionsRequestBuilder.java @@ -59,21 +59,19 @@ public VersionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/workflows/{workflow%2Did}/versions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the workflowVersion objects and their properties. + * The workflow versions that are available. * @return a {@link WorkflowVersionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkflowVersionCollectionResponse get() { return get(null); } /** - * Get a list of the workflowVersion objects and their properties. + * The workflow versions that are available. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkflowVersionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkflowVersionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public WorkflowVersionCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, WorkflowVersionCollectionResponse::createFromDiscriminatorValue); } /** - * Get a list of the workflowVersion objects and their properties. + * The workflow versions that are available. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the workflowVersion objects and their properties. + * The workflow versions that are available. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public VersionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new VersionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the workflowVersion objects and their properties. + * The workflow versions that are available. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/versions/item/WorkflowVersionVersionNumberItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/versions/item/WorkflowVersionVersionNumberItemRequestBuilder.java index 437b7eb03af..28d4fb7c200 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/versions/item/WorkflowVersionVersionNumberItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflows/item/versions/item/WorkflowVersionVersionNumberItemRequestBuilder.java @@ -64,21 +64,19 @@ public WorkflowVersionVersionNumberItemRequestBuilder(@jakarta.annotation.Nonnul super(requestAdapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/workflows/{workflow%2Did}/versions/{workflowVersion%2DversionNumber}{?%24expand,%24select}", rawUrl); } /** - * Read the properties and relationships of a workflowVersion object. + * The workflow versions that are available. * @return a {@link WorkflowVersion} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkflowVersion get() { return get(null); } /** - * Read the properties and relationships of a workflowVersion object. + * The workflow versions that are available. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkflowVersion} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkflowVersion get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -88,7 +86,7 @@ public WorkflowVersion get(@jakarta.annotation.Nullable final java.util.function return this.requestAdapter.send(requestInfo, errorMapping, WorkflowVersion::createFromDiscriminatorValue); } /** - * Read the properties and relationships of a workflowVersion object. + * The workflow versions that are available. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -96,7 +94,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a workflowVersion object. + * The workflow versions that are available. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -118,7 +116,7 @@ public WorkflowVersionVersionNumberItemRequestBuilder withUrl(@jakarta.annotatio return new WorkflowVersionVersionNumberItemRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of a workflowVersion object. + * The workflow versions that are available. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflowtemplates/WorkflowTemplatesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflowtemplates/WorkflowTemplatesRequestBuilder.java index e8d77cfc2c8..bb43c345e06 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflowtemplates/WorkflowTemplatesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflowtemplates/WorkflowTemplatesRequestBuilder.java @@ -59,21 +59,19 @@ public WorkflowTemplatesRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/workflowTemplates{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the workflowTemplate objects and their properties. + * The workflow templates in the lifecycle workflow instance. * @return a {@link WorkflowTemplateCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkflowTemplateCollectionResponse get() { return get(null); } /** - * Get a list of the workflowTemplate objects and their properties. + * The workflow templates in the lifecycle workflow instance. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkflowTemplateCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkflowTemplateCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public WorkflowTemplateCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, WorkflowTemplateCollectionResponse::createFromDiscriminatorValue); } /** - * Get a list of the workflowTemplate objects and their properties. + * The workflow templates in the lifecycle workflow instance. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the workflowTemplate objects and their properties. + * The workflow templates in the lifecycle workflow instance. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public WorkflowTemplatesRequestBuilder withUrl(@jakarta.annotation.Nonnull final return new WorkflowTemplatesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the workflowTemplate objects and their properties. + * The workflow templates in the lifecycle workflow instance. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflowtemplates/item/WorkflowTemplateItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflowtemplates/item/WorkflowTemplateItemRequestBuilder.java index 401943b8afb..95f5b3cd6ae 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflowtemplates/item/WorkflowTemplateItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/lifecycleworkflows/workflowtemplates/item/WorkflowTemplateItemRequestBuilder.java @@ -46,21 +46,19 @@ public WorkflowTemplateItemRequestBuilder(@jakarta.annotation.Nonnull final Stri super(requestAdapter, "{+baseurl}/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate%2Did}{?%24expand,%24select}", rawUrl); } /** - * Read the properties and relationships of a workflowTemplate object. + * The workflow templates in the lifecycle workflow instance. * @return a {@link WorkflowTemplate} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkflowTemplate get() { return get(null); } /** - * Read the properties and relationships of a workflowTemplate object. + * The workflow templates in the lifecycle workflow instance. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkflowTemplate} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkflowTemplate get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -70,7 +68,7 @@ public WorkflowTemplate get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, WorkflowTemplate::createFromDiscriminatorValue); } /** - * Read the properties and relationships of a workflowTemplate object. + * The workflow templates in the lifecycle workflow instance. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -78,7 +76,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a workflowTemplate object. + * The workflow templates in the lifecycle workflow instance. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -100,7 +98,7 @@ public WorkflowTemplateItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fi return new WorkflowTemplateItemRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of a workflowTemplate object. + * The workflow templates in the lifecycle workflow instance. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentapprovals/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentapprovals/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java index 060e4754521..deeeb2ab662 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentapprovals/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentapprovals/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java @@ -38,19 +38,21 @@ public FilterByCurrentUserWithOnRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/identityGovernance/privilegedAccess/group/assignmentApprovals/filterByCurrentUser(on='{on}'){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function filterByCurrentUser + * In Microsoft Entra entitlement management, return a collection of access package assignment approvals. The objects returned are those that are in scope for approval by the calling user. In PIM for groups, return a collection of assignment approvals. The objects returned are those that are in scope for approval by the calling user. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get() { return get(null); } /** - * Invoke function filterByCurrentUser + * In Microsoft Entra entitlement management, return a collection of access package assignment approvals. The objects returned are those that are in scope for approval by the calling user. In PIM for groups, return a collection of assignment approvals. The objects returned are those that are in scope for approval by the calling user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, FilterByCurrentUserWithOnGetResponse::createFromDiscriminatorValue); } /** - * Invoke function filterByCurrentUser + * In Microsoft Entra entitlement management, return a collection of access package assignment approvals. The objects returned are those that are in scope for approval by the calling user. In PIM for groups, return a collection of assignment approvals. The objects returned are those that are in scope for approval by the calling user. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function filterByCurrentUser + * In Microsoft Entra entitlement management, return a collection of access package assignment approvals. The objects returned are those that are in scope for approval by the calling user. In PIM for groups, return a collection of assignment approvals. The objects returned are those that are in scope for approval by the calling user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -90,7 +92,7 @@ public FilterByCurrentUserWithOnRequestBuilder withUrl(@jakarta.annotation.Nonnu return new FilterByCurrentUserWithOnRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function filterByCurrentUser + * In Microsoft Entra entitlement management, return a collection of access package assignment approvals. The objects returned are those that are in scope for approval by the calling user. In PIM for groups, return a collection of assignment approvals. The objects returned are those that are in scope for approval by the calling user. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentapprovals/item/stages/StagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentapprovals/item/stages/StagesRequestBuilder.java index 6f3c71bfcdc..c17406b2e22 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentapprovals/item/stages/StagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentapprovals/item/stages/StagesRequestBuilder.java @@ -60,21 +60,19 @@ public StagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval%2Did}/stages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List the approvalStage objects associated with an approval. This API request is made by an approver in the following scenarios: In Microsoft Entra entitlement management, providing the identifier of the access package assignment request.In PIM for groups, providing the identifier of the assignment schedule request. + * A collection of stages in the approval decision. * @return a {@link ApprovalStageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ApprovalStageCollectionResponse get() { return get(null); } /** - * List the approvalStage objects associated with an approval. This API request is made by an approver in the following scenarios: In Microsoft Entra entitlement management, providing the identifier of the access package assignment request.In PIM for groups, providing the identifier of the assignment schedule request. + * A collection of stages in the approval decision. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ApprovalStageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ApprovalStageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ApprovalStage post(@jakarta.annotation.Nonnull final ApprovalStage body, return this.requestAdapter.send(requestInfo, errorMapping, ApprovalStage::createFromDiscriminatorValue); } /** - * List the approvalStage objects associated with an approval. This API request is made by an approver in the following scenarios: In Microsoft Entra entitlement management, providing the identifier of the access package assignment request.In PIM for groups, providing the identifier of the assignment schedule request. + * A collection of stages in the approval decision. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List the approvalStage objects associated with an approval. This API request is made by an approver in the following scenarios: In Microsoft Entra entitlement management, providing the identifier of the access package assignment request.In PIM for groups, providing the identifier of the assignment schedule request. + * A collection of stages in the approval decision. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public StagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw return new StagesRequestBuilder(rawUrl, requestAdapter); } /** - * List the approvalStage objects associated with an approval. This API request is made by an approver in the following scenarios: In Microsoft Entra entitlement management, providing the identifier of the access package assignment request.In PIM for groups, providing the identifier of the assignment schedule request. + * A collection of stages in the approval decision. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentapprovals/item/stages/item/ApprovalStageItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentapprovals/item/stages/item/ApprovalStageItemRequestBuilder.java index 81534997901..166f62b8b44 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentapprovals/item/stages/item/ApprovalStageItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentapprovals/item/stages/item/ApprovalStageItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties of an approvalStage object. An approval stage is contained within an approval object. + * A collection of stages in the approval decision. * @return a {@link ApprovalStage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ApprovalStage get() { return get(null); } /** - * Retrieve the properties of an approvalStage object. An approval stage is contained within an approval object. + * A collection of stages in the approval decision. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ApprovalStage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ApprovalStage get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public ApprovalStage get(@jakarta.annotation.Nullable final java.util.function.C return this.requestAdapter.send(requestInfo, errorMapping, ApprovalStage::createFromDiscriminatorValue); } /** - * Approve or deny an approvalStage object in an approval. + * Update the navigation property stages in identityGovernance * @param body The request body * @return a {@link ApprovalStage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ApprovalStage patch(@jakarta.annotation.Nonnull final ApprovalStage body) { return patch(body, null); } /** - * Approve or deny an approvalStage object in an approval. + * Update the navigation property stages in identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ApprovalStage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ApprovalStage patch(@jakarta.annotation.Nonnull final ApprovalStage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties of an approvalStage object. An approval stage is contained within an approval object. + * A collection of stages in the approval decision. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties of an approvalStage object. An approval stage is contained within an approval object. + * A collection of stages in the approval decision. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Approve or deny an approvalStage object in an approval. + * Update the navigation property stages in identityGovernance * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Approve or deny an approvalStage object in an approval. + * Update the navigation property stages in identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public ApprovalStageItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties of an approvalStage object. An approval stage is contained within an approval object. + * A collection of stages in the approval decision. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentscheduleinstances/AssignmentScheduleInstancesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentscheduleinstances/AssignmentScheduleInstancesRequestBuilder.java index 0550a91cdcf..e68f8a1dddc 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentscheduleinstances/AssignmentScheduleInstancesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentscheduleinstances/AssignmentScheduleInstancesRequestBuilder.java @@ -71,21 +71,19 @@ public FilterByCurrentUserWithOnRequestBuilder filterByCurrentUserWithOn(@jakart return new FilterByCurrentUserWithOnRequestBuilder(pathParameters, requestAdapter, on); } /** - * Get a list of the privilegedAccessGroupAssignmentScheduleInstance objects and their properties. + * The instances of assignment schedules to activate a just-in-time access. * @return a {@link PrivilegedAccessGroupAssignmentScheduleInstanceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrivilegedAccessGroupAssignmentScheduleInstanceCollectionResponse get() { return get(null); } /** - * Get a list of the privilegedAccessGroupAssignmentScheduleInstance objects and their properties. + * The instances of assignment schedules to activate a just-in-time access. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrivilegedAccessGroupAssignmentScheduleInstanceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrivilegedAccessGroupAssignmentScheduleInstanceCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +118,7 @@ public PrivilegedAccessGroupAssignmentScheduleInstance post(@jakarta.annotation. return this.requestAdapter.send(requestInfo, errorMapping, PrivilegedAccessGroupAssignmentScheduleInstance::createFromDiscriminatorValue); } /** - * Get a list of the privilegedAccessGroupAssignmentScheduleInstance objects and their properties. + * The instances of assignment schedules to activate a just-in-time access. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +126,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the privilegedAccessGroupAssignmentScheduleInstance objects and their properties. + * The instances of assignment schedules to activate a just-in-time access. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -174,7 +172,7 @@ public AssignmentScheduleInstancesRequestBuilder withUrl(@jakarta.annotation.Non return new AssignmentScheduleInstancesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the privilegedAccessGroupAssignmentScheduleInstance objects and their properties. + * The instances of assignment schedules to activate a just-in-time access. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentscheduleinstances/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentscheduleinstances/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java index 91d23ced34f..90df84a5192 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentscheduleinstances/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentscheduleinstances/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java @@ -38,19 +38,21 @@ public FilterByCurrentUserWithOnRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/filterByCurrentUser(on='{on}'){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function filterByCurrentUser + * In PIM for groups, retrieve the schedule instances for membership or ownership assignments for the calling principal to groups that are governed by PIM. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get() { return get(null); } /** - * Invoke function filterByCurrentUser + * In PIM for groups, retrieve the schedule instances for membership or ownership assignments for the calling principal to groups that are governed by PIM. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, FilterByCurrentUserWithOnGetResponse::createFromDiscriminatorValue); } /** - * Invoke function filterByCurrentUser + * In PIM for groups, retrieve the schedule instances for membership or ownership assignments for the calling principal to groups that are governed by PIM. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function filterByCurrentUser + * In PIM for groups, retrieve the schedule instances for membership or ownership assignments for the calling principal to groups that are governed by PIM. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -90,7 +92,7 @@ public FilterByCurrentUserWithOnRequestBuilder withUrl(@jakarta.annotation.Nonnu return new FilterByCurrentUserWithOnRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function filterByCurrentUser + * In PIM for groups, retrieve the schedule instances for membership or ownership assignments for the calling principal to groups that are governed by PIM. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentscheduleinstances/item/PrivilegedAccessGroupAssignmentScheduleInstanceItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentscheduleinstances/item/PrivilegedAccessGroupAssignmentScheduleInstanceItemRequestBuilder.java index abb23ff6f2a..f32cc618c7b 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentscheduleinstances/item/PrivilegedAccessGroupAssignmentScheduleInstanceItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentscheduleinstances/item/PrivilegedAccessGroupAssignmentScheduleInstanceItemRequestBuilder.java @@ -82,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a privilegedAccessGroupAssignmentScheduleInstance object. + * The instances of assignment schedules to activate a just-in-time access. * @return a {@link PrivilegedAccessGroupAssignmentScheduleInstance} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrivilegedAccessGroupAssignmentScheduleInstance get() { return get(null); } /** - * Read the properties and relationships of a privilegedAccessGroupAssignmentScheduleInstance object. + * The instances of assignment schedules to activate a just-in-time access. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrivilegedAccessGroupAssignmentScheduleInstance} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrivilegedAccessGroupAssignmentScheduleInstance get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -151,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a privilegedAccessGroupAssignmentScheduleInstance object. + * The instances of assignment schedules to activate a just-in-time access. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -159,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a privilegedAccessGroupAssignmentScheduleInstance object. + * The instances of assignment schedules to activate a just-in-time access. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -211,7 +209,7 @@ public PrivilegedAccessGroupAssignmentScheduleInstanceItemRequestBuilder withUrl public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a privilegedAccessGroupAssignmentScheduleInstance object. + * The instances of assignment schedules to activate a just-in-time access. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentschedulerequests/AssignmentScheduleRequestsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentschedulerequests/AssignmentScheduleRequestsRequestBuilder.java index 19929efe3b8..528a25535ca 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentschedulerequests/AssignmentScheduleRequestsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentschedulerequests/AssignmentScheduleRequestsRequestBuilder.java @@ -71,21 +71,19 @@ public FilterByCurrentUserWithOnRequestBuilder filterByCurrentUserWithOn(@jakart return new FilterByCurrentUserWithOnRequestBuilder(pathParameters, requestAdapter, on); } /** - * Get a list of the privilegedAccessGroupAssignmentScheduleRequest objects and their properties. + * The schedule requests for operations to create, update, delete, extend, and renew an assignment. * @return a {@link PrivilegedAccessGroupAssignmentScheduleRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrivilegedAccessGroupAssignmentScheduleRequestCollectionResponse get() { return get(null); } /** - * Get a list of the privilegedAccessGroupAssignmentScheduleRequest objects and their properties. + * The schedule requests for operations to create, update, delete, extend, and renew an assignment. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrivilegedAccessGroupAssignmentScheduleRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrivilegedAccessGroupAssignmentScheduleRequestCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -95,23 +93,21 @@ public PrivilegedAccessGroupAssignmentScheduleRequestCollectionResponse get(@jak return this.requestAdapter.send(requestInfo, errorMapping, PrivilegedAccessGroupAssignmentScheduleRequestCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new privilegedAccessGroupAssignmentScheduleRequest object. + * Create new navigation property to assignmentScheduleRequests for identityGovernance * @param body The request body * @return a {@link PrivilegedAccessGroupAssignmentScheduleRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrivilegedAccessGroupAssignmentScheduleRequest post(@jakarta.annotation.Nonnull final PrivilegedAccessGroupAssignmentScheduleRequest body) { return post(body, null); } /** - * Create a new privilegedAccessGroupAssignmentScheduleRequest object. + * Create new navigation property to assignmentScheduleRequests for identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrivilegedAccessGroupAssignmentScheduleRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrivilegedAccessGroupAssignmentScheduleRequest post(@jakarta.annotation.Nonnull final PrivilegedAccessGroupAssignmentScheduleRequest body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -122,7 +118,7 @@ public PrivilegedAccessGroupAssignmentScheduleRequest post(@jakarta.annotation.N return this.requestAdapter.send(requestInfo, errorMapping, PrivilegedAccessGroupAssignmentScheduleRequest::createFromDiscriminatorValue); } /** - * Get a list of the privilegedAccessGroupAssignmentScheduleRequest objects and their properties. + * The schedule requests for operations to create, update, delete, extend, and renew an assignment. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -130,7 +126,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the privilegedAccessGroupAssignmentScheduleRequest objects and their properties. + * The schedule requests for operations to create, update, delete, extend, and renew an assignment. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -142,7 +138,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new privilegedAccessGroupAssignmentScheduleRequest object. + * Create new navigation property to assignmentScheduleRequests for identityGovernance * @param body The request body * @return a {@link RequestInformation} */ @@ -151,7 +147,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new privilegedAccessGroupAssignmentScheduleRequest object. + * Create new navigation property to assignmentScheduleRequests for identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -176,7 +172,7 @@ public AssignmentScheduleRequestsRequestBuilder withUrl(@jakarta.annotation.Nonn return new AssignmentScheduleRequestsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the privilegedAccessGroupAssignmentScheduleRequest objects and their properties. + * The schedule requests for operations to create, update, delete, extend, and renew an assignment. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentschedulerequests/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentschedulerequests/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java index f1fc1ee1922..7477bcf4c5b 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentschedulerequests/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentschedulerequests/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java @@ -38,19 +38,21 @@ public FilterByCurrentUserWithOnRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/filterByCurrentUser(on='{on}'){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function filterByCurrentUser + * In PIM for groups, retrieve the requests for membership or ownership assignments for the calling principal to groups that are governed by PIM. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get() { return get(null); } /** - * Invoke function filterByCurrentUser + * In PIM for groups, retrieve the requests for membership or ownership assignments for the calling principal to groups that are governed by PIM. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, FilterByCurrentUserWithOnGetResponse::createFromDiscriminatorValue); } /** - * Invoke function filterByCurrentUser + * In PIM for groups, retrieve the requests for membership or ownership assignments for the calling principal to groups that are governed by PIM. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function filterByCurrentUser + * In PIM for groups, retrieve the requests for membership or ownership assignments for the calling principal to groups that are governed by PIM. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -90,7 +92,7 @@ public FilterByCurrentUserWithOnRequestBuilder withUrl(@jakarta.annotation.Nonnu return new FilterByCurrentUserWithOnRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function filterByCurrentUser + * In PIM for groups, retrieve the requests for membership or ownership assignments for the calling principal to groups that are governed by PIM. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentschedulerequests/item/PrivilegedAccessGroupAssignmentScheduleRequestItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentschedulerequests/item/PrivilegedAccessGroupAssignmentScheduleRequestItemRequestBuilder.java index 1d89967a79b..e91bb4e644f 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentschedulerequests/item/PrivilegedAccessGroupAssignmentScheduleRequestItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentschedulerequests/item/PrivilegedAccessGroupAssignmentScheduleRequestItemRequestBuilder.java @@ -100,21 +100,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a privilegedAccessGroupAssignmentScheduleRequest object. + * The schedule requests for operations to create, update, delete, extend, and renew an assignment. * @return a {@link PrivilegedAccessGroupAssignmentScheduleRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrivilegedAccessGroupAssignmentScheduleRequest get() { return get(null); } /** - * Read the properties and relationships of a privilegedAccessGroupAssignmentScheduleRequest object. + * The schedule requests for operations to create, update, delete, extend, and renew an assignment. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrivilegedAccessGroupAssignmentScheduleRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrivilegedAccessGroupAssignmentScheduleRequest get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -169,7 +167,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a privilegedAccessGroupAssignmentScheduleRequest object. + * The schedule requests for operations to create, update, delete, extend, and renew an assignment. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -177,7 +175,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a privilegedAccessGroupAssignmentScheduleRequest object. + * The schedule requests for operations to create, update, delete, extend, and renew an assignment. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -229,7 +227,7 @@ public PrivilegedAccessGroupAssignmentScheduleRequestItemRequestBuilder withUrl( public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a privilegedAccessGroupAssignmentScheduleRequest object. + * The schedule requests for operations to create, update, delete, extend, and renew an assignment. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentschedules/AssignmentSchedulesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentschedules/AssignmentSchedulesRequestBuilder.java index e5cdf391011..14b37844ef9 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentschedules/AssignmentSchedulesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentschedules/AssignmentSchedulesRequestBuilder.java @@ -71,21 +71,19 @@ public FilterByCurrentUserWithOnRequestBuilder filterByCurrentUserWithOn(@jakart return new FilterByCurrentUserWithOnRequestBuilder(pathParameters, requestAdapter, on); } /** - * Get a list of the privilegedAccessGroupAssignmentSchedule objects and their properties. + * The assignment schedules to activate a just-in-time access. * @return a {@link PrivilegedAccessGroupAssignmentScheduleCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrivilegedAccessGroupAssignmentScheduleCollectionResponse get() { return get(null); } /** - * Get a list of the privilegedAccessGroupAssignmentSchedule objects and their properties. + * The assignment schedules to activate a just-in-time access. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrivilegedAccessGroupAssignmentScheduleCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrivilegedAccessGroupAssignmentScheduleCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +118,7 @@ public PrivilegedAccessGroupAssignmentSchedule post(@jakarta.annotation.Nonnull return this.requestAdapter.send(requestInfo, errorMapping, PrivilegedAccessGroupAssignmentSchedule::createFromDiscriminatorValue); } /** - * Get a list of the privilegedAccessGroupAssignmentSchedule objects and their properties. + * The assignment schedules to activate a just-in-time access. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +126,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the privilegedAccessGroupAssignmentSchedule objects and their properties. + * The assignment schedules to activate a just-in-time access. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -174,7 +172,7 @@ public AssignmentSchedulesRequestBuilder withUrl(@jakarta.annotation.Nonnull fin return new AssignmentSchedulesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the privilegedAccessGroupAssignmentSchedule objects and their properties. + * The assignment schedules to activate a just-in-time access. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentschedules/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentschedules/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java index f7f14278b95..ce8bb694424 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentschedules/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentschedules/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java @@ -38,19 +38,21 @@ public FilterByCurrentUserWithOnRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/identityGovernance/privilegedAccess/group/assignmentSchedules/filterByCurrentUser(on='{on}'){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function filterByCurrentUser + * In PIM for groups, retrieve the schedules for membership or ownership assignments for the calling principal to groups that are governed by PIM. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get() { return get(null); } /** - * Invoke function filterByCurrentUser + * In PIM for groups, retrieve the schedules for membership or ownership assignments for the calling principal to groups that are governed by PIM. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, FilterByCurrentUserWithOnGetResponse::createFromDiscriminatorValue); } /** - * Invoke function filterByCurrentUser + * In PIM for groups, retrieve the schedules for membership or ownership assignments for the calling principal to groups that are governed by PIM. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function filterByCurrentUser + * In PIM for groups, retrieve the schedules for membership or ownership assignments for the calling principal to groups that are governed by PIM. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -90,7 +92,7 @@ public FilterByCurrentUserWithOnRequestBuilder withUrl(@jakarta.annotation.Nonnu return new FilterByCurrentUserWithOnRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function filterByCurrentUser + * In PIM for groups, retrieve the schedules for membership or ownership assignments for the calling principal to groups that are governed by PIM. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentschedules/item/PrivilegedAccessGroupAssignmentScheduleItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentschedules/item/PrivilegedAccessGroupAssignmentScheduleItemRequestBuilder.java index 5b2e90323e6..e6f303c65b9 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentschedules/item/PrivilegedAccessGroupAssignmentScheduleItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/assignmentschedules/item/PrivilegedAccessGroupAssignmentScheduleItemRequestBuilder.java @@ -82,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a privilegedAccessGroupAssignmentSchedule object. + * The assignment schedules to activate a just-in-time access. * @return a {@link PrivilegedAccessGroupAssignmentSchedule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrivilegedAccessGroupAssignmentSchedule get() { return get(null); } /** - * Read the properties and relationships of a privilegedAccessGroupAssignmentSchedule object. + * The assignment schedules to activate a just-in-time access. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrivilegedAccessGroupAssignmentSchedule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrivilegedAccessGroupAssignmentSchedule get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -151,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a privilegedAccessGroupAssignmentSchedule object. + * The assignment schedules to activate a just-in-time access. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -159,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a privilegedAccessGroupAssignmentSchedule object. + * The assignment schedules to activate a just-in-time access. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -211,7 +209,7 @@ public PrivilegedAccessGroupAssignmentScheduleItemRequestBuilder withUrl(@jakart public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a privilegedAccessGroupAssignmentSchedule object. + * The assignment schedules to activate a just-in-time access. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/eligibilityscheduleinstances/EligibilityScheduleInstancesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/eligibilityscheduleinstances/EligibilityScheduleInstancesRequestBuilder.java index 23e57549d3d..20f4607a1dd 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/eligibilityscheduleinstances/EligibilityScheduleInstancesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/eligibilityscheduleinstances/EligibilityScheduleInstancesRequestBuilder.java @@ -71,21 +71,19 @@ public FilterByCurrentUserWithOnRequestBuilder filterByCurrentUserWithOn(@jakart return new FilterByCurrentUserWithOnRequestBuilder(pathParameters, requestAdapter, on); } /** - * Get a list of the privilegedAccessGroupEligibilityScheduleInstance objects and their properties. + * The instances of eligibility schedules to activate a just-in-time access. * @return a {@link PrivilegedAccessGroupEligibilityScheduleInstanceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrivilegedAccessGroupEligibilityScheduleInstanceCollectionResponse get() { return get(null); } /** - * Get a list of the privilegedAccessGroupEligibilityScheduleInstance objects and their properties. + * The instances of eligibility schedules to activate a just-in-time access. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrivilegedAccessGroupEligibilityScheduleInstanceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrivilegedAccessGroupEligibilityScheduleInstanceCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +118,7 @@ public PrivilegedAccessGroupEligibilityScheduleInstance post(@jakarta.annotation return this.requestAdapter.send(requestInfo, errorMapping, PrivilegedAccessGroupEligibilityScheduleInstance::createFromDiscriminatorValue); } /** - * Get a list of the privilegedAccessGroupEligibilityScheduleInstance objects and their properties. + * The instances of eligibility schedules to activate a just-in-time access. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +126,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the privilegedAccessGroupEligibilityScheduleInstance objects and their properties. + * The instances of eligibility schedules to activate a just-in-time access. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -174,7 +172,7 @@ public EligibilityScheduleInstancesRequestBuilder withUrl(@jakarta.annotation.No return new EligibilityScheduleInstancesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the privilegedAccessGroupEligibilityScheduleInstance objects and their properties. + * The instances of eligibility schedules to activate a just-in-time access. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/eligibilityscheduleinstances/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/eligibilityscheduleinstances/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java index 9e0fb3a790f..137c2df122b 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/eligibilityscheduleinstances/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/eligibilityscheduleinstances/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java @@ -38,19 +38,21 @@ public FilterByCurrentUserWithOnRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/filterByCurrentUser(on='{on}'){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function filterByCurrentUser + * Return instances of membership and ownership eligibility schedules for the calling principal. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get() { return get(null); } /** - * Invoke function filterByCurrentUser + * Return instances of membership and ownership eligibility schedules for the calling principal. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, FilterByCurrentUserWithOnGetResponse::createFromDiscriminatorValue); } /** - * Invoke function filterByCurrentUser + * Return instances of membership and ownership eligibility schedules for the calling principal. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function filterByCurrentUser + * Return instances of membership and ownership eligibility schedules for the calling principal. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -90,7 +92,7 @@ public FilterByCurrentUserWithOnRequestBuilder withUrl(@jakarta.annotation.Nonnu return new FilterByCurrentUserWithOnRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function filterByCurrentUser + * Return instances of membership and ownership eligibility schedules for the calling principal. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/eligibilityscheduleinstances/item/PrivilegedAccessGroupEligibilityScheduleInstanceItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/eligibilityscheduleinstances/item/PrivilegedAccessGroupEligibilityScheduleInstanceItemRequestBuilder.java index 466410d2625..9d678fb7008 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/eligibilityscheduleinstances/item/PrivilegedAccessGroupEligibilityScheduleInstanceItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/eligibilityscheduleinstances/item/PrivilegedAccessGroupEligibilityScheduleInstanceItemRequestBuilder.java @@ -73,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a privilegedAccessGroupEligibilityScheduleInstance object. + * The instances of eligibility schedules to activate a just-in-time access. * @return a {@link PrivilegedAccessGroupEligibilityScheduleInstance} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrivilegedAccessGroupEligibilityScheduleInstance get() { return get(null); } /** - * Read the properties and relationships of a privilegedAccessGroupEligibilityScheduleInstance object. + * The instances of eligibility schedules to activate a just-in-time access. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrivilegedAccessGroupEligibilityScheduleInstance} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrivilegedAccessGroupEligibilityScheduleInstance get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -142,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a privilegedAccessGroupEligibilityScheduleInstance object. + * The instances of eligibility schedules to activate a just-in-time access. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -150,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a privilegedAccessGroupEligibilityScheduleInstance object. + * The instances of eligibility schedules to activate a just-in-time access. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -202,7 +200,7 @@ public PrivilegedAccessGroupEligibilityScheduleInstanceItemRequestBuilder withUr public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a privilegedAccessGroupEligibilityScheduleInstance object. + * The instances of eligibility schedules to activate a just-in-time access. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/eligibilityschedulerequests/EligibilityScheduleRequestsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/eligibilityschedulerequests/EligibilityScheduleRequestsRequestBuilder.java index b23eb080d2f..1756920a3d3 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/eligibilityschedulerequests/EligibilityScheduleRequestsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/eligibilityschedulerequests/EligibilityScheduleRequestsRequestBuilder.java @@ -71,21 +71,19 @@ public FilterByCurrentUserWithOnRequestBuilder filterByCurrentUserWithOn(@jakart return new FilterByCurrentUserWithOnRequestBuilder(pathParameters, requestAdapter, on); } /** - * Get a list of the privilegedAccessGroupEligibilityScheduleRequest objects and their properties. + * The schedule requests for operations to create, update, delete, extend, and renew an eligibility. * @return a {@link PrivilegedAccessGroupEligibilityScheduleRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrivilegedAccessGroupEligibilityScheduleRequestCollectionResponse get() { return get(null); } /** - * Get a list of the privilegedAccessGroupEligibilityScheduleRequest objects and their properties. + * The schedule requests for operations to create, update, delete, extend, and renew an eligibility. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrivilegedAccessGroupEligibilityScheduleRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrivilegedAccessGroupEligibilityScheduleRequestCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -95,23 +93,21 @@ public PrivilegedAccessGroupEligibilityScheduleRequestCollectionResponse get(@ja return this.requestAdapter.send(requestInfo, errorMapping, PrivilegedAccessGroupEligibilityScheduleRequestCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new privilegedAccessGroupEligibilityScheduleRequest object. + * Create new navigation property to eligibilityScheduleRequests for identityGovernance * @param body The request body * @return a {@link PrivilegedAccessGroupEligibilityScheduleRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrivilegedAccessGroupEligibilityScheduleRequest post(@jakarta.annotation.Nonnull final PrivilegedAccessGroupEligibilityScheduleRequest body) { return post(body, null); } /** - * Create a new privilegedAccessGroupEligibilityScheduleRequest object. + * Create new navigation property to eligibilityScheduleRequests for identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrivilegedAccessGroupEligibilityScheduleRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrivilegedAccessGroupEligibilityScheduleRequest post(@jakarta.annotation.Nonnull final PrivilegedAccessGroupEligibilityScheduleRequest body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -122,7 +118,7 @@ public PrivilegedAccessGroupEligibilityScheduleRequest post(@jakarta.annotation. return this.requestAdapter.send(requestInfo, errorMapping, PrivilegedAccessGroupEligibilityScheduleRequest::createFromDiscriminatorValue); } /** - * Get a list of the privilegedAccessGroupEligibilityScheduleRequest objects and their properties. + * The schedule requests for operations to create, update, delete, extend, and renew an eligibility. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -130,7 +126,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the privilegedAccessGroupEligibilityScheduleRequest objects and their properties. + * The schedule requests for operations to create, update, delete, extend, and renew an eligibility. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -142,7 +138,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new privilegedAccessGroupEligibilityScheduleRequest object. + * Create new navigation property to eligibilityScheduleRequests for identityGovernance * @param body The request body * @return a {@link RequestInformation} */ @@ -151,7 +147,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new privilegedAccessGroupEligibilityScheduleRequest object. + * Create new navigation property to eligibilityScheduleRequests for identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -176,7 +172,7 @@ public EligibilityScheduleRequestsRequestBuilder withUrl(@jakarta.annotation.Non return new EligibilityScheduleRequestsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the privilegedAccessGroupEligibilityScheduleRequest objects and their properties. + * The schedule requests for operations to create, update, delete, extend, and renew an eligibility. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/eligibilityschedulerequests/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/eligibilityschedulerequests/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java index 95b9ee89631..54551c60a08 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/eligibilityschedulerequests/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/eligibilityschedulerequests/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java @@ -38,19 +38,21 @@ public FilterByCurrentUserWithOnRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/filterByCurrentUser(on='{on}'){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function filterByCurrentUser + * In PIM for groups, retrieve the requests for membership or ownership eligibilities for the calling principal to groups that are governed by PIM. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get() { return get(null); } /** - * Invoke function filterByCurrentUser + * In PIM for groups, retrieve the requests for membership or ownership eligibilities for the calling principal to groups that are governed by PIM. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, FilterByCurrentUserWithOnGetResponse::createFromDiscriminatorValue); } /** - * Invoke function filterByCurrentUser + * In PIM for groups, retrieve the requests for membership or ownership eligibilities for the calling principal to groups that are governed by PIM. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function filterByCurrentUser + * In PIM for groups, retrieve the requests for membership or ownership eligibilities for the calling principal to groups that are governed by PIM. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -90,7 +92,7 @@ public FilterByCurrentUserWithOnRequestBuilder withUrl(@jakarta.annotation.Nonnu return new FilterByCurrentUserWithOnRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function filterByCurrentUser + * In PIM for groups, retrieve the requests for membership or ownership eligibilities for the calling principal to groups that are governed by PIM. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/eligibilityschedulerequests/item/PrivilegedAccessGroupEligibilityScheduleRequestItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/eligibilityschedulerequests/item/PrivilegedAccessGroupEligibilityScheduleRequestItemRequestBuilder.java index 170fcf84339..87f79e2e56d 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/eligibilityschedulerequests/item/PrivilegedAccessGroupEligibilityScheduleRequestItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/eligibilityschedulerequests/item/PrivilegedAccessGroupEligibilityScheduleRequestItemRequestBuilder.java @@ -91,21 +91,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a privilegedAccessGroupEligibilityScheduleRequest object. + * The schedule requests for operations to create, update, delete, extend, and renew an eligibility. * @return a {@link PrivilegedAccessGroupEligibilityScheduleRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrivilegedAccessGroupEligibilityScheduleRequest get() { return get(null); } /** - * Read the properties and relationships of a privilegedAccessGroupEligibilityScheduleRequest object. + * The schedule requests for operations to create, update, delete, extend, and renew an eligibility. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrivilegedAccessGroupEligibilityScheduleRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrivilegedAccessGroupEligibilityScheduleRequest get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -160,7 +158,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a privilegedAccessGroupEligibilityScheduleRequest object. + * The schedule requests for operations to create, update, delete, extend, and renew an eligibility. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -168,7 +166,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a privilegedAccessGroupEligibilityScheduleRequest object. + * The schedule requests for operations to create, update, delete, extend, and renew an eligibility. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -220,7 +218,7 @@ public PrivilegedAccessGroupEligibilityScheduleRequestItemRequestBuilder withUrl public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a privilegedAccessGroupEligibilityScheduleRequest object. + * The schedule requests for operations to create, update, delete, extend, and renew an eligibility. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/eligibilityschedules/EligibilitySchedulesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/eligibilityschedules/EligibilitySchedulesRequestBuilder.java index 5e64eb2df04..9528dcaa55a 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/eligibilityschedules/EligibilitySchedulesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/eligibilityschedules/EligibilitySchedulesRequestBuilder.java @@ -71,21 +71,19 @@ public FilterByCurrentUserWithOnRequestBuilder filterByCurrentUserWithOn(@jakart return new FilterByCurrentUserWithOnRequestBuilder(pathParameters, requestAdapter, on); } /** - * Get a list of the privilegedAccessGroupEligibilitySchedule objects and their properties. + * The eligibility schedules to activate a just-in-time access. * @return a {@link PrivilegedAccessGroupEligibilityScheduleCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrivilegedAccessGroupEligibilityScheduleCollectionResponse get() { return get(null); } /** - * Get a list of the privilegedAccessGroupEligibilitySchedule objects and their properties. + * The eligibility schedules to activate a just-in-time access. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrivilegedAccessGroupEligibilityScheduleCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrivilegedAccessGroupEligibilityScheduleCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +118,7 @@ public PrivilegedAccessGroupEligibilitySchedule post(@jakarta.annotation.Nonnull return this.requestAdapter.send(requestInfo, errorMapping, PrivilegedAccessGroupEligibilitySchedule::createFromDiscriminatorValue); } /** - * Get a list of the privilegedAccessGroupEligibilitySchedule objects and their properties. + * The eligibility schedules to activate a just-in-time access. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +126,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the privilegedAccessGroupEligibilitySchedule objects and their properties. + * The eligibility schedules to activate a just-in-time access. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -174,7 +172,7 @@ public EligibilitySchedulesRequestBuilder withUrl(@jakarta.annotation.Nonnull fi return new EligibilitySchedulesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the privilegedAccessGroupEligibilitySchedule objects and their properties. + * The eligibility schedules to activate a just-in-time access. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/eligibilityschedules/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/eligibilityschedules/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java index 1af2bdaa97d..91f6225fa30 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/eligibilityschedules/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/eligibilityschedules/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java @@ -38,19 +38,21 @@ public FilterByCurrentUserWithOnRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/identityGovernance/privilegedAccess/group/eligibilitySchedules/filterByCurrentUser(on='{on}'){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function filterByCurrentUser + * Retrieve schedules of membership and ownership eligibility requests for the calling principal. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get() { return get(null); } /** - * Invoke function filterByCurrentUser + * Retrieve schedules of membership and ownership eligibility requests for the calling principal. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, FilterByCurrentUserWithOnGetResponse::createFromDiscriminatorValue); } /** - * Invoke function filterByCurrentUser + * Retrieve schedules of membership and ownership eligibility requests for the calling principal. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function filterByCurrentUser + * Retrieve schedules of membership and ownership eligibility requests for the calling principal. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -90,7 +92,7 @@ public FilterByCurrentUserWithOnRequestBuilder withUrl(@jakarta.annotation.Nonnu return new FilterByCurrentUserWithOnRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function filterByCurrentUser + * Retrieve schedules of membership and ownership eligibility requests for the calling principal. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/eligibilityschedules/item/PrivilegedAccessGroupEligibilityScheduleItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/eligibilityschedules/item/PrivilegedAccessGroupEligibilityScheduleItemRequestBuilder.java index 2820d8a4074..e21fa5dbf92 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/eligibilityschedules/item/PrivilegedAccessGroupEligibilityScheduleItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/privilegedaccess/group/eligibilityschedules/item/PrivilegedAccessGroupEligibilityScheduleItemRequestBuilder.java @@ -73,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a privilegedAccessGroupEligibilitySchedule object. + * The eligibility schedules to activate a just-in-time access. * @return a {@link PrivilegedAccessGroupEligibilitySchedule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrivilegedAccessGroupEligibilitySchedule get() { return get(null); } /** - * Read the properties and relationships of a privilegedAccessGroupEligibilitySchedule object. + * The eligibility schedules to activate a just-in-time access. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrivilegedAccessGroupEligibilitySchedule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrivilegedAccessGroupEligibilitySchedule get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -142,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a privilegedAccessGroupEligibilitySchedule object. + * The eligibility schedules to activate a just-in-time access. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -150,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a privilegedAccessGroupEligibilitySchedule object. + * The eligibility schedules to activate a just-in-time access. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -202,7 +200,7 @@ public PrivilegedAccessGroupEligibilityScheduleItemRequestBuilder withUrl(@jakar public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a privilegedAccessGroupEligibilitySchedule object. + * The eligibility schedules to activate a just-in-time access. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/termsofuse/agreements/AgreementsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/termsofuse/agreements/AgreementsRequestBuilder.java index f03e68ec16f..a2f5beb8cb9 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/termsofuse/agreements/AgreementsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/termsofuse/agreements/AgreementsRequestBuilder.java @@ -60,21 +60,19 @@ public AgreementsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/identityGovernance/termsOfUse/agreements{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of agreement objects. + * Represents a tenant's customizable terms of use agreement that's created and managed with Microsoft Entra ID Governance. * @return a {@link AgreementCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AgreementCollectionResponse get() { return get(null); } /** - * Retrieve a list of agreement objects. + * Represents a tenant's customizable terms of use agreement that's created and managed with Microsoft Entra ID Governance. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AgreementCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AgreementCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public AgreementCollectionResponse get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, AgreementCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new agreement object. + * Create new navigation property to agreements for identityGovernance * @param body The request body * @return a {@link Agreement} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Agreement post(@jakarta.annotation.Nonnull final Agreement body) { return post(body, null); } /** - * Create a new agreement object. + * Create new navigation property to agreements for identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Agreement} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Agreement post(@jakarta.annotation.Nonnull final Agreement body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public Agreement post(@jakarta.annotation.Nonnull final Agreement body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, Agreement::createFromDiscriminatorValue); } /** - * Retrieve a list of agreement objects. + * Represents a tenant's customizable terms of use agreement that's created and managed with Microsoft Entra ID Governance. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of agreement objects. + * Represents a tenant's customizable terms of use agreement that's created and managed with Microsoft Entra ID Governance. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new agreement object. + * Create new navigation property to agreements for identityGovernance * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new agreement object. + * Create new navigation property to agreements for identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public AgreementsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new AgreementsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of agreement objects. + * Represents a tenant's customizable terms of use agreement that's created and managed with Microsoft Entra ID Governance. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/termsofuse/agreements/item/AgreementItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/termsofuse/agreements/item/AgreementItemRequestBuilder.java index bbfee33be6c..e9c7fa569fe 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/termsofuse/agreements/item/AgreementItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/termsofuse/agreements/item/AgreementItemRequestBuilder.java @@ -64,18 +64,16 @@ public AgreementItemRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/identityGovernance/termsOfUse/agreements/{agreement%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an agreement object. + * Delete navigation property agreements for identityGovernance * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an agreement object. + * Delete navigation property agreements for identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -84,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of an agreement object. + * Represents a tenant's customizable terms of use agreement that's created and managed with Microsoft Entra ID Governance. * @return a {@link Agreement} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Agreement get() { return get(null); } /** - * Retrieve the properties and relationships of an agreement object. + * Represents a tenant's customizable terms of use agreement that's created and managed with Microsoft Entra ID Governance. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Agreement} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Agreement get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,23 +104,21 @@ public Agreement get(@jakarta.annotation.Nullable final java.util.function.Consu return this.requestAdapter.send(requestInfo, errorMapping, Agreement::createFromDiscriminatorValue); } /** - * Update the properties of an agreement object. + * Update the navigation property agreements in identityGovernance * @param body The request body * @return a {@link Agreement} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Agreement patch(@jakarta.annotation.Nonnull final Agreement body) { return patch(body, null); } /** - * Update the properties of an agreement object. + * Update the navigation property agreements in identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Agreement} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Agreement patch(@jakarta.annotation.Nonnull final Agreement body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +129,7 @@ public Agreement patch(@jakarta.annotation.Nonnull final Agreement body, @jakart return this.requestAdapter.send(requestInfo, errorMapping, Agreement::createFromDiscriminatorValue); } /** - * Delete an agreement object. + * Delete navigation property agreements for identityGovernance * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +137,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an agreement object. + * Delete navigation property agreements for identityGovernance * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of an agreement object. + * Represents a tenant's customizable terms of use agreement that's created and managed with Microsoft Entra ID Governance. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -163,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of an agreement object. + * Represents a tenant's customizable terms of use agreement that's created and managed with Microsoft Entra ID Governance. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -175,7 +169,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an agreement object. + * Update the navigation property agreements in identityGovernance * @param body The request body * @return a {@link RequestInformation} */ @@ -184,7 +178,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an agreement object. + * Update the navigation property agreements in identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -215,7 +209,7 @@ public AgreementItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of an agreement object. + * Represents a tenant's customizable terms of use agreement that's created and managed with Microsoft Entra ID Governance. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/termsofuse/agreements/item/acceptances/AcceptancesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/termsofuse/agreements/item/acceptances/AcceptancesRequestBuilder.java index e0abfc8a86f..91c223a472c 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/termsofuse/agreements/item/acceptances/AcceptancesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/termsofuse/agreements/item/acceptances/AcceptancesRequestBuilder.java @@ -60,21 +60,19 @@ public AcceptancesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/identityGovernance/termsOfUse/agreements/{agreement%2Did}/acceptances{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the details about the acceptance records for a specific agreement. + * Read-only. Information about acceptances of this agreement. * @return a {@link AgreementAcceptanceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AgreementAcceptanceCollectionResponse get() { return get(null); } /** - * Get the details about the acceptance records for a specific agreement. + * Read-only. Information about acceptances of this agreement. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AgreementAcceptanceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AgreementAcceptanceCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public AgreementAcceptance post(@jakarta.annotation.Nonnull final AgreementAccep return this.requestAdapter.send(requestInfo, errorMapping, AgreementAcceptance::createFromDiscriminatorValue); } /** - * Get the details about the acceptance records for a specific agreement. + * Read-only. Information about acceptances of this agreement. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the details about the acceptance records for a specific agreement. + * Read-only. Information about acceptances of this agreement. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public AcceptancesRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AcceptancesRequestBuilder(rawUrl, requestAdapter); } /** - * Get the details about the acceptance records for a specific agreement. + * Read-only. Information about acceptances of this agreement. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/termsofuse/agreements/item/file/FileRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/termsofuse/agreements/item/file/FileRequestBuilder.java index e338a959df8..498795b323a 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/termsofuse/agreements/item/file/FileRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/termsofuse/agreements/item/file/FileRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the details of an agreement file, including the language and version information. The default file can have multiple versions, each with its own language, that can be retrieved by specifying the Accept-Language header. + * Default PDF linked to this agreement. * @return a {@link AgreementFile} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AgreementFile get() { return get(null); } /** - * Retrieve the details of an agreement file, including the language and version information. The default file can have multiple versions, each with its own language, that can be retrieved by specifying the Accept-Language header. + * Default PDF linked to this agreement. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AgreementFile} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AgreementFile get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the details of an agreement file, including the language and version information. The default file can have multiple versions, each with its own language, that can be retrieved by specifying the Accept-Language header. + * Default PDF linked to this agreement. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the details of an agreement file, including the language and version information. The default file can have multiple versions, each with its own language, that can be retrieved by specifying the Accept-Language header. + * Default PDF linked to this agreement. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public FileRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the details of an agreement file, including the language and version information. The default file can have multiple versions, each with its own language, that can be retrieved by specifying the Accept-Language header. + * Default PDF linked to this agreement. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/termsofuse/agreements/item/file/localizations/LocalizationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/termsofuse/agreements/item/file/localizations/LocalizationsRequestBuilder.java index f6d9cb82af9..7d13ae59537 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/termsofuse/agreements/item/file/localizations/LocalizationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/termsofuse/agreements/item/file/localizations/LocalizationsRequestBuilder.java @@ -60,21 +60,19 @@ public LocalizationsRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/identityGovernance/termsOfUse/agreements/{agreement%2Did}/file/localizations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the default and localized agreement files. + * The localized version of the terms of use agreement files attached to the agreement. * @return a {@link AgreementFileLocalizationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AgreementFileLocalizationCollectionResponse get() { return get(null); } /** - * Get a list of the default and localized agreement files. + * The localized version of the terms of use agreement files attached to the agreement. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AgreementFileLocalizationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AgreementFileLocalizationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public AgreementFileLocalization post(@jakarta.annotation.Nonnull final Agreemen return this.requestAdapter.send(requestInfo, errorMapping, AgreementFileLocalization::createFromDiscriminatorValue); } /** - * Get a list of the default and localized agreement files. + * The localized version of the terms of use agreement files attached to the agreement. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the default and localized agreement files. + * The localized version of the terms of use agreement files attached to the agreement. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public LocalizationsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new LocalizationsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the default and localized agreement files. + * The localized version of the terms of use agreement files attached to the agreement. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identitygovernance/termsofuse/agreements/item/files/FilesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identitygovernance/termsofuse/agreements/item/files/FilesRequestBuilder.java index 4715f51ae75..934ac76be23 100644 --- a/src/main/java/com/microsoft/graph/generated/identitygovernance/termsofuse/agreements/item/files/FilesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identitygovernance/termsofuse/agreements/item/files/FilesRequestBuilder.java @@ -82,23 +82,21 @@ public AgreementFileLocalizationCollectionResponse get(@jakarta.annotation.Nulla return this.requestAdapter.send(requestInfo, errorMapping, AgreementFileLocalizationCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new localized agreement file. + * Create new navigation property to files for identityGovernance * @param body The request body * @return a {@link AgreementFileLocalization} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AgreementFileLocalization post(@jakarta.annotation.Nonnull final AgreementFileLocalization body) { return post(body, null); } /** - * Create a new localized agreement file. + * Create new navigation property to files for identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AgreementFileLocalization} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AgreementFileLocalization post(@jakarta.annotation.Nonnull final AgreementFileLocalization body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -129,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new localized agreement file. + * Create new navigation property to files for identityGovernance * @param body The request body * @return a {@link RequestInformation} */ @@ -138,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new localized agreement file. + * Create new navigation property to files for identityGovernance * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/identityprotection/riskdetections/RiskDetectionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identityprotection/riskdetections/RiskDetectionsRequestBuilder.java index 90c85f63f3f..73e95cd1873 100644 --- a/src/main/java/com/microsoft/graph/generated/identityprotection/riskdetections/RiskDetectionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identityprotection/riskdetections/RiskDetectionsRequestBuilder.java @@ -60,21 +60,19 @@ public RiskDetectionsRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/identityProtection/riskDetections{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the riskDetection objects and their properties. + * Risk detection in Microsoft Entra ID Protection and the associated information about the detection. * @return a {@link RiskDetectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RiskDetectionCollectionResponse get() { return get(null); } /** - * Get a list of the riskDetection objects and their properties. + * Risk detection in Microsoft Entra ID Protection and the associated information about the detection. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RiskDetectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RiskDetectionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public RiskDetection post(@jakarta.annotation.Nonnull final RiskDetection body, return this.requestAdapter.send(requestInfo, errorMapping, RiskDetection::createFromDiscriminatorValue); } /** - * Get a list of the riskDetection objects and their properties. + * Risk detection in Microsoft Entra ID Protection and the associated information about the detection. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the riskDetection objects and their properties. + * Risk detection in Microsoft Entra ID Protection and the associated information about the detection. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public RiskDetectionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new RiskDetectionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the riskDetection objects and their properties. + * Risk detection in Microsoft Entra ID Protection and the associated information about the detection. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identityprotection/riskdetections/item/RiskDetectionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identityprotection/riskdetections/item/RiskDetectionItemRequestBuilder.java index dc9e34bba77..00acc3bb4a2 100644 --- a/src/main/java/com/microsoft/graph/generated/identityprotection/riskdetections/item/RiskDetectionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identityprotection/riskdetections/item/RiskDetectionItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a riskDetection object. + * Risk detection in Microsoft Entra ID Protection and the associated information about the detection. * @return a {@link RiskDetection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RiskDetection get() { return get(null); } /** - * Read the properties and relationships of a riskDetection object. + * Risk detection in Microsoft Entra ID Protection and the associated information about the detection. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RiskDetection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RiskDetection get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a riskDetection object. + * Risk detection in Microsoft Entra ID Protection and the associated information about the detection. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a riskDetection object. + * Risk detection in Microsoft Entra ID Protection and the associated information about the detection. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public RiskDetectionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a riskDetection object. + * Risk detection in Microsoft Entra ID Protection and the associated information about the detection. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identityprotection/riskyserviceprincipals/RiskyServicePrincipalsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identityprotection/riskyserviceprincipals/RiskyServicePrincipalsRequestBuilder.java index f3129f9f16e..5f28acd56c8 100644 --- a/src/main/java/com/microsoft/graph/generated/identityprotection/riskyserviceprincipals/RiskyServicePrincipalsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identityprotection/riskyserviceprincipals/RiskyServicePrincipalsRequestBuilder.java @@ -78,21 +78,19 @@ public RiskyServicePrincipalsRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/identityProtection/riskyServicePrincipals{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the properties and relationships of riskyServicePrincipal objects. + * Microsoft Entra service principals that are at risk. * @return a {@link RiskyServicePrincipalCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RiskyServicePrincipalCollectionResponse get() { return get(null); } /** - * Retrieve the properties and relationships of riskyServicePrincipal objects. + * Microsoft Entra service principals that are at risk. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RiskyServicePrincipalCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RiskyServicePrincipalCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -127,7 +125,7 @@ public RiskyServicePrincipal post(@jakarta.annotation.Nonnull final RiskyService return this.requestAdapter.send(requestInfo, errorMapping, RiskyServicePrincipal::createFromDiscriminatorValue); } /** - * Retrieve the properties and relationships of riskyServicePrincipal objects. + * Microsoft Entra service principals that are at risk. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -135,7 +133,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of riskyServicePrincipal objects. + * Microsoft Entra service principals that are at risk. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -181,7 +179,7 @@ public RiskyServicePrincipalsRequestBuilder withUrl(@jakarta.annotation.Nonnull return new RiskyServicePrincipalsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the properties and relationships of riskyServicePrincipal objects. + * Microsoft Entra service principals that are at risk. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identityprotection/riskyserviceprincipals/item/RiskyServicePrincipalItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identityprotection/riskyserviceprincipals/item/RiskyServicePrincipalItemRequestBuilder.java index c7c6ee241de..b58dd71cdcf 100644 --- a/src/main/java/com/microsoft/graph/generated/identityprotection/riskyserviceprincipals/item/RiskyServicePrincipalItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identityprotection/riskyserviceprincipals/item/RiskyServicePrincipalItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a riskyServicePrincipal object. + * Microsoft Entra service principals that are at risk. * @return a {@link RiskyServicePrincipal} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RiskyServicePrincipal get() { return get(null); } /** - * Read the properties and relationships of a riskyServicePrincipal object. + * Microsoft Entra service principals that are at risk. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RiskyServicePrincipal} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RiskyServicePrincipal get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a riskyServicePrincipal object. + * Microsoft Entra service principals that are at risk. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a riskyServicePrincipal object. + * Microsoft Entra service principals that are at risk. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public RiskyServicePrincipalItemRequestBuilder withUrl(@jakarta.annotation.Nonnu public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a riskyServicePrincipal object. + * Microsoft Entra service principals that are at risk. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identityprotection/riskyserviceprincipals/item/history/HistoryRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identityprotection/riskyserviceprincipals/item/history/HistoryRequestBuilder.java index 715b8e8f597..b5fb0890877 100644 --- a/src/main/java/com/microsoft/graph/generated/identityprotection/riskyserviceprincipals/item/history/HistoryRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identityprotection/riskyserviceprincipals/item/history/HistoryRequestBuilder.java @@ -60,21 +60,19 @@ public HistoryRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/identityProtection/riskyServicePrincipals/{riskyServicePrincipal%2Did}/history{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the risk history of a riskyServicePrincipal object. + * Represents the risk history of Microsoft Entra service principals. * @return a {@link RiskyServicePrincipalHistoryItemCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RiskyServicePrincipalHistoryItemCollectionResponse get() { return get(null); } /** - * Get the risk history of a riskyServicePrincipal object. + * Represents the risk history of Microsoft Entra service principals. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RiskyServicePrincipalHistoryItemCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RiskyServicePrincipalHistoryItemCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public RiskyServicePrincipalHistoryItem post(@jakarta.annotation.Nonnull final R return this.requestAdapter.send(requestInfo, errorMapping, RiskyServicePrincipalHistoryItem::createFromDiscriminatorValue); } /** - * Get the risk history of a riskyServicePrincipal object. + * Represents the risk history of Microsoft Entra service principals. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the risk history of a riskyServicePrincipal object. + * Represents the risk history of Microsoft Entra service principals. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public HistoryRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new HistoryRequestBuilder(rawUrl, requestAdapter); } /** - * Get the risk history of a riskyServicePrincipal object. + * Represents the risk history of Microsoft Entra service principals. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identityprotection/riskyusers/RiskyUsersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identityprotection/riskyusers/RiskyUsersRequestBuilder.java index 35f93f3644a..871e1f5ffae 100644 --- a/src/main/java/com/microsoft/graph/generated/identityprotection/riskyusers/RiskyUsersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identityprotection/riskyusers/RiskyUsersRequestBuilder.java @@ -78,21 +78,19 @@ public RiskyUsersRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/identityProtection/riskyUsers{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the riskyUser objects and their properties. + * Users that are flagged as at-risk by Microsoft Entra ID Protection. * @return a {@link RiskyUserCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RiskyUserCollectionResponse get() { return get(null); } /** - * Get a list of the riskyUser objects and their properties. + * Users that are flagged as at-risk by Microsoft Entra ID Protection. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RiskyUserCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RiskyUserCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -127,7 +125,7 @@ public RiskyUser post(@jakarta.annotation.Nonnull final RiskyUser body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, RiskyUser::createFromDiscriminatorValue); } /** - * Get a list of the riskyUser objects and their properties. + * Users that are flagged as at-risk by Microsoft Entra ID Protection. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -135,7 +133,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the riskyUser objects and their properties. + * Users that are flagged as at-risk by Microsoft Entra ID Protection. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -181,7 +179,7 @@ public RiskyUsersRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new RiskyUsersRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the riskyUser objects and their properties. + * Users that are flagged as at-risk by Microsoft Entra ID Protection. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identityprotection/riskyusers/item/RiskyUserItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identityprotection/riskyusers/item/RiskyUserItemRequestBuilder.java index 106138f0456..9c5175a0eef 100644 --- a/src/main/java/com/microsoft/graph/generated/identityprotection/riskyusers/item/RiskyUserItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identityprotection/riskyusers/item/RiskyUserItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a riskyUser object. + * Users that are flagged as at-risk by Microsoft Entra ID Protection. * @return a {@link RiskyUser} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RiskyUser get() { return get(null); } /** - * Read the properties and relationships of a riskyUser object. + * Users that are flagged as at-risk by Microsoft Entra ID Protection. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RiskyUser} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RiskyUser get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a riskyUser object. + * Users that are flagged as at-risk by Microsoft Entra ID Protection. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a riskyUser object. + * Users that are flagged as at-risk by Microsoft Entra ID Protection. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public RiskyUserItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a riskyUser object. + * Users that are flagged as at-risk by Microsoft Entra ID Protection. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identityprotection/riskyusers/item/history/HistoryRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identityprotection/riskyusers/item/history/HistoryRequestBuilder.java index bce5215fbf0..db88dda423c 100644 --- a/src/main/java/com/microsoft/graph/generated/identityprotection/riskyusers/item/history/HistoryRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identityprotection/riskyusers/item/history/HistoryRequestBuilder.java @@ -60,21 +60,19 @@ public HistoryRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/identityProtection/riskyUsers/{riskyUser%2Did}/history{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Read the properties and relationships of a riskyUserHistoryItem object. + * The activity related to user risk level change * @return a {@link RiskyUserHistoryItemCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RiskyUserHistoryItemCollectionResponse get() { return get(null); } /** - * Read the properties and relationships of a riskyUserHistoryItem object. + * The activity related to user risk level change * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RiskyUserHistoryItemCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RiskyUserHistoryItemCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public RiskyUserHistoryItem post(@jakarta.annotation.Nonnull final RiskyUserHist return this.requestAdapter.send(requestInfo, errorMapping, RiskyUserHistoryItem::createFromDiscriminatorValue); } /** - * Read the properties and relationships of a riskyUserHistoryItem object. + * The activity related to user risk level change * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a riskyUserHistoryItem object. + * The activity related to user risk level change * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public HistoryRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new HistoryRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of a riskyUserHistoryItem object. + * The activity related to user risk level change */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identityprotection/serviceprincipalriskdetections/ServicePrincipalRiskDetectionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identityprotection/serviceprincipalriskdetections/ServicePrincipalRiskDetectionsRequestBuilder.java index b4f72cd42bc..851f759a032 100644 --- a/src/main/java/com/microsoft/graph/generated/identityprotection/serviceprincipalriskdetections/ServicePrincipalRiskDetectionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identityprotection/serviceprincipalriskdetections/ServicePrincipalRiskDetectionsRequestBuilder.java @@ -60,21 +60,19 @@ public ServicePrincipalRiskDetectionsRequestBuilder(@jakarta.annotation.Nonnull super(requestAdapter, "{+baseurl}/identityProtection/servicePrincipalRiskDetections{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the properties of a collection of servicePrincipalRiskDetection objects. + * Represents information about detected at-risk service principals in a Microsoft Entra tenant. * @return a {@link ServicePrincipalRiskDetectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ServicePrincipalRiskDetectionCollectionResponse get() { return get(null); } /** - * Retrieve the properties of a collection of servicePrincipalRiskDetection objects. + * Represents information about detected at-risk service principals in a Microsoft Entra tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ServicePrincipalRiskDetectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ServicePrincipalRiskDetectionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ServicePrincipalRiskDetection post(@jakarta.annotation.Nonnull final Serv return this.requestAdapter.send(requestInfo, errorMapping, ServicePrincipalRiskDetection::createFromDiscriminatorValue); } /** - * Retrieve the properties of a collection of servicePrincipalRiskDetection objects. + * Represents information about detected at-risk service principals in a Microsoft Entra tenant. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties of a collection of servicePrincipalRiskDetection objects. + * Represents information about detected at-risk service principals in a Microsoft Entra tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public ServicePrincipalRiskDetectionsRequestBuilder withUrl(@jakarta.annotation. return new ServicePrincipalRiskDetectionsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the properties of a collection of servicePrincipalRiskDetection objects. + * Represents information about detected at-risk service principals in a Microsoft Entra tenant. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identityprotection/serviceprincipalriskdetections/item/ServicePrincipalRiskDetectionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identityprotection/serviceprincipalriskdetections/item/ServicePrincipalRiskDetectionItemRequestBuilder.java index a93a8f9e4ac..e41b42344d9 100644 --- a/src/main/java/com/microsoft/graph/generated/identityprotection/serviceprincipalriskdetections/item/ServicePrincipalRiskDetectionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identityprotection/serviceprincipalriskdetections/item/ServicePrincipalRiskDetectionItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a servicePrincipalRiskDetection object. + * Represents information about detected at-risk service principals in a Microsoft Entra tenant. * @return a {@link ServicePrincipalRiskDetection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ServicePrincipalRiskDetection get() { return get(null); } /** - * Read the properties and relationships of a servicePrincipalRiskDetection object. + * Represents information about detected at-risk service principals in a Microsoft Entra tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ServicePrincipalRiskDetection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ServicePrincipalRiskDetection get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a servicePrincipalRiskDetection object. + * Represents information about detected at-risk service principals in a Microsoft Entra tenant. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a servicePrincipalRiskDetection object. + * Represents information about detected at-risk service principals in a Microsoft Entra tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public ServicePrincipalRiskDetectionItemRequestBuilder withUrl(@jakarta.annotati public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a servicePrincipalRiskDetection object. + * Represents information about detected at-risk service principals in a Microsoft Entra tenant. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/identityproviders/availableprovidertypes/AvailableProviderTypesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/identityproviders/availableprovidertypes/AvailableProviderTypesRequestBuilder.java index 8d24e24e93a..023128fc277 100644 --- a/src/main/java/com/microsoft/graph/generated/identityproviders/availableprovidertypes/AvailableProviderTypesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/identityproviders/availableprovidertypes/AvailableProviderTypesRequestBuilder.java @@ -36,11 +36,12 @@ public AvailableProviderTypesRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/identityProviders/availableProviderTypes(){?%24count,%24filter,%24search,%24skip,%24top}", rawUrl); } /** - * Invoke function availableProviderTypes + * Retrieves all identity provider types available in a directory. * @return a {@link AvailableProviderTypesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code * @deprecated * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider + * @see Find more info here */ @jakarta.annotation.Nullable @Deprecated @@ -48,12 +49,13 @@ public AvailableProviderTypesGetResponse get() { return get(null); } /** - * Invoke function availableProviderTypes + * Retrieves all identity provider types available in a directory. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AvailableProviderTypesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code * @deprecated * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider + * @see Find more info here */ @jakarta.annotation.Nullable @Deprecated @@ -64,7 +66,7 @@ public AvailableProviderTypesGetResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, AvailableProviderTypesGetResponse::createFromDiscriminatorValue); } /** - * Invoke function availableProviderTypes + * Retrieves all identity provider types available in a directory. * @return a {@link RequestInformation} * @deprecated * The identityProvider API is deprecated and will stop returning data on March 2023. Please use the new identityProviderBase API. as of 2021-05/identityProvider @@ -75,7 +77,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function availableProviderTypes + * Retrieves all identity provider types available in a directory. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} * @deprecated @@ -103,7 +105,7 @@ public AvailableProviderTypesRequestBuilder withUrl(@jakarta.annotation.Nonnull return new AvailableProviderTypesRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function availableProviderTypes + * Retrieves all identity provider types available in a directory. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/informationprotection/bitlocker/recoverykeys/RecoveryKeysRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/informationprotection/bitlocker/recoverykeys/RecoveryKeysRequestBuilder.java index 8b62693d541..c8948f4e7ac 100644 --- a/src/main/java/com/microsoft/graph/generated/informationprotection/bitlocker/recoverykeys/RecoveryKeysRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/informationprotection/bitlocker/recoverykeys/RecoveryKeysRequestBuilder.java @@ -59,21 +59,19 @@ public RecoveryKeysRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/informationProtection/bitlocker/recoveryKeys{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the bitlockerRecoveryKey objects and their properties. This operation does not return the key property. For information about how to read the key property, see Get bitlockerRecoveryKey. + * The recovery keys associated with the bitlocker entity. * @return a {@link BitlockerRecoveryKeyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BitlockerRecoveryKeyCollectionResponse get() { return get(null); } /** - * Get a list of the bitlockerRecoveryKey objects and their properties. This operation does not return the key property. For information about how to read the key property, see Get bitlockerRecoveryKey. + * The recovery keys associated with the bitlocker entity. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BitlockerRecoveryKeyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BitlockerRecoveryKeyCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public BitlockerRecoveryKeyCollectionResponse get(@jakarta.annotation.Nullable f return this.requestAdapter.send(requestInfo, errorMapping, BitlockerRecoveryKeyCollectionResponse::createFromDiscriminatorValue); } /** - * Get a list of the bitlockerRecoveryKey objects and their properties. This operation does not return the key property. For information about how to read the key property, see Get bitlockerRecoveryKey. + * The recovery keys associated with the bitlocker entity. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the bitlockerRecoveryKey objects and their properties. This operation does not return the key property. For information about how to read the key property, see Get bitlockerRecoveryKey. + * The recovery keys associated with the bitlocker entity. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public RecoveryKeysRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri return new RecoveryKeysRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the bitlockerRecoveryKey objects and their properties. This operation does not return the key property. For information about how to read the key property, see Get bitlockerRecoveryKey. + * The recovery keys associated with the bitlocker entity. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/informationprotection/bitlocker/recoverykeys/item/BitlockerRecoveryKeyItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/informationprotection/bitlocker/recoverykeys/item/BitlockerRecoveryKeyItemRequestBuilder.java index 6987f83c66b..a97d007bcdb 100644 --- a/src/main/java/com/microsoft/graph/generated/informationprotection/bitlocker/recoverykeys/item/BitlockerRecoveryKeyItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/informationprotection/bitlocker/recoverykeys/item/BitlockerRecoveryKeyItemRequestBuilder.java @@ -37,21 +37,19 @@ public BitlockerRecoveryKeyItemRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/informationProtection/bitlocker/recoveryKeys/{bitlockerRecoveryKey%2Did}{?%24expand,%24select}", rawUrl); } /** - * Retrieve the properties and relationships of a bitlockerRecoveryKey object. By default, this operation doesn't return the key property that represents the actual recovery key. To include the key property in the response, use the $select OData query parameter. Including the $select query parameter triggers a Microsoft Entra audit of the operation and generates an audit log. For more information on audit logs for bitlocker recovery keys, see the KeyManagement category filter of Microsoft Entra audit logs. + * The recovery keys associated with the bitlocker entity. * @return a {@link BitlockerRecoveryKey} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BitlockerRecoveryKey get() { return get(null); } /** - * Retrieve the properties and relationships of a bitlockerRecoveryKey object. By default, this operation doesn't return the key property that represents the actual recovery key. To include the key property in the response, use the $select OData query parameter. Including the $select query parameter triggers a Microsoft Entra audit of the operation and generates an audit log. For more information on audit logs for bitlocker recovery keys, see the KeyManagement category filter of Microsoft Entra audit logs. + * The recovery keys associated with the bitlocker entity. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BitlockerRecoveryKey} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BitlockerRecoveryKey get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -61,7 +59,7 @@ public BitlockerRecoveryKey get(@jakarta.annotation.Nullable final java.util.fun return this.requestAdapter.send(requestInfo, errorMapping, BitlockerRecoveryKey::createFromDiscriminatorValue); } /** - * Retrieve the properties and relationships of a bitlockerRecoveryKey object. By default, this operation doesn't return the key property that represents the actual recovery key. To include the key property in the response, use the $select OData query parameter. Including the $select query parameter triggers a Microsoft Entra audit of the operation and generates an audit log. For more information on audit logs for bitlocker recovery keys, see the KeyManagement category filter of Microsoft Entra audit logs. + * The recovery keys associated with the bitlocker entity. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -69,7 +67,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a bitlockerRecoveryKey object. By default, this operation doesn't return the key property that represents the actual recovery key. To include the key property in the response, use the $select OData query parameter. Including the $select query parameter triggers a Microsoft Entra audit of the operation and generates an audit log. For more information on audit logs for bitlocker recovery keys, see the KeyManagement category filter of Microsoft Entra audit logs. + * The recovery keys associated with the bitlocker entity. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -91,7 +89,7 @@ public BitlockerRecoveryKeyItemRequestBuilder withUrl(@jakarta.annotation.Nonnul return new BitlockerRecoveryKeyItemRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the properties and relationships of a bitlockerRecoveryKey object. By default, this operation doesn't return the key property that represents the actual recovery key. To include the key property in the response, use the $select OData query parameter. Including the $select query parameter triggers a Microsoft Entra audit of the operation and generates an audit log. For more information on audit logs for bitlocker recovery keys, see the KeyManagement category filter of Microsoft Entra audit logs. + * The recovery keys associated with the bitlocker entity. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/informationprotection/threatassessmentrequests/ThreatAssessmentRequestsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/informationprotection/threatassessmentrequests/ThreatAssessmentRequestsRequestBuilder.java index 68e028ba7e2..f5eca796e70 100644 --- a/src/main/java/com/microsoft/graph/generated/informationprotection/threatassessmentrequests/ThreatAssessmentRequestsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/informationprotection/threatassessmentrequests/ThreatAssessmentRequestsRequestBuilder.java @@ -60,21 +60,19 @@ public ThreatAssessmentRequestsRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/informationProtection/threatAssessmentRequests{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of threatAssessmentRequest objects. A threat assessment request can be one of the following types: + * Get threatAssessmentRequests from informationProtection * @return a {@link ThreatAssessmentRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ThreatAssessmentRequestCollectionResponse get() { return get(null); } /** - * Retrieve a list of threatAssessmentRequest objects. A threat assessment request can be one of the following types: + * Get threatAssessmentRequests from informationProtection * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ThreatAssessmentRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ThreatAssessmentRequestCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public ThreatAssessmentRequestCollectionResponse get(@jakarta.annotation.Nullabl return this.requestAdapter.send(requestInfo, errorMapping, ThreatAssessmentRequestCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new threat assessment request. A threat assessment request can be one of the following types: + * Create new navigation property to threatAssessmentRequests for informationProtection * @param body The request body * @return a {@link ThreatAssessmentRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ThreatAssessmentRequest post(@jakarta.annotation.Nonnull final ThreatAssessmentRequest body) { return post(body, null); } /** - * Create a new threat assessment request. A threat assessment request can be one of the following types: + * Create new navigation property to threatAssessmentRequests for informationProtection * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ThreatAssessmentRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ThreatAssessmentRequest post(@jakarta.annotation.Nonnull final ThreatAssessmentRequest body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public ThreatAssessmentRequest post(@jakarta.annotation.Nonnull final ThreatAsse return this.requestAdapter.send(requestInfo, errorMapping, ThreatAssessmentRequest::createFromDiscriminatorValue); } /** - * Retrieve a list of threatAssessmentRequest objects. A threat assessment request can be one of the following types: + * Get threatAssessmentRequests from informationProtection * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of threatAssessmentRequest objects. A threat assessment request can be one of the following types: + * Get threatAssessmentRequests from informationProtection * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new threat assessment request. A threat assessment request can be one of the following types: + * Create new navigation property to threatAssessmentRequests for informationProtection * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new threat assessment request. A threat assessment request can be one of the following types: + * Create new navigation property to threatAssessmentRequests for informationProtection * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ThreatAssessmentRequestsRequestBuilder withUrl(@jakarta.annotation.Nonnul return new ThreatAssessmentRequestsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of threatAssessmentRequest objects. A threat assessment request can be one of the following types: + * Get threatAssessmentRequests from informationProtection */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/informationprotection/threatassessmentrequests/item/ThreatAssessmentRequestItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/informationprotection/threatassessmentrequests/item/ThreatAssessmentRequestItemRequestBuilder.java index 165626670a1..358e9cc0631 100644 --- a/src/main/java/com/microsoft/graph/generated/informationprotection/threatassessmentrequests/item/ThreatAssessmentRequestItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/informationprotection/threatassessmentrequests/item/ThreatAssessmentRequestItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a specified threatAssessmentRequest object. A threat assessment request can be one of the following types: + * Get threatAssessmentRequests from informationProtection * @return a {@link ThreatAssessmentRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ThreatAssessmentRequest get() { return get(null); } /** - * Retrieve the properties and relationships of a specified threatAssessmentRequest object. A threat assessment request can be one of the following types: + * Get threatAssessmentRequests from informationProtection * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ThreatAssessmentRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ThreatAssessmentRequest get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a specified threatAssessmentRequest object. A threat assessment request can be one of the following types: + * Get threatAssessmentRequests from informationProtection * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a specified threatAssessmentRequest object. A threat assessment request can be one of the following types: + * Get threatAssessmentRequests from informationProtection * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public ThreatAssessmentRequestItemRequestBuilder withUrl(@jakarta.annotation.Non public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a specified threatAssessmentRequest object. A threat assessment request can be one of the following types: + * Get threatAssessmentRequests from informationProtection */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/models/Album.java b/src/main/java/com/microsoft/graph/generated/models/Album.java index 706eabae9d1..3640e78ab81 100644 --- a/src/main/java/com/microsoft/graph/generated/models/Album.java +++ b/src/main/java/com/microsoft/graph/generated/models/Album.java @@ -56,7 +56,7 @@ public BackingStore getBackingStore() { return this.backingStore; } /** - * Gets the coverImageItemId property value. Unique identifier of the [driveItem][] that is the cover of the album. + * Gets the coverImageItemId property value. Unique identifier of the driveItem that is the cover of the album. * @return a {@link String} */ @jakarta.annotation.Nullable @@ -108,7 +108,7 @@ public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value this.backingStore = value; } /** - * Sets the coverImageItemId property value. Unique identifier of the [driveItem][] that is the cover of the album. + * Sets the coverImageItemId property value. Unique identifier of the driveItem that is the cover of the album. * @param value Value to set for the coverImageItemId property. */ public void setCoverImageItemId(@jakarta.annotation.Nullable final String value) { diff --git a/src/main/java/com/microsoft/graph/generated/models/Alert.java b/src/main/java/com/microsoft/graph/generated/models/Alert.java index 3c02afece80..0316aafdd24 100644 --- a/src/main/java/com/microsoft/graph/generated/models/Alert.java +++ b/src/main/java/com/microsoft/graph/generated/models/Alert.java @@ -66,7 +66,7 @@ public String getAzureTenantId() { return this.backingStore.get("azureTenantId"); } /** - * Gets the category property value. Category of the alert (for example, credentialTheft, ransomware, etc.). + * Gets the category property value. Category of the alert (for example, credentialTheft, ransomware). * @return a {@link String} */ @jakarta.annotation.Nullable @@ -130,7 +130,7 @@ public java.util.List getDetectionIds() { return this.backingStore.get("detectionIds"); } /** - * Gets the eventDateTime property value. Time at which the event(s) that served as the trigger(s) to generate the alert occurred. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Required. + * Gets the eventDateTime property value. Time at which the event or events that served as the trigger to generate the alert occurred. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Required. * @return a {@link OffsetDateTime} */ @jakarta.annotation.Nullable @@ -138,7 +138,7 @@ public OffsetDateTime getEventDateTime() { return this.backingStore.get("eventDateTime"); } /** - * Gets the feedback property value. Analyst feedback on the alert. Possible values are: unknown, truePositive, falsePositive, benignPositive. (supports update) + * Gets the feedback property value. Analyst feedback on the alert. Possible values are: unknown, truePositive, falsePositive, benignPositive. Supports update. * @return a {@link AlertFeedback} */ @jakarta.annotation.Nullable @@ -314,7 +314,7 @@ public AlertSeverity getSeverity() { return this.backingStore.get("severity"); } /** - * Gets the sourceMaterials property value. Hyperlinks (URIs) to the source material related to the alert, for example, provider's user interface for alerts or log search, etc. + * Gets the sourceMaterials property value. Hyperlinks (URIs) to the source material related to the alert, for example, provider's user interface for alerts or log search. * @return a {@link java.util.List} */ @jakarta.annotation.Nullable @@ -330,7 +330,7 @@ public AlertStatus getStatus() { return this.backingStore.get("status"); } /** - * Gets the tags property value. User-definable labels that can be applied to an alert and can serve as filter conditions (for example 'HVA', 'SAW', etc.) (supports update). + * Gets the tags property value. User-definable labels that can be applied to an alert and can serve as filter conditions (for example 'HVA', 'SAW') (supports update). * @return a {@link java.util.List} */ @jakarta.annotation.Nullable @@ -468,7 +468,7 @@ public void setAzureTenantId(@jakarta.annotation.Nullable final String value) { this.backingStore.set("azureTenantId", value); } /** - * Sets the category property value. Category of the alert (for example, credentialTheft, ransomware, etc.). + * Sets the category property value. Category of the alert (for example, credentialTheft, ransomware). * @param value Value to set for the category property. */ public void setCategory(@jakarta.annotation.Nullable final String value) { @@ -524,14 +524,14 @@ public void setDetectionIds(@jakarta.annotation.Nullable final java.util.List value) { @@ -657,7 +657,7 @@ public void setStatus(@jakarta.annotation.Nullable final AlertStatus value) { this.backingStore.set("status", value); } /** - * Sets the tags property value. User-definable labels that can be applied to an alert and can serve as filter conditions (for example 'HVA', 'SAW', etc.) (supports update). + * Sets the tags property value. User-definable labels that can be applied to an alert and can serve as filter conditions (for example 'HVA', 'SAW') (supports update). * @param value Value to set for the tags property. */ public void setTags(@jakarta.annotation.Nullable final java.util.List value) { diff --git a/src/main/java/com/microsoft/graph/generated/models/Application.java b/src/main/java/com/microsoft/graph/generated/models/Application.java index d0f44040146..29323b19b0b 100644 --- a/src/main/java/com/microsoft/graph/generated/models/Application.java +++ b/src/main/java/com/microsoft/graph/generated/models/Application.java @@ -219,7 +219,7 @@ public java.util.List getHomeRealmDiscoveryPolicies() return this.backingStore.get("homeRealmDiscoveryPolicies"); } /** - * Gets the identifierUris property value. Also known as App ID URI, this value is set when an application is used as a resource app. The identifierUris acts as the prefix for the scopes you reference in your API's code, and it must be globally unique. You can use the default value provided, which is in the form api://, or specify a more readable URI like https://contoso.com/api. For more information on valid identifierUris patterns and best practices, see Microsoft Entra application registration security best practices. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). + * Gets the identifierUris property value. Also known as App ID URI, this value is set when an application is used as a resource app. The identifierUris acts as the prefix for the scopes you reference in your API's code, and it must be globally unique. You can use the default value provided, which is in the form api://, or specify a more readable URI like https://contoso.com/api. For more information on valid identifierUris patterns and best practices, see Microsoft Entra application registration security best practices. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). * @return a {@link java.util.List} */ @jakarta.annotation.Nullable @@ -624,7 +624,7 @@ public void setHomeRealmDiscoveryPolicies(@jakarta.annotation.Nullable final jav this.backingStore.set("homeRealmDiscoveryPolicies", value); } /** - * Sets the identifierUris property value. Also known as App ID URI, this value is set when an application is used as a resource app. The identifierUris acts as the prefix for the scopes you reference in your API's code, and it must be globally unique. You can use the default value provided, which is in the form api://, or specify a more readable URI like https://contoso.com/api. For more information on valid identifierUris patterns and best practices, see Microsoft Entra application registration security best practices. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). + * Sets the identifierUris property value. Also known as App ID URI, this value is set when an application is used as a resource app. The identifierUris acts as the prefix for the scopes you reference in your API's code, and it must be globally unique. You can use the default value provided, which is in the form api://, or specify a more readable URI like https://contoso.com/api. For more information on valid identifierUris patterns and best practices, see Microsoft Entra application registration security best practices. Not nullable. Supports $filter (eq, ne, ge, le, startsWith). * @param value Value to set for the identifierUris property. */ public void setIdentifierUris(@jakarta.annotation.Nullable final java.util.List value) { diff --git a/src/main/java/com/microsoft/graph/generated/models/Bundle.java b/src/main/java/com/microsoft/graph/generated/models/Bundle.java index 3c896242b81..3165a6220dd 100644 --- a/src/main/java/com/microsoft/graph/generated/models/Bundle.java +++ b/src/main/java/com/microsoft/graph/generated/models/Bundle.java @@ -48,7 +48,7 @@ public Map getAdditionalData() { return value; } /** - * Gets the album property value. If the bundle is an [album][], then the album property is included + * Gets the album property value. If the bundle is an album, then the album property is included * @return a {@link Album} */ @jakarta.annotation.Nullable @@ -110,7 +110,7 @@ public void setAdditionalData(@jakarta.annotation.Nullable final Map} */ @jakarta.annotation.Nullable @@ -153,7 +153,7 @@ public void serialize(@jakarta.annotation.Nonnull final SerializationWriter writ writer.writeObjectValue("system", this.getSystem()); } /** - * Sets the bundles property value. Collection of [bundles][bundle] (albums and multi-select-shared sets of items). Only in personal OneDrive. + * Sets the bundles property value. Collection of bundles (albums and multi-select-shared sets of items). Only in personal OneDrive. * @param value Value to set for the bundles property. */ public void setBundles(@jakarta.annotation.Nullable final java.util.List value) { diff --git a/src/main/java/com/microsoft/graph/generated/models/DriveItem.java b/src/main/java/com/microsoft/graph/generated/models/DriveItem.java index 8d9e0e382bd..312a42884a4 100644 --- a/src/main/java/com/microsoft/graph/generated/models/DriveItem.java +++ b/src/main/java/com/microsoft/graph/generated/models/DriveItem.java @@ -292,7 +292,7 @@ public java.util.List getSubscriptions() { return this.backingStore.get("subscriptions"); } /** - * Gets the thumbnails property value. Collection of [thumbnailSet][] objects associated with the item. For more information, see [getting thumbnails][]. Read-only. Nullable. + * Gets the thumbnails property value. Collection of thumbnailSet objects associated with the item. For more information, see getting thumbnails. Read-only. Nullable. * @return a {@link java.util.List} */ @jakarta.annotation.Nullable @@ -300,7 +300,7 @@ public java.util.List getThumbnails() { return this.backingStore.get("thumbnails"); } /** - * Gets the versions property value. The list of previous versions of the item. For more info, see [getting previous versions][]. Read-only. Nullable. + * Gets the versions property value. The list of previous versions of the item. For more info, see getting previous versions. Read-only. Nullable. * @return a {@link java.util.List} */ @jakarta.annotation.Nullable @@ -569,14 +569,14 @@ public void setSubscriptions(@jakarta.annotation.Nullable final java.util.List value) { this.backingStore.set("thumbnails", value); } /** - * Sets the versions property value. The list of previous versions of the item. For more info, see [getting previous versions][]. Read-only. Nullable. + * Sets the versions property value. The list of previous versions of the item. For more info, see getting previous versions. Read-only. Nullable. * @param value Value to set for the versions property. */ public void setVersions(@jakarta.annotation.Nullable final java.util.List value) { diff --git a/src/main/java/com/microsoft/graph/generated/models/ExtensionSchemaProperty.java b/src/main/java/com/microsoft/graph/generated/models/ExtensionSchemaProperty.java index 29596bd1136..5ab6dcd7aac 100644 --- a/src/main/java/com/microsoft/graph/generated/models/ExtensionSchemaProperty.java +++ b/src/main/java/com/microsoft/graph/generated/models/ExtensionSchemaProperty.java @@ -84,7 +84,7 @@ public String getOdataType() { return this.backingStore.get("odataType"); } /** - * Gets the type property value. The type of the property that is defined as part of a schema extension. Allowed values are Binary, Boolean, DateTime, Integer or String. See the table in the Supported property data types section for more details. + * Gets the type property value. The type of the property that is defined as part of a schema extension. Allowed values are Binary, Boolean, DateTime, Integer, or String. For more information, see Supported property data types. * @return a {@link String} */ @jakarta.annotation.Nullable @@ -132,7 +132,7 @@ public void setOdataType(@jakarta.annotation.Nullable final String value) { this.backingStore.set("odataType", value); } /** - * Sets the type property value. The type of the property that is defined as part of a schema extension. Allowed values are Binary, Boolean, DateTime, Integer or String. See the table in the Supported property data types section for more details. + * Sets the type property value. The type of the property that is defined as part of a schema extension. Allowed values are Binary, Boolean, DateTime, Integer, or String. For more information, see Supported property data types. * @param value Value to set for the type property. */ public void setType(@jakarta.annotation.Nullable final String value) { diff --git a/src/main/java/com/microsoft/graph/generated/models/ItemReference.java b/src/main/java/com/microsoft/graph/generated/models/ItemReference.java index 6d7b39320d3..109653545dc 100644 --- a/src/main/java/com/microsoft/graph/generated/models/ItemReference.java +++ b/src/main/java/com/microsoft/graph/generated/models/ItemReference.java @@ -56,7 +56,7 @@ public BackingStore getBackingStore() { return this.backingStore; } /** - * Gets the driveId property value. Unique identifier of the drive instance that contains the driveItem. Only returned if the item is located in a [drive][]. Read-only. + * Gets the driveId property value. Unique identifier of the drive instance that contains the driveItem. Only returned if the item is located in a drive. Read-only. * @return a {@link String} */ @jakarta.annotation.Nullable @@ -64,7 +64,7 @@ public String getDriveId() { return this.backingStore.get("driveId"); } /** - * Gets the driveType property value. Identifies the type of drive. Only returned if the item is located in a [drive][]. See [drive][] resource for values. + * Gets the driveType property value. Identifies the type of drive. Only returned if the item is located in a drive. See drive resource for values. * @return a {@link String} */ @jakarta.annotation.Nullable @@ -122,7 +122,7 @@ public String getPath() { return this.backingStore.get("path"); } /** - * Gets the shareId property value. A unique identifier for a shared resource that can be accessed via the [Shares][] API. + * Gets the shareId property value. A unique identifier for a shared resource that can be accessed via the Shares API. * @return a {@link String} */ @jakarta.annotation.Nullable @@ -138,7 +138,7 @@ public SharepointIds getSharepointIds() { return this.backingStore.get("sharepointIds"); } /** - * Gets the siteId property value. For OneDrive for Business and SharePoint, this property represents the ID of the site that contains the parent document library of the driveItem resource or the parent list of the listItem resource. The value is the same as the id property of that [site][] resource. It is an opaque string that consists of three identifiers of the site. For OneDrive, this property is not populated. + * Gets the siteId property value. For OneDrive for Business and SharePoint, this property represents the ID of the site that contains the parent document library of the driveItem resource or the parent list of the listItem resource. The value is the same as the id property of that site resource. It is an opaque string that consists of three identifiers of the site. For OneDrive, this property is not populated. * @return a {@link String} */ @jakarta.annotation.Nullable @@ -178,14 +178,14 @@ public void setBackingStore(@jakarta.annotation.Nonnull final BackingStore value this.backingStore = value; } /** - * Sets the driveId property value. Unique identifier of the drive instance that contains the driveItem. Only returned if the item is located in a [drive][]. Read-only. + * Sets the driveId property value. Unique identifier of the drive instance that contains the driveItem. Only returned if the item is located in a drive. Read-only. * @param value Value to set for the driveId property. */ public void setDriveId(@jakarta.annotation.Nullable final String value) { this.backingStore.set("driveId", value); } /** - * Sets the driveType property value. Identifies the type of drive. Only returned if the item is located in a [drive][]. See [drive][] resource for values. + * Sets the driveType property value. Identifies the type of drive. Only returned if the item is located in a drive. See drive resource for values. * @param value Value to set for the driveType property. */ public void setDriveType(@jakarta.annotation.Nullable final String value) { @@ -220,7 +220,7 @@ public void setPath(@jakarta.annotation.Nullable final String value) { this.backingStore.set("path", value); } /** - * Sets the shareId property value. A unique identifier for a shared resource that can be accessed via the [Shares][] API. + * Sets the shareId property value. A unique identifier for a shared resource that can be accessed via the Shares API. * @param value Value to set for the shareId property. */ public void setShareId(@jakarta.annotation.Nullable final String value) { @@ -234,7 +234,7 @@ public void setSharepointIds(@jakarta.annotation.Nullable final SharepointIds va this.backingStore.set("sharepointIds", value); } /** - * Sets the siteId property value. For OneDrive for Business and SharePoint, this property represents the ID of the site that contains the parent document library of the driveItem resource or the parent list of the listItem resource. The value is the same as the id property of that [site][] resource. It is an opaque string that consists of three identifiers of the site. For OneDrive, this property is not populated. + * Sets the siteId property value. For OneDrive for Business and SharePoint, this property represents the ID of the site that contains the parent document library of the driveItem resource or the parent list of the listItem resource. The value is the same as the id property of that site resource. It is an opaque string that consists of three identifiers of the site. For OneDrive, this property is not populated. * @param value Value to set for the siteId property. */ public void setSiteId(@jakarta.annotation.Nullable final String value) { diff --git a/src/main/java/com/microsoft/graph/generated/models/ListItem.java b/src/main/java/com/microsoft/graph/generated/models/ListItem.java index b262b0d6c0e..15aa61cdce5 100644 --- a/src/main/java/com/microsoft/graph/generated/models/ListItem.java +++ b/src/main/java/com/microsoft/graph/generated/models/ListItem.java @@ -50,7 +50,7 @@ public java.util.List getDocumentSetVersions() { return this.backingStore.get("documentSetVersions"); } /** - * Gets the driveItem property value. For document libraries, the driveItem relationship exposes the listItem as a [driveItem][] + * Gets the driveItem property value. For document libraries, the driveItem relationship exposes the listItem as a driveItem * @return a {@link DriveItem} */ @jakarta.annotation.Nullable @@ -134,7 +134,7 @@ public void setDocumentSetVersions(@jakarta.annotation.Nullable final java.util. this.backingStore.set("documentSetVersions", value); } /** - * Sets the driveItem property value. For document libraries, the driveItem relationship exposes the listItem as a [driveItem][] + * Sets the driveItem property value. For document libraries, the driveItem relationship exposes the listItem as a driveItem * @param value Value to set for the driveItem property. */ public void setDriveItem(@jakarta.annotation.Nullable final DriveItem value) { diff --git a/src/main/java/com/microsoft/graph/generated/models/PermissionGrantPolicy.java b/src/main/java/com/microsoft/graph/generated/models/PermissionGrantPolicy.java index 0675b32ebb6..ae5f30ca2b2 100644 --- a/src/main/java/com/microsoft/graph/generated/models/PermissionGrantPolicy.java +++ b/src/main/java/com/microsoft/graph/generated/models/PermissionGrantPolicy.java @@ -26,7 +26,7 @@ public static PermissionGrantPolicy createFromDiscriminatorValue(@jakarta.annota return new PermissionGrantPolicy(); } /** - * Gets the excludes property value. Condition sets which are excluded in this permission grant policy. Automatically expanded on GET. + * Gets the excludes property value. Condition sets that are excluded in this permission grant policy. Automatically expanded on GET. * @return a {@link java.util.List} */ @jakarta.annotation.Nullable @@ -45,7 +45,7 @@ public Map> getFieldDeserializers return deserializerMap; } /** - * Gets the includes property value. Condition sets which are included in this permission grant policy. Automatically expanded on GET. + * Gets the includes property value. Condition sets that are included in this permission grant policy. Automatically expanded on GET. * @return a {@link java.util.List} */ @jakarta.annotation.Nullable @@ -63,14 +63,14 @@ public void serialize(@jakarta.annotation.Nonnull final SerializationWriter writ writer.writeCollectionOfObjectValues("includes", this.getIncludes()); } /** - * Sets the excludes property value. Condition sets which are excluded in this permission grant policy. Automatically expanded on GET. + * Sets the excludes property value. Condition sets that are excluded in this permission grant policy. Automatically expanded on GET. * @param value Value to set for the excludes property. */ public void setExcludes(@jakarta.annotation.Nullable final java.util.List value) { this.backingStore.set("excludes", value); } /** - * Sets the includes property value. Condition sets which are included in this permission grant policy. Automatically expanded on GET. + * Sets the includes property value. Condition sets that are included in this permission grant policy. Automatically expanded on GET. * @param value Value to set for the includes property. */ public void setIncludes(@jakarta.annotation.Nullable final java.util.List value) { diff --git a/src/main/java/com/microsoft/graph/generated/models/RiskDetection.java b/src/main/java/com/microsoft/graph/generated/models/RiskDetection.java index e797aac032b..dccbedd92d6 100644 --- a/src/main/java/com/microsoft/graph/generated/models/RiskDetection.java +++ b/src/main/java/com/microsoft/graph/generated/models/RiskDetection.java @@ -142,7 +142,7 @@ public RiskDetail getRiskDetail() { return this.backingStore.get("riskDetail"); } /** - * Gets the riskEventType property value. The type of risk event detected. The possible values are adminConfirmedUserCompromised, anomalousToken, anomalousUserActivity, anonymizedIPAddress, generic, impossibleTravel, investigationsThreatIntelligence, leakedCredentials, maliciousIPAddress,malwareInfectedIPAddress, mcasSuspiciousInboxManipulationRules, newCountry, passwordSpray,riskyIPAddress, suspiciousAPITraffic, suspiciousBrowser,suspiciousInboxForwarding, suspiciousIPAddress, tokenIssuerAnomaly, unfamiliarFeatures, unlikelyTravel. If the risk detection is a premium detection, will show generic. For more information about each value, see Risk types and detection. + * Gets the riskEventType property value. The type of risk event detected. The possible values are adminConfirmedUserCompromised, anomalousToken, anomalousUserActivity, anonymizedIPAddress, generic, impossibleTravel, investigationsThreatIntelligence, suspiciousSendingPatterns, leakedCredentials, maliciousIPAddress,malwareInfectedIPAddress, mcasSuspiciousInboxManipulationRules, newCountry, passwordSpray,riskyIPAddress, suspiciousAPITraffic, suspiciousBrowser,suspiciousInboxForwarding, suspiciousIPAddress, tokenIssuerAnomaly, unfamiliarFeatures, unlikelyTravel. If the risk detection is a premium detection, will show generic. For more information about each value, see Risk types and detection. * @return a {@link String} */ @jakarta.annotation.Nullable @@ -310,7 +310,7 @@ public void setRiskDetail(@jakarta.annotation.Nullable final RiskDetail value) { this.backingStore.set("riskDetail", value); } /** - * Sets the riskEventType property value. The type of risk event detected. The possible values are adminConfirmedUserCompromised, anomalousToken, anomalousUserActivity, anonymizedIPAddress, generic, impossibleTravel, investigationsThreatIntelligence, leakedCredentials, maliciousIPAddress,malwareInfectedIPAddress, mcasSuspiciousInboxManipulationRules, newCountry, passwordSpray,riskyIPAddress, suspiciousAPITraffic, suspiciousBrowser,suspiciousInboxForwarding, suspiciousIPAddress, tokenIssuerAnomaly, unfamiliarFeatures, unlikelyTravel. If the risk detection is a premium detection, will show generic. For more information about each value, see Risk types and detection. + * Sets the riskEventType property value. The type of risk event detected. The possible values are adminConfirmedUserCompromised, anomalousToken, anomalousUserActivity, anonymizedIPAddress, generic, impossibleTravel, investigationsThreatIntelligence, suspiciousSendingPatterns, leakedCredentials, maliciousIPAddress,malwareInfectedIPAddress, mcasSuspiciousInboxManipulationRules, newCountry, passwordSpray,riskyIPAddress, suspiciousAPITraffic, suspiciousBrowser,suspiciousInboxForwarding, suspiciousIPAddress, tokenIssuerAnomaly, unfamiliarFeatures, unlikelyTravel. If the risk detection is a premium detection, will show generic. For more information about each value, see Risk types and detection. * @param value Value to set for the riskEventType property. */ public void setRiskEventType(@jakarta.annotation.Nullable final String value) { diff --git a/src/main/java/com/microsoft/graph/generated/models/callrecords/MediaStream.java b/src/main/java/com/microsoft/graph/generated/models/callrecords/MediaStream.java index 4a93523aa4a..0b832130276 100644 --- a/src/main/java/com/microsoft/graph/generated/models/callrecords/MediaStream.java +++ b/src/main/java/com/microsoft/graph/generated/models/callrecords/MediaStream.java @@ -66,7 +66,7 @@ public Float getAverageAudioDegradation() { return this.backingStore.get("averageAudioDegradation"); } /** - * Gets the averageAudioNetworkJitter property value. Average jitter for the stream computed as specified in [RFC 3550][], denoted in [ISO 8601][] format. For example, 1 second is denoted as 'PT1S', where 'P' is the duration designator, 'T' is the time designator, and 'S' is the second designator. + * Gets the averageAudioNetworkJitter property value. Average jitter for the stream computed as specified in RFC 3550, denoted in ISO 8601 format. For example, 1 second is denoted as 'PT1S', where 'P' is the duration designator, 'T' is the time designator, and 'S' is the second designator. * @return a {@link PeriodAndDuration} */ @jakarta.annotation.Nullable @@ -90,7 +90,7 @@ public PeriodAndDuration getAverageFreezeDuration() { return this.backingStore.get("averageFreezeDuration"); } /** - * Gets the averageJitter property value. Average jitter for the stream computed as specified in [RFC 3550][], denoted in [ISO 8601][] format. For example, 1 second is denoted as 'PT1S', where 'P' is the duration designator, 'T' is the time designator, and 'S' is the second designator. + * Gets the averageJitter property value. Average jitter for the stream computed as specified in RFC 3550, denoted in ISO 8601 format. For example, 1 second is denoted as 'PT1S', where 'P' is the duration designator, 'T' is the time designator, and 'S' is the second designator. * @return a {@link PeriodAndDuration} */ @jakarta.annotation.Nullable @@ -122,7 +122,7 @@ public Float getAverageReceivedFrameRate() { return this.backingStore.get("averageReceivedFrameRate"); } /** - * Gets the averageRoundTripTime property value. Average network propagation round-trip time computed as specified in [RFC 3550][], denoted in [ISO 8601][] format. For example, 1 second is denoted as 'PT1S', where 'P' is the duration designator, 'T' is the time designator, and 'S' is the second designator. + * Gets the averageRoundTripTime property value. Average network propagation round-trip time computed as specified in RFC 3550, denoted in ISO 8601 format. For example, 1 second is denoted as 'PT1S', where 'P' is the duration designator, 'T' is the time designator, and 'S' is the second designator. * @return a {@link PeriodAndDuration} */ @jakarta.annotation.Nullable @@ -146,7 +146,7 @@ public Float getAverageVideoFrameRate() { return this.backingStore.get("averageVideoFrameRate"); } /** - * Gets the averageVideoPacketLossRate property value. Average fraction of packets lost, as specified in [RFC 3550][], computed over the duration of the session. + * Gets the averageVideoPacketLossRate property value. Average fraction of packets lost, as specified in RFC 3550, computed over the duration of the session. * @return a {@link Float} */ @jakarta.annotation.Nullable @@ -234,7 +234,7 @@ public Float getLowVideoProcessingCapabilityRatio() { return this.backingStore.get("lowVideoProcessingCapabilityRatio"); } /** - * Gets the maxAudioNetworkJitter property value. Maximum of audio network jitter computed over each of the 20 second windows during the session, denoted in [ISO 8601][] format. For example, 1 second is denoted as 'PT1S', where 'P' is the duration designator, 'T' is the time designator, and 'S' is the second designator. + * Gets the maxAudioNetworkJitter property value. Maximum of audio network jitter computed over each of the 20 second windows during the session, denoted in ISO 8601 format. For example, 1 second is denoted as 'PT1S', where 'P' is the duration designator, 'T' is the time designator, and 'S' is the second designator. * @return a {@link PeriodAndDuration} */ @jakarta.annotation.Nullable @@ -242,7 +242,7 @@ public PeriodAndDuration getMaxAudioNetworkJitter() { return this.backingStore.get("maxAudioNetworkJitter"); } /** - * Gets the maxJitter property value. Maximum jitter for the stream computed as specified in RFC 3550, denoted in [ISO 8601][] format. For example, 1 second is denoted as 'PT1S', where 'P' is the duration designator, 'T' is the time designator, and 'S' is the second designator. + * Gets the maxJitter property value. Maximum jitter for the stream computed as specified in RFC 3550, denoted in ISO 8601 format. For example, 1 second is denoted as 'PT1S', where 'P' is the duration designator, 'T' is the time designator, and 'S' is the second designator. * @return a {@link PeriodAndDuration} */ @jakarta.annotation.Nullable @@ -266,7 +266,7 @@ public Float getMaxRatioOfConcealedSamples() { return this.backingStore.get("maxRatioOfConcealedSamples"); } /** - * Gets the maxRoundTripTime property value. Maximum network propagation round-trip time computed as specified in [RFC 3550][], denoted in [ISO 8601][] format. For example, 1 second is denoted as 'PT1S', where 'P' is the duration designator, 'T' is the time designator, and 'S' is the second designator. + * Gets the maxRoundTripTime property value. Maximum network propagation round-trip time computed as specified in RFC 3550, denoted in ISO 8601 format. For example, 1 second is denoted as 'PT1S', where 'P' is the duration designator, 'T' is the time designator, and 'S' is the second designator. * @return a {@link PeriodAndDuration} */ @jakarta.annotation.Nullable @@ -406,7 +406,7 @@ public void setAverageAudioDegradation(@jakarta.annotation.Nullable final Float this.backingStore.set("averageAudioDegradation", value); } /** - * Sets the averageAudioNetworkJitter property value. Average jitter for the stream computed as specified in [RFC 3550][], denoted in [ISO 8601][] format. For example, 1 second is denoted as 'PT1S', where 'P' is the duration designator, 'T' is the time designator, and 'S' is the second designator. + * Sets the averageAudioNetworkJitter property value. Average jitter for the stream computed as specified in RFC 3550, denoted in ISO 8601 format. For example, 1 second is denoted as 'PT1S', where 'P' is the duration designator, 'T' is the time designator, and 'S' is the second designator. * @param value Value to set for the averageAudioNetworkJitter property. */ public void setAverageAudioNetworkJitter(@jakarta.annotation.Nullable final PeriodAndDuration value) { @@ -427,7 +427,7 @@ public void setAverageFreezeDuration(@jakarta.annotation.Nullable final PeriodAn this.backingStore.set("averageFreezeDuration", value); } /** - * Sets the averageJitter property value. Average jitter for the stream computed as specified in [RFC 3550][], denoted in [ISO 8601][] format. For example, 1 second is denoted as 'PT1S', where 'P' is the duration designator, 'T' is the time designator, and 'S' is the second designator. + * Sets the averageJitter property value. Average jitter for the stream computed as specified in RFC 3550, denoted in ISO 8601 format. For example, 1 second is denoted as 'PT1S', where 'P' is the duration designator, 'T' is the time designator, and 'S' is the second designator. * @param value Value to set for the averageJitter property. */ public void setAverageJitter(@jakarta.annotation.Nullable final PeriodAndDuration value) { @@ -455,7 +455,7 @@ public void setAverageReceivedFrameRate(@jakarta.annotation.Nullable final Float this.backingStore.set("averageReceivedFrameRate", value); } /** - * Sets the averageRoundTripTime property value. Average network propagation round-trip time computed as specified in [RFC 3550][], denoted in [ISO 8601][] format. For example, 1 second is denoted as 'PT1S', where 'P' is the duration designator, 'T' is the time designator, and 'S' is the second designator. + * Sets the averageRoundTripTime property value. Average network propagation round-trip time computed as specified in RFC 3550, denoted in ISO 8601 format. For example, 1 second is denoted as 'PT1S', where 'P' is the duration designator, 'T' is the time designator, and 'S' is the second designator. * @param value Value to set for the averageRoundTripTime property. */ public void setAverageRoundTripTime(@jakarta.annotation.Nullable final PeriodAndDuration value) { @@ -476,7 +476,7 @@ public void setAverageVideoFrameRate(@jakarta.annotation.Nullable final Float va this.backingStore.set("averageVideoFrameRate", value); } /** - * Sets the averageVideoPacketLossRate property value. Average fraction of packets lost, as specified in [RFC 3550][], computed over the duration of the session. + * Sets the averageVideoPacketLossRate property value. Average fraction of packets lost, as specified in RFC 3550, computed over the duration of the session. * @param value Value to set for the averageVideoPacketLossRate property. */ public void setAverageVideoPacketLossRate(@jakarta.annotation.Nullable final Float value) { @@ -519,14 +519,14 @@ public void setLowVideoProcessingCapabilityRatio(@jakarta.annotation.Nullable fi this.backingStore.set("lowVideoProcessingCapabilityRatio", value); } /** - * Sets the maxAudioNetworkJitter property value. Maximum of audio network jitter computed over each of the 20 second windows during the session, denoted in [ISO 8601][] format. For example, 1 second is denoted as 'PT1S', where 'P' is the duration designator, 'T' is the time designator, and 'S' is the second designator. + * Sets the maxAudioNetworkJitter property value. Maximum of audio network jitter computed over each of the 20 second windows during the session, denoted in ISO 8601 format. For example, 1 second is denoted as 'PT1S', where 'P' is the duration designator, 'T' is the time designator, and 'S' is the second designator. * @param value Value to set for the maxAudioNetworkJitter property. */ public void setMaxAudioNetworkJitter(@jakarta.annotation.Nullable final PeriodAndDuration value) { this.backingStore.set("maxAudioNetworkJitter", value); } /** - * Sets the maxJitter property value. Maximum jitter for the stream computed as specified in RFC 3550, denoted in [ISO 8601][] format. For example, 1 second is denoted as 'PT1S', where 'P' is the duration designator, 'T' is the time designator, and 'S' is the second designator. + * Sets the maxJitter property value. Maximum jitter for the stream computed as specified in RFC 3550, denoted in ISO 8601 format. For example, 1 second is denoted as 'PT1S', where 'P' is the duration designator, 'T' is the time designator, and 'S' is the second designator. * @param value Value to set for the maxJitter property. */ public void setMaxJitter(@jakarta.annotation.Nullable final PeriodAndDuration value) { @@ -547,7 +547,7 @@ public void setMaxRatioOfConcealedSamples(@jakarta.annotation.Nullable final Flo this.backingStore.set("maxRatioOfConcealedSamples", value); } /** - * Sets the maxRoundTripTime property value. Maximum network propagation round-trip time computed as specified in [RFC 3550][], denoted in [ISO 8601][] format. For example, 1 second is denoted as 'PT1S', where 'P' is the duration designator, 'T' is the time designator, and 'S' is the second designator. + * Sets the maxRoundTripTime property value. Maximum network propagation round-trip time computed as specified in RFC 3550, denoted in ISO 8601 format. For example, 1 second is denoted as 'PT1S', where 'P' is the duration designator, 'T' is the time designator, and 'S' is the second designator. * @param value Value to set for the maxRoundTripTime property. */ public void setMaxRoundTripTime(@jakarta.annotation.Nullable final PeriodAndDuration value) { diff --git a/src/main/java/com/microsoft/graph/generated/models/callrecords/TraceRouteHop.java b/src/main/java/com/microsoft/graph/generated/models/callrecords/TraceRouteHop.java index 9978caf3859..3cd96fbdb45 100644 --- a/src/main/java/com/microsoft/graph/generated/models/callrecords/TraceRouteHop.java +++ b/src/main/java/com/microsoft/graph/generated/models/callrecords/TraceRouteHop.java @@ -94,7 +94,7 @@ public String getOdataType() { return this.backingStore.get("odataType"); } /** - * Gets the roundTripTime property value. The time from when the trace route packet was sent from the client to this hop and back to the client, denoted in [ISO 8601][] format. For example, 1 second is denoted as PT1S, where P is the duration designator, T is the time designator, and S is the second designator. + * Gets the roundTripTime property value. The time from when the trace route packet was sent from the client to this hop and back to the client, denoted in ISO 8601 format. For example, 1 second is denoted as PT1S, where P is the duration designator, T is the time designator, and S is the second designator. * @return a {@link PeriodAndDuration} */ @jakarta.annotation.Nullable @@ -150,7 +150,7 @@ public void setOdataType(@jakarta.annotation.Nullable final String value) { this.backingStore.set("odataType", value); } /** - * Sets the roundTripTime property value. The time from when the trace route packet was sent from the client to this hop and back to the client, denoted in [ISO 8601][] format. For example, 1 second is denoted as PT1S, where P is the duration designator, T is the time designator, and S is the second designator. + * Sets the roundTripTime property value. The time from when the trace route packet was sent from the client to this hop and back to the client, denoted in ISO 8601 format. For example, 1 second is denoted as PT1S, where P is the duration designator, T is the time designator, and S is the second designator. * @param value Value to set for the roundTripTime property. */ public void setRoundTripTime(@jakarta.annotation.Nullable final PeriodAndDuration value) { diff --git a/src/main/java/com/microsoft/graph/generated/oauth2permissiongrants/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/oauth2permissiongrants/delta/DeltaRequestBuilder.java index ebd3b30565a..ae48d9c1d78 100644 --- a/src/main/java/com/microsoft/graph/generated/oauth2permissiongrants/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/oauth2permissiongrants/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/oauth2PermissionGrants/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Get newly created, updated, or deleted oauth2permissiongrant objects without performing a full read of the entire resource collection. For details, see Using delta query. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Get newly created, updated, or deleted oauth2permissiongrant objects without performing a full read of the entire resource collection. For details, see Using delta query. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Get newly created, updated, or deleted oauth2permissiongrant objects without performing a full read of the entire resource collection. For details, see Using delta query. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Get newly created, updated, or deleted oauth2permissiongrant objects without performing a full read of the entire resource collection. For details, see Using delta query. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Get newly created, updated, or deleted oauth2permissiongrant objects without performing a full read of the entire resource collection. For details, see Using delta query. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/organization/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/organization/delta/DeltaRequestBuilder.java index 141b0a12c88..86421e505ad 100644 --- a/src/main/java/com/microsoft/graph/generated/organization/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/organization/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/organization/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Get newly created, updated, or deleted directory objects without performing a full read of the entire directoryObject collection. For more information about the delta function, see Use delta query to track changes in Microsoft Graph data for details. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Get newly created, updated, or deleted directory objects without performing a full read of the entire directoryObject collection. For more information about the delta function, see Use delta query to track changes in Microsoft Graph data for details. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Get newly created, updated, or deleted directory objects without performing a full read of the entire directoryObject collection. For more information about the delta function, see Use delta query to track changes in Microsoft Graph data for details. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Get newly created, updated, or deleted directory objects without performing a full read of the entire directoryObject collection. For more information about the delta function, see Use delta query to track changes in Microsoft Graph data for details. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Get newly created, updated, or deleted directory objects without performing a full read of the entire directoryObject collection. For more information about the delta function, see Use delta query to track changes in Microsoft Graph data for details. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/organization/item/branding/BrandingRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/organization/item/branding/BrandingRequestBuilder.java index 7c8e99f4d86..794f75aae3b 100644 --- a/src/main/java/com/microsoft/graph/generated/organization/item/branding/BrandingRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/organization/item/branding/BrandingRequestBuilder.java @@ -109,18 +109,16 @@ public BrandingRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/organization/{organization%2Did}/branding{?%24expand,%24select}", rawUrl); } /** - * Delete the default organizational branding object. To delete the organizationalBranding object, all images (Stream types) must first be removed from the object. + * Delete navigation property branding for organization * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete the default organizational branding object. To delete the organizationalBranding object, all images (Stream types) must first be removed from the object. + * Delete navigation property branding for organization * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -129,21 +127,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the default organizational branding object, if the Accept-Language header is set to 0 or default. If no default organizational branding object exists, this method returns a 404 Not Found error. If the Accept-Language header is set to an existing locale identified by the value of its id, this method retrieves the branding for the specified locale. This method retrieves only non-Stream properties, for example, usernameHintText and signInPageText. To retrieve Stream types of the default branding, for example, bannerLogo and backgroundImage, use the GET organizationalBrandingLocalization method. + * Branding for the organization. Nullable. * @return a {@link OrganizationalBranding} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OrganizationalBranding get() { return get(null); } /** - * Retrieve the default organizational branding object, if the Accept-Language header is set to 0 or default. If no default organizational branding object exists, this method returns a 404 Not Found error. If the Accept-Language header is set to an existing locale identified by the value of its id, this method retrieves the branding for the specified locale. This method retrieves only non-Stream properties, for example, usernameHintText and signInPageText. To retrieve Stream types of the default branding, for example, bannerLogo and backgroundImage, use the GET organizationalBrandingLocalization method. + * Branding for the organization. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OrganizationalBranding} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OrganizationalBranding get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -153,23 +149,21 @@ public OrganizationalBranding get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, OrganizationalBranding::createFromDiscriminatorValue); } /** - * Update the properties of the default branding object specified by the organizationalBranding resource. + * Update the navigation property branding in organization * @param body The request body * @return a {@link OrganizationalBranding} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OrganizationalBranding patch(@jakarta.annotation.Nonnull final OrganizationalBranding body) { return patch(body, null); } /** - * Update the properties of the default branding object specified by the organizationalBranding resource. + * Update the navigation property branding in organization * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OrganizationalBranding} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OrganizationalBranding patch(@jakarta.annotation.Nonnull final OrganizationalBranding body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -180,7 +174,7 @@ public OrganizationalBranding patch(@jakarta.annotation.Nonnull final Organizati return this.requestAdapter.send(requestInfo, errorMapping, OrganizationalBranding::createFromDiscriminatorValue); } /** - * Delete the default organizational branding object. To delete the organizationalBranding object, all images (Stream types) must first be removed from the object. + * Delete navigation property branding for organization * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -188,7 +182,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete the default organizational branding object. To delete the organizationalBranding object, all images (Stream types) must first be removed from the object. + * Delete navigation property branding for organization * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -200,7 +194,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the default organizational branding object, if the Accept-Language header is set to 0 or default. If no default organizational branding object exists, this method returns a 404 Not Found error. If the Accept-Language header is set to an existing locale identified by the value of its id, this method retrieves the branding for the specified locale. This method retrieves only non-Stream properties, for example, usernameHintText and signInPageText. To retrieve Stream types of the default branding, for example, bannerLogo and backgroundImage, use the GET organizationalBrandingLocalization method. + * Branding for the organization. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -208,7 +202,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the default organizational branding object, if the Accept-Language header is set to 0 or default. If no default organizational branding object exists, this method returns a 404 Not Found error. If the Accept-Language header is set to an existing locale identified by the value of its id, this method retrieves the branding for the specified locale. This method retrieves only non-Stream properties, for example, usernameHintText and signInPageText. To retrieve Stream types of the default branding, for example, bannerLogo and backgroundImage, use the GET organizationalBrandingLocalization method. + * Branding for the organization. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -220,7 +214,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of the default branding object specified by the organizationalBranding resource. + * Update the navigation property branding in organization * @param body The request body * @return a {@link RequestInformation} */ @@ -229,7 +223,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of the default branding object specified by the organizationalBranding resource. + * Update the navigation property branding in organization * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -260,7 +254,7 @@ public BrandingRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the default organizational branding object, if the Accept-Language header is set to 0 or default. If no default organizational branding object exists, this method returns a 404 Not Found error. If the Accept-Language header is set to an existing locale identified by the value of its id, this method retrieves the branding for the specified locale. This method retrieves only non-Stream properties, for example, usernameHintText and signInPageText. To retrieve Stream types of the default branding, for example, bannerLogo and backgroundImage, use the GET organizationalBrandingLocalization method. + * Branding for the organization. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/organization/item/branding/backgroundimage/BackgroundImageRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/organization/item/branding/backgroundimage/BackgroundImageRequestBuilder.java index 88783009d69..9a9247683a3 100644 --- a/src/main/java/com/microsoft/graph/generated/organization/item/branding/backgroundimage/BackgroundImageRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/organization/item/branding/backgroundimage/BackgroundImageRequestBuilder.java @@ -39,7 +39,6 @@ public BackgroundImageRequestBuilder(@jakarta.annotation.Nonnull final String ra * Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -50,7 +49,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/organization/item/branding/bannerlogo/BannerLogoRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/organization/item/branding/bannerlogo/BannerLogoRequestBuilder.java index 60c65edc14a..58f72d4018f 100644 --- a/src/main/java/com/microsoft/graph/generated/organization/item/branding/bannerlogo/BannerLogoRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/organization/item/branding/bannerlogo/BannerLogoRequestBuilder.java @@ -39,7 +39,6 @@ public BannerLogoRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, * A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG not larger than 36 245 pixels. We recommend using a transparent image with no padding around the logo. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -50,7 +49,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/organization/item/branding/customcss/CustomCSSRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/organization/item/branding/customcss/CustomCSSRequestBuilder.java index fbf0f4bed4d..caee828be7b 100644 --- a/src/main/java/com/microsoft/graph/generated/organization/item/branding/customcss/CustomCSSRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/organization/item/branding/customcss/CustomCSSRequestBuilder.java @@ -39,7 +39,6 @@ public CustomCSSRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, * CSS styling that appears on the sign-in page. The allowed format is .css format only and not larger than 25 KB. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -50,7 +49,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/organization/item/branding/favicon/FaviconRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/organization/item/branding/favicon/FaviconRequestBuilder.java index 1d02b9b361a..1a7c20b4a42 100644 --- a/src/main/java/com/microsoft/graph/generated/organization/item/branding/favicon/FaviconRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/organization/item/branding/favicon/FaviconRequestBuilder.java @@ -39,7 +39,6 @@ public FaviconRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * A custom icon (favicon) to replace a default Microsoft product favicon on a Microsoft Entra tenant. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -50,7 +49,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/organization/item/branding/headerlogo/HeaderLogoRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/organization/item/branding/headerlogo/HeaderLogoRequestBuilder.java index 6beab68f010..6b0fc66d49e 100644 --- a/src/main/java/com/microsoft/graph/generated/organization/item/branding/headerlogo/HeaderLogoRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/organization/item/branding/headerlogo/HeaderLogoRequestBuilder.java @@ -39,7 +39,6 @@ public HeaderLogoRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, * A company logo that appears in the header of the sign-in page. The allowed types are PNG or JPEG not larger than 36 245 pixels. We recommend using a transparent image with no padding around the logo. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -50,7 +49,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/organization/item/branding/localizations/LocalizationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/organization/item/branding/localizations/LocalizationsRequestBuilder.java index 3e60239e574..9eb64461a74 100644 --- a/src/main/java/com/microsoft/graph/generated/organization/item/branding/localizations/LocalizationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/organization/item/branding/localizations/LocalizationsRequestBuilder.java @@ -60,21 +60,19 @@ public LocalizationsRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/organization/{organization%2Did}/branding/localizations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve all localization branding objects, including the default branding. + * Add different branding based on a locale. * @return a {@link OrganizationalBrandingLocalizationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OrganizationalBrandingLocalizationCollectionResponse get() { return get(null); } /** - * Retrieve all localization branding objects, including the default branding. + * Add different branding based on a locale. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OrganizationalBrandingLocalizationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OrganizationalBrandingLocalizationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OrganizationalBrandingLocalizationCollectionResponse get(@jakarta.annotat return this.requestAdapter.send(requestInfo, errorMapping, OrganizationalBrandingLocalizationCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new organizationalBrandingLocalization object. This creates a localized branding and at the same time, the default branding if it doesn't exist. The default branding is created only once. It's loaded when a localized branding isn't configured for the user's browser language. To retrieve the default branding, see Get branding. + * Create new navigation property to localizations for organization * @param body The request body * @return a {@link OrganizationalBrandingLocalization} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OrganizationalBrandingLocalization post(@jakarta.annotation.Nonnull final OrganizationalBrandingLocalization body) { return post(body, null); } /** - * Create a new organizationalBrandingLocalization object. This creates a localized branding and at the same time, the default branding if it doesn't exist. The default branding is created only once. It's loaded when a localized branding isn't configured for the user's browser language. To retrieve the default branding, see Get branding. + * Create new navigation property to localizations for organization * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OrganizationalBrandingLocalization} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OrganizationalBrandingLocalization post(@jakarta.annotation.Nonnull final OrganizationalBrandingLocalization body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OrganizationalBrandingLocalization post(@jakarta.annotation.Nonnull final return this.requestAdapter.send(requestInfo, errorMapping, OrganizationalBrandingLocalization::createFromDiscriminatorValue); } /** - * Retrieve all localization branding objects, including the default branding. + * Add different branding based on a locale. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve all localization branding objects, including the default branding. + * Add different branding based on a locale. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new organizationalBrandingLocalization object. This creates a localized branding and at the same time, the default branding if it doesn't exist. The default branding is created only once. It's loaded when a localized branding isn't configured for the user's browser language. To retrieve the default branding, see Get branding. + * Create new navigation property to localizations for organization * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new organizationalBrandingLocalization object. This creates a localized branding and at the same time, the default branding if it doesn't exist. The default branding is created only once. It's loaded when a localized branding isn't configured for the user's browser language. To retrieve the default branding, see Get branding. + * Create new navigation property to localizations for organization * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public LocalizationsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new LocalizationsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve all localization branding objects, including the default branding. + * Add different branding based on a locale. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/organization/item/branding/localizations/item/OrganizationalBrandingLocalizationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/organization/item/branding/localizations/item/OrganizationalBrandingLocalizationItemRequestBuilder.java index 5405d9cf749..604960a26ed 100644 --- a/src/main/java/com/microsoft/graph/generated/organization/item/branding/localizations/item/OrganizationalBrandingLocalizationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/organization/item/branding/localizations/item/OrganizationalBrandingLocalizationItemRequestBuilder.java @@ -100,18 +100,16 @@ public OrganizationalBrandingLocalizationItemRequestBuilder(@jakarta.annotation. super(requestAdapter, "{+baseurl}/organization/{organization%2Did}/branding/localizations/{organizationalBrandingLocalization%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a localized branding object. To delete the organizationalBrandingLocalization object, all images (Stream types) must first be removed from the object. + * Delete navigation property localizations for organization * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a localized branding object. To delete the organizationalBrandingLocalization object, all images (Stream types) must first be removed from the object. + * Delete navigation property localizations for organization * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -120,21 +118,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of an organizationalBrandingLocalization object. To retrieve a localization branding object, specify the value of id in the URL. + * Add different branding based on a locale. * @return a {@link OrganizationalBrandingLocalization} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OrganizationalBrandingLocalization get() { return get(null); } /** - * Read the properties and relationships of an organizationalBrandingLocalization object. To retrieve a localization branding object, specify the value of id in the URL. + * Add different branding based on a locale. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OrganizationalBrandingLocalization} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OrganizationalBrandingLocalization get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -144,23 +140,21 @@ public OrganizationalBrandingLocalization get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, OrganizationalBrandingLocalization::createFromDiscriminatorValue); } /** - * Update the properties of an organizationalBrandingLocalization object for a specific localization. + * Update the navigation property localizations in organization * @param body The request body * @return a {@link OrganizationalBrandingLocalization} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OrganizationalBrandingLocalization patch(@jakarta.annotation.Nonnull final OrganizationalBrandingLocalization body) { return patch(body, null); } /** - * Update the properties of an organizationalBrandingLocalization object for a specific localization. + * Update the navigation property localizations in organization * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OrganizationalBrandingLocalization} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OrganizationalBrandingLocalization patch(@jakarta.annotation.Nonnull final OrganizationalBrandingLocalization body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -171,7 +165,7 @@ public OrganizationalBrandingLocalization patch(@jakarta.annotation.Nonnull fina return this.requestAdapter.send(requestInfo, errorMapping, OrganizationalBrandingLocalization::createFromDiscriminatorValue); } /** - * Delete a localized branding object. To delete the organizationalBrandingLocalization object, all images (Stream types) must first be removed from the object. + * Delete navigation property localizations for organization * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -179,7 +173,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a localized branding object. To delete the organizationalBrandingLocalization object, all images (Stream types) must first be removed from the object. + * Delete navigation property localizations for organization * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -191,7 +185,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of an organizationalBrandingLocalization object. To retrieve a localization branding object, specify the value of id in the URL. + * Add different branding based on a locale. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -199,7 +193,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of an organizationalBrandingLocalization object. To retrieve a localization branding object, specify the value of id in the URL. + * Add different branding based on a locale. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -211,7 +205,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an organizationalBrandingLocalization object for a specific localization. + * Update the navigation property localizations in organization * @param body The request body * @return a {@link RequestInformation} */ @@ -220,7 +214,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an organizationalBrandingLocalization object for a specific localization. + * Update the navigation property localizations in organization * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -251,7 +245,7 @@ public OrganizationalBrandingLocalizationItemRequestBuilder withUrl(@jakarta.ann public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of an organizationalBrandingLocalization object. To retrieve a localization branding object, specify the value of id in the URL. + * Add different branding based on a locale. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/organization/item/branding/localizations/item/backgroundimage/BackgroundImageRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/organization/item/branding/localizations/item/backgroundimage/BackgroundImageRequestBuilder.java index 78cfc06d9d2..c8c3c54b1ea 100644 --- a/src/main/java/com/microsoft/graph/generated/organization/item/branding/localizations/item/backgroundimage/BackgroundImageRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/organization/item/branding/localizations/item/backgroundimage/BackgroundImageRequestBuilder.java @@ -39,7 +39,6 @@ public BackgroundImageRequestBuilder(@jakarta.annotation.Nonnull final String ra * Image that appears as the background of the sign-in page. The allowed types are PNG or JPEG not smaller than 300 KB and not larger than 1920 1080 pixels. A smaller image will reduce bandwidth requirements and make the page load faster. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -50,7 +49,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/organization/item/branding/localizations/item/bannerlogo/BannerLogoRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/organization/item/branding/localizations/item/bannerlogo/BannerLogoRequestBuilder.java index a4e97868022..40073241442 100644 --- a/src/main/java/com/microsoft/graph/generated/organization/item/branding/localizations/item/bannerlogo/BannerLogoRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/organization/item/branding/localizations/item/bannerlogo/BannerLogoRequestBuilder.java @@ -39,7 +39,6 @@ public BannerLogoRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, * A banner version of your company logo that appears on the sign-in page. The allowed types are PNG or JPEG not larger than 36 245 pixels. We recommend using a transparent image with no padding around the logo. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -50,7 +49,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/organization/item/branding/localizations/item/customcss/CustomCSSRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/organization/item/branding/localizations/item/customcss/CustomCSSRequestBuilder.java index 9deb5212195..e7c52373f2b 100644 --- a/src/main/java/com/microsoft/graph/generated/organization/item/branding/localizations/item/customcss/CustomCSSRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/organization/item/branding/localizations/item/customcss/CustomCSSRequestBuilder.java @@ -39,7 +39,6 @@ public CustomCSSRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, * CSS styling that appears on the sign-in page. The allowed format is .css format only and not larger than 25 KB. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -50,7 +49,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/organization/item/branding/localizations/item/favicon/FaviconRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/organization/item/branding/localizations/item/favicon/FaviconRequestBuilder.java index 2eb9d39e3cc..6cce4b508b6 100644 --- a/src/main/java/com/microsoft/graph/generated/organization/item/branding/localizations/item/favicon/FaviconRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/organization/item/branding/localizations/item/favicon/FaviconRequestBuilder.java @@ -39,7 +39,6 @@ public FaviconRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * A custom icon (favicon) to replace a default Microsoft product favicon on a Microsoft Entra tenant. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -50,7 +49,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/organization/item/branding/localizations/item/headerlogo/HeaderLogoRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/organization/item/branding/localizations/item/headerlogo/HeaderLogoRequestBuilder.java index 7f7fa259bbf..f3facdddf11 100644 --- a/src/main/java/com/microsoft/graph/generated/organization/item/branding/localizations/item/headerlogo/HeaderLogoRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/organization/item/branding/localizations/item/headerlogo/HeaderLogoRequestBuilder.java @@ -39,7 +39,6 @@ public HeaderLogoRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, * A company logo that appears in the header of the sign-in page. The allowed types are PNG or JPEG not larger than 36 245 pixels. We recommend using a transparent image with no padding around the logo. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -50,7 +49,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/organization/item/branding/localizations/item/squarelogo/SquareLogoRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/organization/item/branding/localizations/item/squarelogo/SquareLogoRequestBuilder.java index bf890b2da43..161823d36d4 100644 --- a/src/main/java/com/microsoft/graph/generated/organization/item/branding/localizations/item/squarelogo/SquareLogoRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/organization/item/branding/localizations/item/squarelogo/SquareLogoRequestBuilder.java @@ -39,7 +39,6 @@ public SquareLogoRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, * A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG not larger than 240 x 240 pixels and not more than 10 KB in size. We recommend using a transparent image with no padding around the logo. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -50,7 +49,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/organization/item/branding/localizations/item/squarelogodark/SquareLogoDarkRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/organization/item/branding/localizations/item/squarelogodark/SquareLogoDarkRequestBuilder.java index 82f01a72d72..7c7a4535c11 100644 --- a/src/main/java/com/microsoft/graph/generated/organization/item/branding/localizations/item/squarelogodark/SquareLogoDarkRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/organization/item/branding/localizations/item/squarelogodark/SquareLogoDarkRequestBuilder.java @@ -39,7 +39,6 @@ public SquareLogoDarkRequestBuilder(@jakarta.annotation.Nonnull final String raw * A square dark version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG not larger than 240 x 240 pixels and not more than 10 KB in size. We recommend using a transparent image with no padding around the logo. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -50,7 +49,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/organization/item/branding/squarelogo/SquareLogoRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/organization/item/branding/squarelogo/SquareLogoRequestBuilder.java index 1f6421077a3..05059a59af8 100644 --- a/src/main/java/com/microsoft/graph/generated/organization/item/branding/squarelogo/SquareLogoRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/organization/item/branding/squarelogo/SquareLogoRequestBuilder.java @@ -39,7 +39,6 @@ public SquareLogoRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, * A square version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG not larger than 240 x 240 pixels and not more than 10 KB in size. We recommend using a transparent image with no padding around the logo. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -50,7 +49,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/organization/item/branding/squarelogodark/SquareLogoDarkRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/organization/item/branding/squarelogodark/SquareLogoDarkRequestBuilder.java index 34330e1055b..54dea1fc512 100644 --- a/src/main/java/com/microsoft/graph/generated/organization/item/branding/squarelogodark/SquareLogoDarkRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/organization/item/branding/squarelogodark/SquareLogoDarkRequestBuilder.java @@ -39,7 +39,6 @@ public SquareLogoDarkRequestBuilder(@jakarta.annotation.Nonnull final String raw * A square dark version of your company logo that appears in Windows 10 out-of-box experiences (OOBE) and when Windows Autopilot is enabled for deployment. Allowed types are PNG or JPEG not larger than 240 x 240 pixels and not more than 10 KB in size. We recommend using a transparent image with no padding around the logo. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -50,7 +49,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/organization/item/certificatebasedauthconfiguration/CertificateBasedAuthConfigurationRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/organization/item/certificatebasedauthconfiguration/CertificateBasedAuthConfigurationRequestBuilder.java index 21d8409b0af..73686af3213 100644 --- a/src/main/java/com/microsoft/graph/generated/organization/item/certificatebasedauthconfiguration/CertificateBasedAuthConfigurationRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/organization/item/certificatebasedauthconfiguration/CertificateBasedAuthConfigurationRequestBuilder.java @@ -60,21 +60,19 @@ public CertificateBasedAuthConfigurationRequestBuilder(@jakarta.annotation.Nonnu super(requestAdapter, "{+baseurl}/organization/{organization%2Did}/certificateBasedAuthConfiguration{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of certificateBasedAuthConfiguration objects. + * Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. * @return a {@link CertificateBasedAuthConfigurationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CertificateBasedAuthConfigurationCollectionResponse get() { return get(null); } /** - * Get a list of certificateBasedAuthConfiguration objects. + * Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CertificateBasedAuthConfigurationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CertificateBasedAuthConfigurationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public CertificateBasedAuthConfigurationCollectionResponse get(@jakarta.annotati return this.requestAdapter.send(requestInfo, errorMapping, CertificateBasedAuthConfigurationCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new certificateBasedAuthConfiguration object. + * Create new navigation property to certificateBasedAuthConfiguration for organization * @param body The request body * @return a {@link CertificateBasedAuthConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CertificateBasedAuthConfiguration post(@jakarta.annotation.Nonnull final CertificateBasedAuthConfiguration body) { return post(body, null); } /** - * Create a new certificateBasedAuthConfiguration object. + * Create new navigation property to certificateBasedAuthConfiguration for organization * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CertificateBasedAuthConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CertificateBasedAuthConfiguration post(@jakarta.annotation.Nonnull final CertificateBasedAuthConfiguration body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public CertificateBasedAuthConfiguration post(@jakarta.annotation.Nonnull final return this.requestAdapter.send(requestInfo, errorMapping, CertificateBasedAuthConfiguration::createFromDiscriminatorValue); } /** - * Get a list of certificateBasedAuthConfiguration objects. + * Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of certificateBasedAuthConfiguration objects. + * Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new certificateBasedAuthConfiguration object. + * Create new navigation property to certificateBasedAuthConfiguration for organization * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new certificateBasedAuthConfiguration object. + * Create new navigation property to certificateBasedAuthConfiguration for organization * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public CertificateBasedAuthConfigurationRequestBuilder withUrl(@jakarta.annotati return new CertificateBasedAuthConfigurationRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of certificateBasedAuthConfiguration objects. + * Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/organization/item/certificatebasedauthconfiguration/item/CertificateBasedAuthConfigurationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/organization/item/certificatebasedauthconfiguration/item/CertificateBasedAuthConfigurationItemRequestBuilder.java index 747523bd310..45981483853 100644 --- a/src/main/java/com/microsoft/graph/generated/organization/item/certificatebasedauthconfiguration/item/CertificateBasedAuthConfigurationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/organization/item/certificatebasedauthconfiguration/item/CertificateBasedAuthConfigurationItemRequestBuilder.java @@ -37,18 +37,16 @@ public CertificateBasedAuthConfigurationItemRequestBuilder(@jakarta.annotation.N super(requestAdapter, "{+baseurl}/organization/{organization%2Did}/certificateBasedAuthConfiguration/{certificateBasedAuthConfiguration%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a certificateBasedAuthConfiguration object. + * Delete navigation property certificateBasedAuthConfiguration for organization * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a certificateBasedAuthConfiguration object. + * Delete navigation property certificateBasedAuthConfiguration for organization * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the properties of a certificateBasedAuthConfiguration object. + * Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. * @return a {@link CertificateBasedAuthConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CertificateBasedAuthConfiguration get() { return get(null); } /** - * Get the properties of a certificateBasedAuthConfiguration object. + * Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CertificateBasedAuthConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CertificateBasedAuthConfiguration get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,7 +77,7 @@ public CertificateBasedAuthConfiguration get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, CertificateBasedAuthConfiguration::createFromDiscriminatorValue); } /** - * Delete a certificateBasedAuthConfiguration object. + * Delete navigation property certificateBasedAuthConfiguration for organization * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -89,7 +85,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a certificateBasedAuthConfiguration object. + * Delete navigation property certificateBasedAuthConfiguration for organization * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -101,7 +97,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the properties of a certificateBasedAuthConfiguration object. + * Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -109,7 +105,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the properties of a certificateBasedAuthConfiguration object. + * Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +133,7 @@ public CertificateBasedAuthConfigurationItemRequestBuilder withUrl(@jakarta.anno public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the properties of a certificateBasedAuthConfiguration object. + * Navigation property to manage certificate-based authentication configuration. Only a single instance of certificateBasedAuthConfiguration can be created in the collection. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/permissiongrants/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/permissiongrants/delta/DeltaRequestBuilder.java index 21c7fba9927..ac683d05135 100644 --- a/src/main/java/com/microsoft/graph/generated/permissiongrants/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/permissiongrants/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/permissionGrants/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Get newly created, updated, or deleted directory objects without performing a full read of the entire directoryObject collection. For more information about the delta function, see Use delta query to track changes in Microsoft Graph data for details. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Get newly created, updated, or deleted directory objects without performing a full read of the entire directoryObject collection. For more information about the delta function, see Use delta query to track changes in Microsoft Graph data for details. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Get newly created, updated, or deleted directory objects without performing a full read of the entire directoryObject collection. For more information about the delta function, see Use delta query to track changes in Microsoft Graph data for details. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Get newly created, updated, or deleted directory objects without performing a full read of the entire directoryObject collection. For more information about the delta function, see Use delta query to track changes in Microsoft Graph data for details. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Get newly created, updated, or deleted directory objects without performing a full read of the entire directoryObject collection. For more information about the delta function, see Use delta query to track changes in Microsoft Graph data for details. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/planner/buckets/BucketsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/planner/buckets/BucketsRequestBuilder.java index e7cf145b28e..52b35cf10c5 100644 --- a/src/main/java/com/microsoft/graph/generated/planner/buckets/BucketsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/planner/buckets/BucketsRequestBuilder.java @@ -60,21 +60,19 @@ public BucketsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/planner/buckets{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of plannerbucket objects. + * Read-only. Nullable. Returns a collection of the specified buckets * @return a {@link PlannerBucketCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketCollectionResponse get() { return get(null); } /** - * Retrieve a list of plannerbucket objects. + * Read-only. Nullable. Returns a collection of the specified buckets * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerBucketCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public PlannerBucketCollectionResponse get(@jakarta.annotation.Nullable final ja return this.requestAdapter.send(requestInfo, errorMapping, PlannerBucketCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new plannerBucket object. + * Create new navigation property to buckets for planner * @param body The request body * @return a {@link PlannerBucket} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucket post(@jakarta.annotation.Nonnull final PlannerBucket body) { return post(body, null); } /** - * Create a new plannerBucket object. + * Create new navigation property to buckets for planner * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerBucket} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucket post(@jakarta.annotation.Nonnull final PlannerBucket body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public PlannerBucket post(@jakarta.annotation.Nonnull final PlannerBucket body, return this.requestAdapter.send(requestInfo, errorMapping, PlannerBucket::createFromDiscriminatorValue); } /** - * Retrieve a list of plannerbucket objects. + * Read-only. Nullable. Returns a collection of the specified buckets * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of plannerbucket objects. + * Read-only. Nullable. Returns a collection of the specified buckets * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new plannerBucket object. + * Create new navigation property to buckets for planner * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new plannerBucket object. + * Create new navigation property to buckets for planner * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public BucketsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new BucketsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of plannerbucket objects. + * Read-only. Nullable. Returns a collection of the specified buckets */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/planner/buckets/item/PlannerBucketItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/planner/buckets/item/PlannerBucketItemRequestBuilder.java index ea5c9c7161b..d8be39763f1 100644 --- a/src/main/java/com/microsoft/graph/generated/planner/buckets/item/PlannerBucketItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/planner/buckets/item/PlannerBucketItemRequestBuilder.java @@ -46,18 +46,16 @@ public PlannerBucketItemRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/planner/buckets/{plannerBucket%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete plannerBucket. + * Delete navigation property buckets for planner * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete plannerBucket. + * Delete navigation property buckets for planner * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a plannerBucket object. + * Read-only. Nullable. Returns a collection of the specified buckets * @return a {@link PlannerBucket} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucket get() { return get(null); } /** - * Retrieve the properties and relationships of a plannerBucket object. + * Read-only. Nullable. Returns a collection of the specified buckets * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerBucket} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucket get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -94,7 +90,6 @@ public PlannerBucket get(@jakarta.annotation.Nullable final java.util.function.C * @param body The request body * @return a {@link PlannerBucket} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucket patch(@jakarta.annotation.Nonnull final PlannerBucket body) { @@ -106,7 +101,6 @@ public PlannerBucket patch(@jakarta.annotation.Nonnull final PlannerBucket body) * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerBucket} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucket patch(@jakarta.annotation.Nonnull final PlannerBucket body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public PlannerBucket patch(@jakarta.annotation.Nonnull final PlannerBucket body, return this.requestAdapter.send(requestInfo, errorMapping, PlannerBucket::createFromDiscriminatorValue); } /** - * Delete plannerBucket. + * Delete navigation property buckets for planner * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete plannerBucket. + * Delete navigation property buckets for planner * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a plannerBucket object. + * Read-only. Nullable. Returns a collection of the specified buckets * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a plannerBucket object. + * Read-only. Nullable. Returns a collection of the specified buckets * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -197,7 +191,7 @@ public PlannerBucketItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a plannerBucket object. + * Read-only. Nullable. Returns a collection of the specified buckets */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/planner/buckets/item/tasks/TasksRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/planner/buckets/item/tasks/TasksRequestBuilder.java index d09b2bc8e96..ca8d0465eee 100644 --- a/src/main/java/com/microsoft/graph/generated/planner/buckets/item/tasks/TasksRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/planner/buckets/item/tasks/TasksRequestBuilder.java @@ -60,21 +60,19 @@ public TasksRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/planner/buckets/{plannerBucket%2Did}/tasks{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of plannerTask objects associated to a plannerBucket object. + * Read-only. Nullable. The collection of tasks in the bucket. * @return a {@link PlannerTaskCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskCollectionResponse get() { return get(null); } /** - * Retrieve a list of plannerTask objects associated to a plannerBucket object. + * Read-only. Nullable. The collection of tasks in the bucket. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerTaskCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public PlannerTask post(@jakarta.annotation.Nonnull final PlannerTask body, @jak return this.requestAdapter.send(requestInfo, errorMapping, PlannerTask::createFromDiscriminatorValue); } /** - * Retrieve a list of plannerTask objects associated to a plannerBucket object. + * Read-only. Nullable. The collection of tasks in the bucket. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of plannerTask objects associated to a plannerBucket object. + * Read-only. Nullable. The collection of tasks in the bucket. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public TasksRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new TasksRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of plannerTask objects associated to a plannerBucket object. + * Read-only. Nullable. The collection of tasks in the bucket. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/planner/buckets/item/tasks/item/assignedtotaskboardformat/AssignedToTaskBoardFormatRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/planner/buckets/item/tasks/item/assignedtotaskboardformat/AssignedToTaskBoardFormatRequestBuilder.java index d369346de72..440878b4079 100644 --- a/src/main/java/com/microsoft/graph/generated/planner/buckets/item/tasks/item/assignedtotaskboardformat/AssignedToTaskBoardFormatRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/planner/buckets/item/tasks/item/assignedtotaskboardformat/AssignedToTaskBoardFormatRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. * @return a {@link PlannerAssignedToTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerAssignedToTaskBoardTaskFormat get() { return get(null); } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerAssignedToTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerAssignedToTaskBoardTaskFormat get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,6 @@ public PlannerAssignedToTaskBoardTaskFormat get(@jakarta.annotation.Nullable fin * @param body The request body * @return a {@link PlannerAssignedToTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerAssignedToTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerAssignedToTaskBoardTaskFormat body) { @@ -95,7 +92,6 @@ public PlannerAssignedToTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull fi * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerAssignedToTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerAssignedToTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerAssignedToTaskBoardTaskFormat body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public AssignedToTaskBoardFormatRequestBuilder withUrl(@jakarta.annotation.Nonnu public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/planner/buckets/item/tasks/item/buckettaskboardformat/BucketTaskBoardFormatRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/planner/buckets/item/tasks/item/buckettaskboardformat/BucketTaskBoardFormatRequestBuilder.java index 2ded38bcc87..0bce05a6e13 100644 --- a/src/main/java/com/microsoft/graph/generated/planner/buckets/item/tasks/item/buckettaskboardformat/BucketTaskBoardFormatRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/planner/buckets/item/tasks/item/buckettaskboardformat/BucketTaskBoardFormatRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. * @return a {@link PlannerBucketTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketTaskBoardTaskFormat get() { return get(null); } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerBucketTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketTaskBoardTaskFormat get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,6 @@ public PlannerBucketTaskBoardTaskFormat get(@jakarta.annotation.Nullable final j * @param body The request body * @return a {@link PlannerBucketTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerBucketTaskBoardTaskFormat body) { @@ -95,7 +92,6 @@ public PlannerBucketTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerBucketTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerBucketTaskBoardTaskFormat body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public BucketTaskBoardFormatRequestBuilder withUrl(@jakarta.annotation.Nonnull f public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/planner/buckets/item/tasks/item/details/DetailsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/planner/buckets/item/tasks/item/details/DetailsRequestBuilder.java index eaf4bd03161..adfbb20ca39 100644 --- a/src/main/java/com/microsoft/graph/generated/planner/buckets/item/tasks/item/details/DetailsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/planner/buckets/item/tasks/item/details/DetailsRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. * @return a {@link PlannerTaskDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskDetails get() { return get(null); } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerTaskDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskDetails get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,6 @@ public PlannerTaskDetails get(@jakarta.annotation.Nullable final java.util.funct * @param body The request body * @return a {@link PlannerTaskDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskDetails patch(@jakarta.annotation.Nonnull final PlannerTaskDetails body) { @@ -95,7 +92,6 @@ public PlannerTaskDetails patch(@jakarta.annotation.Nonnull final PlannerTaskDet * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerTaskDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskDetails patch(@jakarta.annotation.Nonnull final PlannerTaskDetails body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public DetailsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/planner/buckets/item/tasks/item/progresstaskboardformat/ProgressTaskBoardFormatRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/planner/buckets/item/tasks/item/progresstaskboardformat/ProgressTaskBoardFormatRequestBuilder.java index 4c80e5aa9cc..4fd669fa423 100644 --- a/src/main/java/com/microsoft/graph/generated/planner/buckets/item/tasks/item/progresstaskboardformat/ProgressTaskBoardFormatRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/planner/buckets/item/tasks/item/progresstaskboardformat/ProgressTaskBoardFormatRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. * @return a {@link PlannerProgressTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerProgressTaskBoardTaskFormat get() { return get(null); } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerProgressTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerProgressTaskBoardTaskFormat get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,6 @@ public PlannerProgressTaskBoardTaskFormat get(@jakarta.annotation.Nullable final * @param body The request body * @return a {@link PlannerProgressTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerProgressTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerProgressTaskBoardTaskFormat body) { @@ -95,7 +92,6 @@ public PlannerProgressTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull fina * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerProgressTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerProgressTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerProgressTaskBoardTaskFormat body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public ProgressTaskBoardFormatRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/planner/plans/PlansRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/planner/plans/PlansRequestBuilder.java index 8420ff7e2f3..5a386b6492b 100644 --- a/src/main/java/com/microsoft/graph/generated/planner/plans/PlansRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/planner/plans/PlansRequestBuilder.java @@ -60,21 +60,19 @@ public PlansRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/planner/plans{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of plannerPlan objects. + * Read-only. Nullable. Returns a collection of the specified plans * @return a {@link PlannerPlanCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerPlanCollectionResponse get() { return get(null); } /** - * Get a list of plannerPlan objects. + * Read-only. Nullable. Returns a collection of the specified plans * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerPlanCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerPlanCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public PlannerPlanCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, PlannerPlanCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new plannerPlan object. + * Create new navigation property to plans for planner * @param body The request body * @return a {@link PlannerPlan} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerPlan post(@jakarta.annotation.Nonnull final PlannerPlan body) { return post(body, null); } /** - * Create a new plannerPlan object. + * Create new navigation property to plans for planner * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerPlan} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerPlan post(@jakarta.annotation.Nonnull final PlannerPlan body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public PlannerPlan post(@jakarta.annotation.Nonnull final PlannerPlan body, @jak return this.requestAdapter.send(requestInfo, errorMapping, PlannerPlan::createFromDiscriminatorValue); } /** - * Get a list of plannerPlan objects. + * Read-only. Nullable. Returns a collection of the specified plans * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of plannerPlan objects. + * Read-only. Nullable. Returns a collection of the specified plans * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new plannerPlan object. + * Create new navigation property to plans for planner * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new plannerPlan object. + * Create new navigation property to plans for planner * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public PlansRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new PlansRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of plannerPlan objects. + * Read-only. Nullable. Returns a collection of the specified plans */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/planner/plans/item/PlannerPlanItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/planner/plans/item/PlannerPlanItemRequestBuilder.java index d0b5d4fb2a8..4d9b8691cbe 100644 --- a/src/main/java/com/microsoft/graph/generated/planner/plans/item/PlannerPlanItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/planner/plans/item/PlannerPlanItemRequestBuilder.java @@ -64,18 +64,16 @@ public PlannerPlanItemRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/planner/plans/{plannerPlan%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a plannerPlan object. + * Delete navigation property plans for planner * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a plannerPlan object. + * Delete navigation property plans for planner * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -84,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a plannerplan object. + * Read-only. Nullable. Returns a collection of the specified plans * @return a {@link PlannerPlan} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerPlan get() { return get(null); } /** - * Retrieve the properties and relationships of a plannerplan object. + * Read-only. Nullable. Returns a collection of the specified plans * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerPlan} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerPlan get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,23 +104,21 @@ public PlannerPlan get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.send(requestInfo, errorMapping, PlannerPlan::createFromDiscriminatorValue); } /** - * Update the properties of a plannerPlan object. + * Update the navigation property plans in planner * @param body The request body * @return a {@link PlannerPlan} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerPlan patch(@jakarta.annotation.Nonnull final PlannerPlan body) { return patch(body, null); } /** - * Update the properties of a plannerPlan object. + * Update the navigation property plans in planner * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerPlan} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerPlan patch(@jakarta.annotation.Nonnull final PlannerPlan body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +129,7 @@ public PlannerPlan patch(@jakarta.annotation.Nonnull final PlannerPlan body, @ja return this.requestAdapter.send(requestInfo, errorMapping, PlannerPlan::createFromDiscriminatorValue); } /** - * Delete a plannerPlan object. + * Delete navigation property plans for planner * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +137,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a plannerPlan object. + * Delete navigation property plans for planner * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a plannerplan object. + * Read-only. Nullable. Returns a collection of the specified plans * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -163,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a plannerplan object. + * Read-only. Nullable. Returns a collection of the specified plans * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -175,7 +169,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a plannerPlan object. + * Update the navigation property plans in planner * @param body The request body * @return a {@link RequestInformation} */ @@ -184,7 +178,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a plannerPlan object. + * Update the navigation property plans in planner * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -215,7 +209,7 @@ public PlannerPlanItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final S public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a plannerplan object. + * Read-only. Nullable. Returns a collection of the specified plans */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/planner/plans/item/buckets/BucketsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/planner/plans/item/buckets/BucketsRequestBuilder.java index 3cfa06bb47a..33353b1546e 100644 --- a/src/main/java/com/microsoft/graph/generated/planner/plans/item/buckets/BucketsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/planner/plans/item/buckets/BucketsRequestBuilder.java @@ -60,21 +60,19 @@ public BucketsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/planner/plans/{plannerPlan%2Did}/buckets{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of plannerBucket objects contained by a plannerPlan object. + * Read-only. Nullable. Collection of buckets in the plan. * @return a {@link PlannerBucketCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketCollectionResponse get() { return get(null); } /** - * Retrieve a list of plannerBucket objects contained by a plannerPlan object. + * Read-only. Nullable. Collection of buckets in the plan. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerBucketCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public PlannerBucket post(@jakarta.annotation.Nonnull final PlannerBucket body, return this.requestAdapter.send(requestInfo, errorMapping, PlannerBucket::createFromDiscriminatorValue); } /** - * Retrieve a list of plannerBucket objects contained by a plannerPlan object. + * Read-only. Nullable. Collection of buckets in the plan. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of plannerBucket objects contained by a plannerPlan object. + * Read-only. Nullable. Collection of buckets in the plan. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public BucketsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new BucketsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of plannerBucket objects contained by a plannerPlan object. + * Read-only. Nullable. Collection of buckets in the plan. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/planner/plans/item/buckets/item/tasks/TasksRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/planner/plans/item/buckets/item/tasks/TasksRequestBuilder.java index 6624d189988..a3563644067 100644 --- a/src/main/java/com/microsoft/graph/generated/planner/plans/item/buckets/item/tasks/TasksRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/planner/plans/item/buckets/item/tasks/TasksRequestBuilder.java @@ -60,21 +60,19 @@ public TasksRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/planner/plans/{plannerPlan%2Did}/buckets/{plannerBucket%2Did}/tasks{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of plannerTask objects associated to a plannerBucket object. + * Read-only. Nullable. The collection of tasks in the bucket. * @return a {@link PlannerTaskCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskCollectionResponse get() { return get(null); } /** - * Retrieve a list of plannerTask objects associated to a plannerBucket object. + * Read-only. Nullable. The collection of tasks in the bucket. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerTaskCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public PlannerTask post(@jakarta.annotation.Nonnull final PlannerTask body, @jak return this.requestAdapter.send(requestInfo, errorMapping, PlannerTask::createFromDiscriminatorValue); } /** - * Retrieve a list of plannerTask objects associated to a plannerBucket object. + * Read-only. Nullable. The collection of tasks in the bucket. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of plannerTask objects associated to a plannerBucket object. + * Read-only. Nullable. The collection of tasks in the bucket. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public TasksRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new TasksRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of plannerTask objects associated to a plannerBucket object. + * Read-only. Nullable. The collection of tasks in the bucket. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/planner/plans/item/buckets/item/tasks/item/assignedtotaskboardformat/AssignedToTaskBoardFormatRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/planner/plans/item/buckets/item/tasks/item/assignedtotaskboardformat/AssignedToTaskBoardFormatRequestBuilder.java index fe3377178cc..a3cfd5bf5a5 100644 --- a/src/main/java/com/microsoft/graph/generated/planner/plans/item/buckets/item/tasks/item/assignedtotaskboardformat/AssignedToTaskBoardFormatRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/planner/plans/item/buckets/item/tasks/item/assignedtotaskboardformat/AssignedToTaskBoardFormatRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. * @return a {@link PlannerAssignedToTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerAssignedToTaskBoardTaskFormat get() { return get(null); } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerAssignedToTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerAssignedToTaskBoardTaskFormat get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,6 @@ public PlannerAssignedToTaskBoardTaskFormat get(@jakarta.annotation.Nullable fin * @param body The request body * @return a {@link PlannerAssignedToTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerAssignedToTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerAssignedToTaskBoardTaskFormat body) { @@ -95,7 +92,6 @@ public PlannerAssignedToTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull fi * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerAssignedToTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerAssignedToTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerAssignedToTaskBoardTaskFormat body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public AssignedToTaskBoardFormatRequestBuilder withUrl(@jakarta.annotation.Nonnu public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/planner/plans/item/buckets/item/tasks/item/buckettaskboardformat/BucketTaskBoardFormatRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/planner/plans/item/buckets/item/tasks/item/buckettaskboardformat/BucketTaskBoardFormatRequestBuilder.java index dbdd1bdc180..0a620cb840e 100644 --- a/src/main/java/com/microsoft/graph/generated/planner/plans/item/buckets/item/tasks/item/buckettaskboardformat/BucketTaskBoardFormatRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/planner/plans/item/buckets/item/tasks/item/buckettaskboardformat/BucketTaskBoardFormatRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. * @return a {@link PlannerBucketTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketTaskBoardTaskFormat get() { return get(null); } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerBucketTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketTaskBoardTaskFormat get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,6 @@ public PlannerBucketTaskBoardTaskFormat get(@jakarta.annotation.Nullable final j * @param body The request body * @return a {@link PlannerBucketTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerBucketTaskBoardTaskFormat body) { @@ -95,7 +92,6 @@ public PlannerBucketTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerBucketTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerBucketTaskBoardTaskFormat body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public BucketTaskBoardFormatRequestBuilder withUrl(@jakarta.annotation.Nonnull f public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/planner/plans/item/buckets/item/tasks/item/details/DetailsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/planner/plans/item/buckets/item/tasks/item/details/DetailsRequestBuilder.java index 0612814a46c..81d1bfa98c4 100644 --- a/src/main/java/com/microsoft/graph/generated/planner/plans/item/buckets/item/tasks/item/details/DetailsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/planner/plans/item/buckets/item/tasks/item/details/DetailsRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. * @return a {@link PlannerTaskDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskDetails get() { return get(null); } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerTaskDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskDetails get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,6 @@ public PlannerTaskDetails get(@jakarta.annotation.Nullable final java.util.funct * @param body The request body * @return a {@link PlannerTaskDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskDetails patch(@jakarta.annotation.Nonnull final PlannerTaskDetails body) { @@ -95,7 +92,6 @@ public PlannerTaskDetails patch(@jakarta.annotation.Nonnull final PlannerTaskDet * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerTaskDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskDetails patch(@jakarta.annotation.Nonnull final PlannerTaskDetails body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public DetailsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/planner/plans/item/buckets/item/tasks/item/progresstaskboardformat/ProgressTaskBoardFormatRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/planner/plans/item/buckets/item/tasks/item/progresstaskboardformat/ProgressTaskBoardFormatRequestBuilder.java index 0e884371478..8e5c0b4019c 100644 --- a/src/main/java/com/microsoft/graph/generated/planner/plans/item/buckets/item/tasks/item/progresstaskboardformat/ProgressTaskBoardFormatRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/planner/plans/item/buckets/item/tasks/item/progresstaskboardformat/ProgressTaskBoardFormatRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. * @return a {@link PlannerProgressTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerProgressTaskBoardTaskFormat get() { return get(null); } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerProgressTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerProgressTaskBoardTaskFormat get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,6 @@ public PlannerProgressTaskBoardTaskFormat get(@jakarta.annotation.Nullable final * @param body The request body * @return a {@link PlannerProgressTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerProgressTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerProgressTaskBoardTaskFormat body) { @@ -95,7 +92,6 @@ public PlannerProgressTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull fina * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerProgressTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerProgressTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerProgressTaskBoardTaskFormat body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public ProgressTaskBoardFormatRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/planner/plans/item/details/DetailsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/planner/plans/item/details/DetailsRequestBuilder.java index 22919851c9d..53654001b13 100644 --- a/src/main/java/com/microsoft/graph/generated/planner/plans/item/details/DetailsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/planner/plans/item/details/DetailsRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a plannerPlanDetails object. + * Read-only. Nullable. Extra details about the plan. * @return a {@link PlannerPlanDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerPlanDetails get() { return get(null); } /** - * Retrieve the properties and relationships of a plannerPlanDetails object. + * Read-only. Nullable. Extra details about the plan. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerPlanDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerPlanDetails get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,6 @@ public PlannerPlanDetails get(@jakarta.annotation.Nullable final java.util.funct * @param body The request body * @return a {@link PlannerPlanDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerPlanDetails patch(@jakarta.annotation.Nonnull final PlannerPlanDetails body) { @@ -95,7 +92,6 @@ public PlannerPlanDetails patch(@jakarta.annotation.Nonnull final PlannerPlanDet * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerPlanDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerPlanDetails patch(@jakarta.annotation.Nonnull final PlannerPlanDetails body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a plannerPlanDetails object. + * Read-only. Nullable. Extra details about the plan. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a plannerPlanDetails object. + * Read-only. Nullable. Extra details about the plan. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public DetailsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a plannerPlanDetails object. + * Read-only. Nullable. Extra details about the plan. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/planner/plans/item/tasks/TasksRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/planner/plans/item/tasks/TasksRequestBuilder.java index 95f1a318773..f7f62b77279 100644 --- a/src/main/java/com/microsoft/graph/generated/planner/plans/item/tasks/TasksRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/planner/plans/item/tasks/TasksRequestBuilder.java @@ -60,21 +60,19 @@ public TasksRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/planner/plans/{plannerPlan%2Did}/tasks{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of plannerTask objects associated with a plannerPlan object. + * Read-only. Nullable. Collection of tasks in the plan. * @return a {@link PlannerTaskCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskCollectionResponse get() { return get(null); } /** - * Retrieve a list of plannerTask objects associated with a plannerPlan object. + * Read-only. Nullable. Collection of tasks in the plan. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerTaskCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public PlannerTask post(@jakarta.annotation.Nonnull final PlannerTask body, @jak return this.requestAdapter.send(requestInfo, errorMapping, PlannerTask::createFromDiscriminatorValue); } /** - * Retrieve a list of plannerTask objects associated with a plannerPlan object. + * Read-only. Nullable. Collection of tasks in the plan. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of plannerTask objects associated with a plannerPlan object. + * Read-only. Nullable. Collection of tasks in the plan. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public TasksRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new TasksRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of plannerTask objects associated with a plannerPlan object. + * Read-only. Nullable. Collection of tasks in the plan. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/planner/plans/item/tasks/item/assignedtotaskboardformat/AssignedToTaskBoardFormatRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/planner/plans/item/tasks/item/assignedtotaskboardformat/AssignedToTaskBoardFormatRequestBuilder.java index 19a50531557..d1ee57fb266 100644 --- a/src/main/java/com/microsoft/graph/generated/planner/plans/item/tasks/item/assignedtotaskboardformat/AssignedToTaskBoardFormatRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/planner/plans/item/tasks/item/assignedtotaskboardformat/AssignedToTaskBoardFormatRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. * @return a {@link PlannerAssignedToTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerAssignedToTaskBoardTaskFormat get() { return get(null); } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerAssignedToTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerAssignedToTaskBoardTaskFormat get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,6 @@ public PlannerAssignedToTaskBoardTaskFormat get(@jakarta.annotation.Nullable fin * @param body The request body * @return a {@link PlannerAssignedToTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerAssignedToTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerAssignedToTaskBoardTaskFormat body) { @@ -95,7 +92,6 @@ public PlannerAssignedToTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull fi * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerAssignedToTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerAssignedToTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerAssignedToTaskBoardTaskFormat body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public AssignedToTaskBoardFormatRequestBuilder withUrl(@jakarta.annotation.Nonnu public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/planner/plans/item/tasks/item/buckettaskboardformat/BucketTaskBoardFormatRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/planner/plans/item/tasks/item/buckettaskboardformat/BucketTaskBoardFormatRequestBuilder.java index 9ce40014d17..74bdc311d31 100644 --- a/src/main/java/com/microsoft/graph/generated/planner/plans/item/tasks/item/buckettaskboardformat/BucketTaskBoardFormatRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/planner/plans/item/tasks/item/buckettaskboardformat/BucketTaskBoardFormatRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. * @return a {@link PlannerBucketTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketTaskBoardTaskFormat get() { return get(null); } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerBucketTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketTaskBoardTaskFormat get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,6 @@ public PlannerBucketTaskBoardTaskFormat get(@jakarta.annotation.Nullable final j * @param body The request body * @return a {@link PlannerBucketTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerBucketTaskBoardTaskFormat body) { @@ -95,7 +92,6 @@ public PlannerBucketTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerBucketTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerBucketTaskBoardTaskFormat body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public BucketTaskBoardFormatRequestBuilder withUrl(@jakarta.annotation.Nonnull f public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/planner/plans/item/tasks/item/details/DetailsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/planner/plans/item/tasks/item/details/DetailsRequestBuilder.java index 436895c6278..f965d91f0bd 100644 --- a/src/main/java/com/microsoft/graph/generated/planner/plans/item/tasks/item/details/DetailsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/planner/plans/item/tasks/item/details/DetailsRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. * @return a {@link PlannerTaskDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskDetails get() { return get(null); } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerTaskDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskDetails get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,6 @@ public PlannerTaskDetails get(@jakarta.annotation.Nullable final java.util.funct * @param body The request body * @return a {@link PlannerTaskDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskDetails patch(@jakarta.annotation.Nonnull final PlannerTaskDetails body) { @@ -95,7 +92,6 @@ public PlannerTaskDetails patch(@jakarta.annotation.Nonnull final PlannerTaskDet * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerTaskDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskDetails patch(@jakarta.annotation.Nonnull final PlannerTaskDetails body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public DetailsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/planner/plans/item/tasks/item/progresstaskboardformat/ProgressTaskBoardFormatRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/planner/plans/item/tasks/item/progresstaskboardformat/ProgressTaskBoardFormatRequestBuilder.java index 6f500b663db..f8da2e31807 100644 --- a/src/main/java/com/microsoft/graph/generated/planner/plans/item/tasks/item/progresstaskboardformat/ProgressTaskBoardFormatRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/planner/plans/item/tasks/item/progresstaskboardformat/ProgressTaskBoardFormatRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. * @return a {@link PlannerProgressTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerProgressTaskBoardTaskFormat get() { return get(null); } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerProgressTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerProgressTaskBoardTaskFormat get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,6 @@ public PlannerProgressTaskBoardTaskFormat get(@jakarta.annotation.Nullable final * @param body The request body * @return a {@link PlannerProgressTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerProgressTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerProgressTaskBoardTaskFormat body) { @@ -95,7 +92,6 @@ public PlannerProgressTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull fina * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerProgressTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerProgressTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerProgressTaskBoardTaskFormat body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public ProgressTaskBoardFormatRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/planner/tasks/TasksRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/planner/tasks/TasksRequestBuilder.java index 066e377d2aa..e6ba4754e63 100644 --- a/src/main/java/com/microsoft/graph/generated/planner/tasks/TasksRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/planner/tasks/TasksRequestBuilder.java @@ -60,21 +60,19 @@ public TasksRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/planner/tasks{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of plannertask objects. + * Read-only. Nullable. Returns a collection of the specified tasks * @return a {@link PlannerTaskCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskCollectionResponse get() { return get(null); } /** - * Retrieve a list of plannertask objects. + * Read-only. Nullable. Returns a collection of the specified tasks * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerTaskCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public PlannerTaskCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, PlannerTaskCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new plannerTask. + * Create new navigation property to tasks for planner * @param body The request body * @return a {@link PlannerTask} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTask post(@jakarta.annotation.Nonnull final PlannerTask body) { return post(body, null); } /** - * Create a new plannerTask. + * Create new navigation property to tasks for planner * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerTask} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTask post(@jakarta.annotation.Nonnull final PlannerTask body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public PlannerTask post(@jakarta.annotation.Nonnull final PlannerTask body, @jak return this.requestAdapter.send(requestInfo, errorMapping, PlannerTask::createFromDiscriminatorValue); } /** - * Retrieve a list of plannertask objects. + * Read-only. Nullable. Returns a collection of the specified tasks * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of plannertask objects. + * Read-only. Nullable. Returns a collection of the specified tasks * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new plannerTask. + * Create new navigation property to tasks for planner * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new plannerTask. + * Create new navigation property to tasks for planner * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public TasksRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new TasksRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of plannertask objects. + * Read-only. Nullable. Returns a collection of the specified tasks */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/planner/tasks/item/PlannerTaskItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/planner/tasks/item/PlannerTaskItemRequestBuilder.java index e4578af84f8..e4d97aa3dd2 100644 --- a/src/main/java/com/microsoft/graph/generated/planner/tasks/item/PlannerTaskItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/planner/tasks/item/PlannerTaskItemRequestBuilder.java @@ -73,18 +73,16 @@ public PlannerTaskItemRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/planner/tasks/{plannerTask%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a plannerTask object. + * Delete navigation property tasks for planner * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a plannerTask object. + * Delete navigation property tasks for planner * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -93,21 +91,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of plannerTask object. + * Read-only. Nullable. Returns a collection of the specified tasks * @return a {@link PlannerTask} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTask get() { return get(null); } /** - * Retrieve the properties and relationships of plannerTask object. + * Read-only. Nullable. Returns a collection of the specified tasks * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerTask} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTask get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -121,7 +117,6 @@ public PlannerTask get(@jakarta.annotation.Nullable final java.util.function.Con * @param body The request body * @return a {@link PlannerTask} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTask patch(@jakarta.annotation.Nonnull final PlannerTask body) { @@ -133,7 +128,6 @@ public PlannerTask patch(@jakarta.annotation.Nonnull final PlannerTask body) { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerTask} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTask patch(@jakarta.annotation.Nonnull final PlannerTask body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -144,7 +138,7 @@ public PlannerTask patch(@jakarta.annotation.Nonnull final PlannerTask body, @ja return this.requestAdapter.send(requestInfo, errorMapping, PlannerTask::createFromDiscriminatorValue); } /** - * Delete a plannerTask object. + * Delete navigation property tasks for planner * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -152,7 +146,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a plannerTask object. + * Delete navigation property tasks for planner * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -164,7 +158,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of plannerTask object. + * Read-only. Nullable. Returns a collection of the specified tasks * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -172,7 +166,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of plannerTask object. + * Read-only. Nullable. Returns a collection of the specified tasks * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -224,7 +218,7 @@ public PlannerTaskItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final S public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of plannerTask object. + * Read-only. Nullable. Returns a collection of the specified tasks */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/planner/tasks/item/assignedtotaskboardformat/AssignedToTaskBoardFormatRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/planner/tasks/item/assignedtotaskboardformat/AssignedToTaskBoardFormatRequestBuilder.java index 670c7bcfb12..01f09e10f7a 100644 --- a/src/main/java/com/microsoft/graph/generated/planner/tasks/item/assignedtotaskboardformat/AssignedToTaskBoardFormatRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/planner/tasks/item/assignedtotaskboardformat/AssignedToTaskBoardFormatRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. * @return a {@link PlannerAssignedToTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerAssignedToTaskBoardTaskFormat get() { return get(null); } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerAssignedToTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerAssignedToTaskBoardTaskFormat get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,6 @@ public PlannerAssignedToTaskBoardTaskFormat get(@jakarta.annotation.Nullable fin * @param body The request body * @return a {@link PlannerAssignedToTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerAssignedToTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerAssignedToTaskBoardTaskFormat body) { @@ -95,7 +92,6 @@ public PlannerAssignedToTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull fi * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerAssignedToTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerAssignedToTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerAssignedToTaskBoardTaskFormat body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public AssignedToTaskBoardFormatRequestBuilder withUrl(@jakarta.annotation.Nonnu public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/planner/tasks/item/buckettaskboardformat/BucketTaskBoardFormatRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/planner/tasks/item/buckettaskboardformat/BucketTaskBoardFormatRequestBuilder.java index 50536d808f4..deba99eafd9 100644 --- a/src/main/java/com/microsoft/graph/generated/planner/tasks/item/buckettaskboardformat/BucketTaskBoardFormatRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/planner/tasks/item/buckettaskboardformat/BucketTaskBoardFormatRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. * @return a {@link PlannerBucketTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketTaskBoardTaskFormat get() { return get(null); } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerBucketTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketTaskBoardTaskFormat get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,6 @@ public PlannerBucketTaskBoardTaskFormat get(@jakarta.annotation.Nullable final j * @param body The request body * @return a {@link PlannerBucketTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerBucketTaskBoardTaskFormat body) { @@ -95,7 +92,6 @@ public PlannerBucketTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerBucketTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerBucketTaskBoardTaskFormat body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public BucketTaskBoardFormatRequestBuilder withUrl(@jakarta.annotation.Nonnull f public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/planner/tasks/item/details/DetailsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/planner/tasks/item/details/DetailsRequestBuilder.java index 6bf32cf43f0..50c068b318e 100644 --- a/src/main/java/com/microsoft/graph/generated/planner/tasks/item/details/DetailsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/planner/tasks/item/details/DetailsRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. * @return a {@link PlannerTaskDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskDetails get() { return get(null); } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerTaskDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskDetails get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,6 @@ public PlannerTaskDetails get(@jakarta.annotation.Nullable final java.util.funct * @param body The request body * @return a {@link PlannerTaskDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskDetails patch(@jakarta.annotation.Nonnull final PlannerTaskDetails body) { @@ -95,7 +92,6 @@ public PlannerTaskDetails patch(@jakarta.annotation.Nonnull final PlannerTaskDet * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerTaskDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskDetails patch(@jakarta.annotation.Nonnull final PlannerTaskDetails body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public DetailsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/planner/tasks/item/progresstaskboardformat/ProgressTaskBoardFormatRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/planner/tasks/item/progresstaskboardformat/ProgressTaskBoardFormatRequestBuilder.java index 2a18c53d451..de8caac4b3c 100644 --- a/src/main/java/com/microsoft/graph/generated/planner/tasks/item/progresstaskboardformat/ProgressTaskBoardFormatRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/planner/tasks/item/progresstaskboardformat/ProgressTaskBoardFormatRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. * @return a {@link PlannerProgressTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerProgressTaskBoardTaskFormat get() { return get(null); } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerProgressTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerProgressTaskBoardTaskFormat get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,6 @@ public PlannerProgressTaskBoardTaskFormat get(@jakarta.annotation.Nullable final * @param body The request body * @return a {@link PlannerProgressTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerProgressTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerProgressTaskBoardTaskFormat body) { @@ -95,7 +92,6 @@ public PlannerProgressTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull fina * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerProgressTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerProgressTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerProgressTaskBoardTaskFormat body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public ProgressTaskBoardFormatRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/policies/activitybasedtimeoutpolicies/ActivityBasedTimeoutPoliciesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/activitybasedtimeoutpolicies/ActivityBasedTimeoutPoliciesRequestBuilder.java index a9f5794ebf5..cc8b689a5ca 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/activitybasedtimeoutpolicies/ActivityBasedTimeoutPoliciesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/activitybasedtimeoutpolicies/ActivityBasedTimeoutPoliciesRequestBuilder.java @@ -60,21 +60,19 @@ public ActivityBasedTimeoutPoliciesRequestBuilder(@jakarta.annotation.Nonnull fi super(requestAdapter, "{+baseurl}/policies/activityBasedTimeoutPolicies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of activityBasedTimeoutPolicy objects. + * The policy that controls the idle time out for web sessions for applications. * @return a {@link ActivityBasedTimeoutPolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ActivityBasedTimeoutPolicyCollectionResponse get() { return get(null); } /** - * Get a list of activityBasedTimeoutPolicy objects. + * The policy that controls the idle time out for web sessions for applications. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ActivityBasedTimeoutPolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ActivityBasedTimeoutPolicyCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public ActivityBasedTimeoutPolicyCollectionResponse get(@jakarta.annotation.Null return this.requestAdapter.send(requestInfo, errorMapping, ActivityBasedTimeoutPolicyCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new activityBasedTimeoutPolicy object. + * Create new navigation property to activityBasedTimeoutPolicies for policies * @param body The request body * @return a {@link ActivityBasedTimeoutPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ActivityBasedTimeoutPolicy post(@jakarta.annotation.Nonnull final ActivityBasedTimeoutPolicy body) { return post(body, null); } /** - * Create a new activityBasedTimeoutPolicy object. + * Create new navigation property to activityBasedTimeoutPolicies for policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ActivityBasedTimeoutPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ActivityBasedTimeoutPolicy post(@jakarta.annotation.Nonnull final ActivityBasedTimeoutPolicy body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public ActivityBasedTimeoutPolicy post(@jakarta.annotation.Nonnull final Activit return this.requestAdapter.send(requestInfo, errorMapping, ActivityBasedTimeoutPolicy::createFromDiscriminatorValue); } /** - * Get a list of activityBasedTimeoutPolicy objects. + * The policy that controls the idle time out for web sessions for applications. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of activityBasedTimeoutPolicy objects. + * The policy that controls the idle time out for web sessions for applications. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new activityBasedTimeoutPolicy object. + * Create new navigation property to activityBasedTimeoutPolicies for policies * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new activityBasedTimeoutPolicy object. + * Create new navigation property to activityBasedTimeoutPolicies for policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ActivityBasedTimeoutPoliciesRequestBuilder withUrl(@jakarta.annotation.No return new ActivityBasedTimeoutPoliciesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of activityBasedTimeoutPolicy objects. + * The policy that controls the idle time out for web sessions for applications. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/policies/activitybasedtimeoutpolicies/item/ActivityBasedTimeoutPolicyItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/activitybasedtimeoutpolicies/item/ActivityBasedTimeoutPolicyItemRequestBuilder.java index cea28eb6f43..4581bea317c 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/activitybasedtimeoutpolicies/item/ActivityBasedTimeoutPolicyItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/activitybasedtimeoutpolicies/item/ActivityBasedTimeoutPolicyItemRequestBuilder.java @@ -46,18 +46,16 @@ public ActivityBasedTimeoutPolicyItemRequestBuilder(@jakarta.annotation.Nonnull super(requestAdapter, "{+baseurl}/policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an activityBasedTimeoutPolicy object. + * Delete navigation property activityBasedTimeoutPolicies for policies * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an activityBasedTimeoutPolicy object. + * Delete navigation property activityBasedTimeoutPolicies for policies * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the properties of an activityBasedTimeoutPolicy object. + * The policy that controls the idle time out for web sessions for applications. * @return a {@link ActivityBasedTimeoutPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ActivityBasedTimeoutPolicy get() { return get(null); } /** - * Get the properties of an activityBasedTimeoutPolicy object. + * The policy that controls the idle time out for web sessions for applications. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ActivityBasedTimeoutPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ActivityBasedTimeoutPolicy get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public ActivityBasedTimeoutPolicy get(@jakarta.annotation.Nullable final java.ut return this.requestAdapter.send(requestInfo, errorMapping, ActivityBasedTimeoutPolicy::createFromDiscriminatorValue); } /** - * Update the properties of an activityBasedTimeoutPolicy object. + * Update the navigation property activityBasedTimeoutPolicies in policies * @param body The request body * @return a {@link ActivityBasedTimeoutPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ActivityBasedTimeoutPolicy patch(@jakarta.annotation.Nonnull final ActivityBasedTimeoutPolicy body) { return patch(body, null); } /** - * Update the properties of an activityBasedTimeoutPolicy object. + * Update the navigation property activityBasedTimeoutPolicies in policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ActivityBasedTimeoutPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ActivityBasedTimeoutPolicy patch(@jakarta.annotation.Nonnull final ActivityBasedTimeoutPolicy body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public ActivityBasedTimeoutPolicy patch(@jakarta.annotation.Nonnull final Activi return this.requestAdapter.send(requestInfo, errorMapping, ActivityBasedTimeoutPolicy::createFromDiscriminatorValue); } /** - * Delete an activityBasedTimeoutPolicy object. + * Delete navigation property activityBasedTimeoutPolicies for policies * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an activityBasedTimeoutPolicy object. + * Delete navigation property activityBasedTimeoutPolicies for policies * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the properties of an activityBasedTimeoutPolicy object. + * The policy that controls the idle time out for web sessions for applications. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the properties of an activityBasedTimeoutPolicy object. + * The policy that controls the idle time out for web sessions for applications. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an activityBasedTimeoutPolicy object. + * Update the navigation property activityBasedTimeoutPolicies in policies * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an activityBasedTimeoutPolicy object. + * Update the navigation property activityBasedTimeoutPolicies in policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public ActivityBasedTimeoutPolicyItemRequestBuilder withUrl(@jakarta.annotation. public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the properties of an activityBasedTimeoutPolicy object. + * The policy that controls the idle time out for web sessions for applications. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/policies/adminconsentrequestpolicy/AdminConsentRequestPolicyRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/adminconsentrequestpolicy/AdminConsentRequestPolicyRequestBuilder.java index 1a8ff092b40..3b6e8a1840c 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/adminconsentrequestpolicy/AdminConsentRequestPolicyRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/adminconsentrequestpolicy/AdminConsentRequestPolicyRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of an adminConsentRequestPolicy object. + * The policy by which consent requests are created and managed for the entire tenant. * @return a {@link AdminConsentRequestPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AdminConsentRequestPolicy get() { return get(null); } /** - * Read the properties and relationships of an adminConsentRequestPolicy object. + * The policy by which consent requests are created and managed for the entire tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AdminConsentRequestPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AdminConsentRequestPolicy get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public AdminConsentRequestPolicy get(@jakarta.annotation.Nullable final java.uti return this.requestAdapter.send(requestInfo, errorMapping, AdminConsentRequestPolicy::createFromDiscriminatorValue); } /** - * Update the properties of an adminConsentRequestPolicy object. + * Update the navigation property adminConsentRequestPolicy in policies * @param body The request body * @return a {@link AdminConsentRequestPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AdminConsentRequestPolicy patch(@jakarta.annotation.Nonnull final AdminConsentRequestPolicy body) { return patch(body, null); } /** - * Update the properties of an adminConsentRequestPolicy object. + * Update the navigation property adminConsentRequestPolicy in policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AdminConsentRequestPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AdminConsentRequestPolicy patch(@jakarta.annotation.Nonnull final AdminConsentRequestPolicy body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of an adminConsentRequestPolicy object. + * The policy by which consent requests are created and managed for the entire tenant. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of an adminConsentRequestPolicy object. + * The policy by which consent requests are created and managed for the entire tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an adminConsentRequestPolicy object. + * Update the navigation property adminConsentRequestPolicy in policies * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an adminConsentRequestPolicy object. + * Update the navigation property adminConsentRequestPolicy in policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public AdminConsentRequestPolicyRequestBuilder withUrl(@jakarta.annotation.Nonnu public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of an adminConsentRequestPolicy object. + * The policy by which consent requests are created and managed for the entire tenant. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/policies/appmanagementpolicies/AppManagementPoliciesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/appmanagementpolicies/AppManagementPoliciesRequestBuilder.java index ebc1189c1e2..045e3b6bc38 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/appmanagementpolicies/AppManagementPoliciesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/appmanagementpolicies/AppManagementPoliciesRequestBuilder.java @@ -60,21 +60,19 @@ public AppManagementPoliciesRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/policies/appManagementPolicies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of appManagementPolicy objects. + * The policies that enforce app management restrictions for specific applications and service principals, overriding the defaultAppManagementPolicy. * @return a {@link AppManagementPolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AppManagementPolicyCollectionResponse get() { return get(null); } /** - * Retrieve a list of appManagementPolicy objects. + * The policies that enforce app management restrictions for specific applications and service principals, overriding the defaultAppManagementPolicy. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AppManagementPolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AppManagementPolicyCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public AppManagementPolicyCollectionResponse get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, AppManagementPolicyCollectionResponse::createFromDiscriminatorValue); } /** - * Create an appManagementPolicy object. + * Create new navigation property to appManagementPolicies for policies * @param body The request body * @return a {@link AppManagementPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AppManagementPolicy post(@jakarta.annotation.Nonnull final AppManagementPolicy body) { return post(body, null); } /** - * Create an appManagementPolicy object. + * Create new navigation property to appManagementPolicies for policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AppManagementPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AppManagementPolicy post(@jakarta.annotation.Nonnull final AppManagementPolicy body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public AppManagementPolicy post(@jakarta.annotation.Nonnull final AppManagementP return this.requestAdapter.send(requestInfo, errorMapping, AppManagementPolicy::createFromDiscriminatorValue); } /** - * Retrieve a list of appManagementPolicy objects. + * The policies that enforce app management restrictions for specific applications and service principals, overriding the defaultAppManagementPolicy. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of appManagementPolicy objects. + * The policies that enforce app management restrictions for specific applications and service principals, overriding the defaultAppManagementPolicy. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an appManagementPolicy object. + * Create new navigation property to appManagementPolicies for policies * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an appManagementPolicy object. + * Create new navigation property to appManagementPolicies for policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public AppManagementPoliciesRequestBuilder withUrl(@jakarta.annotation.Nonnull f return new AppManagementPoliciesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of appManagementPolicy objects. + * The policies that enforce app management restrictions for specific applications and service principals, overriding the defaultAppManagementPolicy. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/policies/appmanagementpolicies/item/AppManagementPolicyItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/appmanagementpolicies/item/AppManagementPolicyItemRequestBuilder.java index ab8081cf4b3..eda550cd12e 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/appmanagementpolicies/item/AppManagementPolicyItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/appmanagementpolicies/item/AppManagementPolicyItemRequestBuilder.java @@ -46,18 +46,16 @@ public AppManagementPolicyItemRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/policies/appManagementPolicies/{appManagementPolicy%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an appManagementPolicy object. + * Delete navigation property appManagementPolicies for policies * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an appManagementPolicy object. + * Delete navigation property appManagementPolicies for policies * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties of an appManagementPolicy object. + * The policies that enforce app management restrictions for specific applications and service principals, overriding the defaultAppManagementPolicy. * @return a {@link AppManagementPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AppManagementPolicy get() { return get(null); } /** - * Read the properties of an appManagementPolicy object. + * The policies that enforce app management restrictions for specific applications and service principals, overriding the defaultAppManagementPolicy. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AppManagementPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AppManagementPolicy get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public AppManagementPolicy get(@jakarta.annotation.Nullable final java.util.func return this.requestAdapter.send(requestInfo, errorMapping, AppManagementPolicy::createFromDiscriminatorValue); } /** - * Update an appManagementPolicy object. + * Update the navigation property appManagementPolicies in policies * @param body The request body * @return a {@link AppManagementPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AppManagementPolicy patch(@jakarta.annotation.Nonnull final AppManagementPolicy body) { return patch(body, null); } /** - * Update an appManagementPolicy object. + * Update the navigation property appManagementPolicies in policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AppManagementPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AppManagementPolicy patch(@jakarta.annotation.Nonnull final AppManagementPolicy body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public AppManagementPolicy patch(@jakarta.annotation.Nonnull final AppManagement return this.requestAdapter.send(requestInfo, errorMapping, AppManagementPolicy::createFromDiscriminatorValue); } /** - * Delete an appManagementPolicy object. + * Delete navigation property appManagementPolicies for policies * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an appManagementPolicy object. + * Delete navigation property appManagementPolicies for policies * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties of an appManagementPolicy object. + * The policies that enforce app management restrictions for specific applications and service principals, overriding the defaultAppManagementPolicy. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties of an appManagementPolicy object. + * The policies that enforce app management restrictions for specific applications and service principals, overriding the defaultAppManagementPolicy. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update an appManagementPolicy object. + * Update the navigation property appManagementPolicies in policies * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update an appManagementPolicy object. + * Update the navigation property appManagementPolicies in policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public AppManagementPolicyItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties of an appManagementPolicy object. + * The policies that enforce app management restrictions for specific applications and service principals, overriding the defaultAppManagementPolicy. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/policies/appmanagementpolicies/item/appliesto/AppliesToRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/appmanagementpolicies/item/appliesto/AppliesToRequestBuilder.java index 0abddc7b9bf..7e5c5fc5622 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/appmanagementpolicies/item/appliesto/AppliesToRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/appmanagementpolicies/item/appliesto/AppliesToRequestBuilder.java @@ -59,21 +59,19 @@ public AppliesToRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/policies/appManagementPolicies/{appManagementPolicy%2Did}/appliesTo{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List application and service principal objects that are assigned an appManagementPolicy policy object. + * Collection of applications and service principals to which the policy is applied. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get() { return get(null); } /** - * List application and service principal objects that are assigned an appManagementPolicy policy object. + * Collection of applications and service principals to which the policy is applied. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, DirectoryObjectCollectionResponse::createFromDiscriminatorValue); } /** - * List application and service principal objects that are assigned an appManagementPolicy policy object. + * Collection of applications and service principals to which the policy is applied. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List application and service principal objects that are assigned an appManagementPolicy policy object. + * Collection of applications and service principals to which the policy is applied. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public AppliesToRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new AppliesToRequestBuilder(rawUrl, requestAdapter); } /** - * List application and service principal objects that are assigned an appManagementPolicy policy object. + * Collection of applications and service principals to which the policy is applied. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/policies/authenticationflowspolicy/AuthenticationFlowsPolicyRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/authenticationflowspolicy/AuthenticationFlowsPolicyRequestBuilder.java index 8cf92546855..6b6dadbc5a7 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/authenticationflowspolicy/AuthenticationFlowsPolicyRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/authenticationflowspolicy/AuthenticationFlowsPolicyRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of an authenticationFlowsPolicy object. + * The policy configuration of the self-service sign-up experience of external users. * @return a {@link AuthenticationFlowsPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationFlowsPolicy get() { return get(null); } /** - * Read the properties and relationships of an authenticationFlowsPolicy object. + * The policy configuration of the self-service sign-up experience of external users. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AuthenticationFlowsPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationFlowsPolicy get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public AuthenticationFlowsPolicy get(@jakarta.annotation.Nullable final java.uti return this.requestAdapter.send(requestInfo, errorMapping, AuthenticationFlowsPolicy::createFromDiscriminatorValue); } /** - * Update the selfServiceSignUp property of an authenticationFlowsPolicy object. The properties id, type, and description cannot be modified. + * Update the navigation property authenticationFlowsPolicy in policies * @param body The request body * @return a {@link AuthenticationFlowsPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationFlowsPolicy patch(@jakarta.annotation.Nonnull final AuthenticationFlowsPolicy body) { return patch(body, null); } /** - * Update the selfServiceSignUp property of an authenticationFlowsPolicy object. The properties id, type, and description cannot be modified. + * Update the navigation property authenticationFlowsPolicy in policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AuthenticationFlowsPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationFlowsPolicy patch(@jakarta.annotation.Nonnull final AuthenticationFlowsPolicy body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of an authenticationFlowsPolicy object. + * The policy configuration of the self-service sign-up experience of external users. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of an authenticationFlowsPolicy object. + * The policy configuration of the self-service sign-up experience of external users. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the selfServiceSignUp property of an authenticationFlowsPolicy object. The properties id, type, and description cannot be modified. + * Update the navigation property authenticationFlowsPolicy in policies * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the selfServiceSignUp property of an authenticationFlowsPolicy object. The properties id, type, and description cannot be modified. + * Update the navigation property authenticationFlowsPolicy in policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public AuthenticationFlowsPolicyRequestBuilder withUrl(@jakarta.annotation.Nonnu public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of an authenticationFlowsPolicy object. + * The policy configuration of the self-service sign-up experience of external users. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/policies/authenticationmethodspolicy/AuthenticationMethodsPolicyRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/authenticationmethodspolicy/AuthenticationMethodsPolicyRequestBuilder.java index 57703fa690f..a1d44029fe9 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/authenticationmethodspolicy/AuthenticationMethodsPolicyRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/authenticationmethodspolicy/AuthenticationMethodsPolicyRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of an authenticationMethodsPolicy object. + * The authentication methods and the users that are allowed to use them to sign in and perform multifactor authentication (MFA) in Microsoft Entra ID. * @return a {@link AuthenticationMethodsPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationMethodsPolicy get() { return get(null); } /** - * Read the properties and relationships of an authenticationMethodsPolicy object. + * The authentication methods and the users that are allowed to use them to sign in and perform multifactor authentication (MFA) in Microsoft Entra ID. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AuthenticationMethodsPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationMethodsPolicy get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -88,23 +86,21 @@ public AuthenticationMethodsPolicy get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, AuthenticationMethodsPolicy::createFromDiscriminatorValue); } /** - * Update the properties of an authenticationMethodsPolicy object. + * Update the navigation property authenticationMethodsPolicy in policies * @param body The request body * @return a {@link AuthenticationMethodsPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationMethodsPolicy patch(@jakarta.annotation.Nonnull final AuthenticationMethodsPolicy body) { return patch(body, null); } /** - * Update the properties of an authenticationMethodsPolicy object. + * Update the navigation property authenticationMethodsPolicy in policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AuthenticationMethodsPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationMethodsPolicy patch(@jakarta.annotation.Nonnull final AuthenticationMethodsPolicy body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of an authenticationMethodsPolicy object. + * The authentication methods and the users that are allowed to use them to sign in and perform multifactor authentication (MFA) in Microsoft Entra ID. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of an authenticationMethodsPolicy object. + * The authentication methods and the users that are allowed to use them to sign in and perform multifactor authentication (MFA) in Microsoft Entra ID. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an authenticationMethodsPolicy object. + * Update the navigation property authenticationMethodsPolicy in policies * @param body The request body * @return a {@link RequestInformation} */ @@ -164,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an authenticationMethodsPolicy object. + * Update the navigation property authenticationMethodsPolicy in policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -195,7 +191,7 @@ public AuthenticationMethodsPolicyRequestBuilder withUrl(@jakarta.annotation.Non public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of an authenticationMethodsPolicy object. + * The authentication methods and the users that are allowed to use them to sign in and perform multifactor authentication (MFA) in Microsoft Entra ID. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/policies/authenticationstrengthpolicies/AuthenticationStrengthPoliciesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/authenticationstrengthpolicies/AuthenticationStrengthPoliciesRequestBuilder.java index a9cd8789e2e..73d67198a68 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/authenticationstrengthpolicies/AuthenticationStrengthPoliciesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/authenticationstrengthpolicies/AuthenticationStrengthPoliciesRequestBuilder.java @@ -60,21 +60,19 @@ public AuthenticationStrengthPoliciesRequestBuilder(@jakarta.annotation.Nonnull super(requestAdapter, "{+baseurl}/policies/authenticationStrengthPolicies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the authenticationStrengthPolicy objects and their properties. This API returns both built-in and custom policies. + * The authentication method combinations that are to be used in scenarios defined by Microsoft Entra Conditional Access. * @return a {@link AuthenticationStrengthPolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationStrengthPolicyCollectionResponse get() { return get(null); } /** - * Get a list of the authenticationStrengthPolicy objects and their properties. This API returns both built-in and custom policies. + * The authentication method combinations that are to be used in scenarios defined by Microsoft Entra Conditional Access. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AuthenticationStrengthPolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationStrengthPolicyCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public AuthenticationStrengthPolicyCollectionResponse get(@jakarta.annotation.Nu return this.requestAdapter.send(requestInfo, errorMapping, AuthenticationStrengthPolicyCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new custom authenticationStrengthPolicy object. + * Create new navigation property to authenticationStrengthPolicies for policies * @param body The request body * @return a {@link AuthenticationStrengthPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationStrengthPolicy post(@jakarta.annotation.Nonnull final AuthenticationStrengthPolicy body) { return post(body, null); } /** - * Create a new custom authenticationStrengthPolicy object. + * Create new navigation property to authenticationStrengthPolicies for policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AuthenticationStrengthPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationStrengthPolicy post(@jakarta.annotation.Nonnull final AuthenticationStrengthPolicy body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public AuthenticationStrengthPolicy post(@jakarta.annotation.Nonnull final Authe return this.requestAdapter.send(requestInfo, errorMapping, AuthenticationStrengthPolicy::createFromDiscriminatorValue); } /** - * Get a list of the authenticationStrengthPolicy objects and their properties. This API returns both built-in and custom policies. + * The authentication method combinations that are to be used in scenarios defined by Microsoft Entra Conditional Access. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the authenticationStrengthPolicy objects and their properties. This API returns both built-in and custom policies. + * The authentication method combinations that are to be used in scenarios defined by Microsoft Entra Conditional Access. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new custom authenticationStrengthPolicy object. + * Create new navigation property to authenticationStrengthPolicies for policies * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new custom authenticationStrengthPolicy object. + * Create new navigation property to authenticationStrengthPolicies for policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public AuthenticationStrengthPoliciesRequestBuilder withUrl(@jakarta.annotation. return new AuthenticationStrengthPoliciesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the authenticationStrengthPolicy objects and their properties. This API returns both built-in and custom policies. + * The authentication method combinations that are to be used in scenarios defined by Microsoft Entra Conditional Access. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/policies/authenticationstrengthpolicies/item/AuthenticationStrengthPolicyItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/authenticationstrengthpolicies/item/AuthenticationStrengthPolicyItemRequestBuilder.java index ea1c27b24e4..9af2d763135 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/authenticationstrengthpolicies/item/AuthenticationStrengthPolicyItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/authenticationstrengthpolicies/item/AuthenticationStrengthPolicyItemRequestBuilder.java @@ -64,18 +64,16 @@ public AuthenticationStrengthPolicyItemRequestBuilder(@jakarta.annotation.Nonnul super(requestAdapter, "{+baseurl}/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a custom authenticationStrengthPolicy object. + * Delete navigation property authenticationStrengthPolicies for policies * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a custom authenticationStrengthPolicy object. + * Delete navigation property authenticationStrengthPolicies for policies * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -84,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of an authenticationStrengthPolicy object. + * The authentication method combinations that are to be used in scenarios defined by Microsoft Entra Conditional Access. * @return a {@link AuthenticationStrengthPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationStrengthPolicy get() { return get(null); } /** - * Read the properties and relationships of an authenticationStrengthPolicy object. + * The authentication method combinations that are to be used in scenarios defined by Microsoft Entra Conditional Access. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AuthenticationStrengthPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationStrengthPolicy get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,23 +104,21 @@ public AuthenticationStrengthPolicy get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, AuthenticationStrengthPolicy::createFromDiscriminatorValue); } /** - * Update the properties of an authenticationStrengthPolicy object. You cannot update the allowed auth method combinations using this request. To do so, use the Update allowed combinations action. + * Update the navigation property authenticationStrengthPolicies in policies * @param body The request body * @return a {@link AuthenticationStrengthPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationStrengthPolicy patch(@jakarta.annotation.Nonnull final AuthenticationStrengthPolicy body) { return patch(body, null); } /** - * Update the properties of an authenticationStrengthPolicy object. You cannot update the allowed auth method combinations using this request. To do so, use the Update allowed combinations action. + * Update the navigation property authenticationStrengthPolicies in policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AuthenticationStrengthPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationStrengthPolicy patch(@jakarta.annotation.Nonnull final AuthenticationStrengthPolicy body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +129,7 @@ public AuthenticationStrengthPolicy patch(@jakarta.annotation.Nonnull final Auth return this.requestAdapter.send(requestInfo, errorMapping, AuthenticationStrengthPolicy::createFromDiscriminatorValue); } /** - * Delete a custom authenticationStrengthPolicy object. + * Delete navigation property authenticationStrengthPolicies for policies * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +137,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a custom authenticationStrengthPolicy object. + * Delete navigation property authenticationStrengthPolicies for policies * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of an authenticationStrengthPolicy object. + * The authentication method combinations that are to be used in scenarios defined by Microsoft Entra Conditional Access. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -163,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of an authenticationStrengthPolicy object. + * The authentication method combinations that are to be used in scenarios defined by Microsoft Entra Conditional Access. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -175,7 +169,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an authenticationStrengthPolicy object. You cannot update the allowed auth method combinations using this request. To do so, use the Update allowed combinations action. + * Update the navigation property authenticationStrengthPolicies in policies * @param body The request body * @return a {@link RequestInformation} */ @@ -184,7 +178,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an authenticationStrengthPolicy object. You cannot update the allowed auth method combinations using this request. To do so, use the Update allowed combinations action. + * Update the navigation property authenticationStrengthPolicies in policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -215,7 +209,7 @@ public AuthenticationStrengthPolicyItemRequestBuilder withUrl(@jakarta.annotatio public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of an authenticationStrengthPolicy object. + * The authentication method combinations that are to be used in scenarios defined by Microsoft Entra Conditional Access. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/policies/authenticationstrengthpolicies/item/combinationconfigurations/CombinationConfigurationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/authenticationstrengthpolicies/item/combinationconfigurations/CombinationConfigurationsRequestBuilder.java index 03101a1c707..38945f338a4 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/authenticationstrengthpolicies/item/combinationconfigurations/CombinationConfigurationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/authenticationstrengthpolicies/item/combinationconfigurations/CombinationConfigurationsRequestBuilder.java @@ -60,21 +60,19 @@ public CombinationConfigurationsRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy%2Did}/combinationConfigurations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the authenticationCombinationConfiguration objects for an authentication strength policy. authenticationCombinationConfiguration represents requirements placed on specific authentication method combinations that require specified variants of those authentication methods to be used when authenticating. Currently, only fido2combinationConfigurations objects are supported. authenticationCombinationConfiguration objects are supported only for custom authentication strengths. + * Settings that may be used to require specific types or instances of an authentication method to be used when authenticating with a specified combination of authentication methods. * @return a {@link AuthenticationCombinationConfigurationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationCombinationConfigurationCollectionResponse get() { return get(null); } /** - * Get the authenticationCombinationConfiguration objects for an authentication strength policy. authenticationCombinationConfiguration represents requirements placed on specific authentication method combinations that require specified variants of those authentication methods to be used when authenticating. Currently, only fido2combinationConfigurations objects are supported. authenticationCombinationConfiguration objects are supported only for custom authentication strengths. + * Settings that may be used to require specific types or instances of an authentication method to be used when authenticating with a specified combination of authentication methods. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AuthenticationCombinationConfigurationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationCombinationConfigurationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public AuthenticationCombinationConfigurationCollectionResponse get(@jakarta.ann return this.requestAdapter.send(requestInfo, errorMapping, AuthenticationCombinationConfigurationCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new authenticationCombinationConfiguration object. In use, only fido2combinationConfigurations may be created, and these may only be created for custom authentication strength policies. + * Create new navigation property to combinationConfigurations for policies * @param body The request body * @return a {@link AuthenticationCombinationConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationCombinationConfiguration post(@jakarta.annotation.Nonnull final AuthenticationCombinationConfiguration body) { return post(body, null); } /** - * Create a new authenticationCombinationConfiguration object. In use, only fido2combinationConfigurations may be created, and these may only be created for custom authentication strength policies. + * Create new navigation property to combinationConfigurations for policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AuthenticationCombinationConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationCombinationConfiguration post(@jakarta.annotation.Nonnull final AuthenticationCombinationConfiguration body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public AuthenticationCombinationConfiguration post(@jakarta.annotation.Nonnull f return this.requestAdapter.send(requestInfo, errorMapping, AuthenticationCombinationConfiguration::createFromDiscriminatorValue); } /** - * Get the authenticationCombinationConfiguration objects for an authentication strength policy. authenticationCombinationConfiguration represents requirements placed on specific authentication method combinations that require specified variants of those authentication methods to be used when authenticating. Currently, only fido2combinationConfigurations objects are supported. authenticationCombinationConfiguration objects are supported only for custom authentication strengths. + * Settings that may be used to require specific types or instances of an authentication method to be used when authenticating with a specified combination of authentication methods. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the authenticationCombinationConfiguration objects for an authentication strength policy. authenticationCombinationConfiguration represents requirements placed on specific authentication method combinations that require specified variants of those authentication methods to be used when authenticating. Currently, only fido2combinationConfigurations objects are supported. authenticationCombinationConfiguration objects are supported only for custom authentication strengths. + * Settings that may be used to require specific types or instances of an authentication method to be used when authenticating with a specified combination of authentication methods. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new authenticationCombinationConfiguration object. In use, only fido2combinationConfigurations may be created, and these may only be created for custom authentication strength policies. + * Create new navigation property to combinationConfigurations for policies * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new authenticationCombinationConfiguration object. In use, only fido2combinationConfigurations may be created, and these may only be created for custom authentication strength policies. + * Create new navigation property to combinationConfigurations for policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public CombinationConfigurationsRequestBuilder withUrl(@jakarta.annotation.Nonnu return new CombinationConfigurationsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the authenticationCombinationConfiguration objects for an authentication strength policy. authenticationCombinationConfiguration represents requirements placed on specific authentication method combinations that require specified variants of those authentication methods to be used when authenticating. Currently, only fido2combinationConfigurations objects are supported. authenticationCombinationConfiguration objects are supported only for custom authentication strengths. + * Settings that may be used to require specific types or instances of an authentication method to be used when authenticating with a specified combination of authentication methods. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/policies/authenticationstrengthpolicies/item/combinationconfigurations/item/AuthenticationCombinationConfigurationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/authenticationstrengthpolicies/item/combinationconfigurations/item/AuthenticationCombinationConfigurationItemRequestBuilder.java index 74edc76443d..6ec3b9810ef 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/authenticationstrengthpolicies/item/combinationconfigurations/item/AuthenticationCombinationConfigurationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/authenticationstrengthpolicies/item/combinationconfigurations/item/AuthenticationCombinationConfigurationItemRequestBuilder.java @@ -37,18 +37,16 @@ public AuthenticationCombinationConfigurationItemRequestBuilder(@jakarta.annotat super(requestAdapter, "{+baseurl}/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy%2Did}/combinationConfigurations/{authenticationCombinationConfiguration%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an authenticationCombinationConfiguration for a custom authenticationStrengthPolicy object. + * Delete navigation property combinationConfigurations for policies * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an authenticationCombinationConfiguration for a custom authenticationStrengthPolicy object. + * Delete navigation property combinationConfigurations for policies * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of an authenticationCombinationConfiguration object. + * Settings that may be used to require specific types or instances of an authentication method to be used when authenticating with a specified combination of authentication methods. * @return a {@link AuthenticationCombinationConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationCombinationConfiguration get() { return get(null); } /** - * Read the properties and relationships of an authenticationCombinationConfiguration object. + * Settings that may be used to require specific types or instances of an authentication method to be used when authenticating with a specified combination of authentication methods. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AuthenticationCombinationConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationCombinationConfiguration get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public AuthenticationCombinationConfiguration get(@jakarta.annotation.Nullable f return this.requestAdapter.send(requestInfo, errorMapping, AuthenticationCombinationConfiguration::createFromDiscriminatorValue); } /** - * Update the properties of an authenticationCombinationConfiguration object. In use, only fido2combinationConfigurations may be updated as they're the only type of authenticationCombinationConfiguration that may be created. + * Update the navigation property combinationConfigurations in policies * @param body The request body * @return a {@link AuthenticationCombinationConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationCombinationConfiguration patch(@jakarta.annotation.Nonnull final AuthenticationCombinationConfiguration body) { return patch(body, null); } /** - * Update the properties of an authenticationCombinationConfiguration object. In use, only fido2combinationConfigurations may be updated as they're the only type of authenticationCombinationConfiguration that may be created. + * Update the navigation property combinationConfigurations in policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AuthenticationCombinationConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationCombinationConfiguration patch(@jakarta.annotation.Nonnull final AuthenticationCombinationConfiguration body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public AuthenticationCombinationConfiguration patch(@jakarta.annotation.Nonnull return this.requestAdapter.send(requestInfo, errorMapping, AuthenticationCombinationConfiguration::createFromDiscriminatorValue); } /** - * Delete an authenticationCombinationConfiguration for a custom authenticationStrengthPolicy object. + * Delete navigation property combinationConfigurations for policies * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an authenticationCombinationConfiguration for a custom authenticationStrengthPolicy object. + * Delete navigation property combinationConfigurations for policies * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of an authenticationCombinationConfiguration object. + * Settings that may be used to require specific types or instances of an authentication method to be used when authenticating with a specified combination of authentication methods. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of an authenticationCombinationConfiguration object. + * Settings that may be used to require specific types or instances of an authentication method to be used when authenticating with a specified combination of authentication methods. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an authenticationCombinationConfiguration object. In use, only fido2combinationConfigurations may be updated as they're the only type of authenticationCombinationConfiguration that may be created. + * Update the navigation property combinationConfigurations in policies * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an authenticationCombinationConfiguration object. In use, only fido2combinationConfigurations may be updated as they're the only type of authenticationCombinationConfiguration that may be created. + * Update the navigation property combinationConfigurations in policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public AuthenticationCombinationConfigurationItemRequestBuilder withUrl(@jakarta public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of an authenticationCombinationConfiguration object. + * Settings that may be used to require specific types or instances of an authentication method to be used when authenticating with a specified combination of authentication methods. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/policies/authenticationstrengthpolicies/item/usage/UsageRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/authenticationstrengthpolicies/item/usage/UsageRequestBuilder.java index a44849d8889..a4dff1ccc30 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/authenticationstrengthpolicies/item/usage/UsageRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/authenticationstrengthpolicies/item/usage/UsageRequestBuilder.java @@ -36,19 +36,21 @@ public UsageRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy%2Did}/usage()", rawUrl); } /** - * Invoke function usage + * Allows the caller to see which Conditional Access policies reference a specified authentication strength policy. The policies are returned in two collections, one containing Conditional Access policies that require an MFA claim and the other containing Conditional Access policies that do not require such a claim. Policies in the former category are restricted in what kinds of changes may be made to them to prevent undermining the MFA requirement of those policies. * @return a {@link AuthenticationStrengthUsage} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationStrengthUsage get() { return get(null); } /** - * Invoke function usage + * Allows the caller to see which Conditional Access policies reference a specified authentication strength policy. The policies are returned in two collections, one containing Conditional Access policies that require an MFA claim and the other containing Conditional Access policies that do not require such a claim. Policies in the former category are restricted in what kinds of changes may be made to them to prevent undermining the MFA requirement of those policies. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AuthenticationStrengthUsage} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationStrengthUsage get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public AuthenticationStrengthUsage get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, AuthenticationStrengthUsage::createFromDiscriminatorValue); } /** - * Invoke function usage + * Allows the caller to see which Conditional Access policies reference a specified authentication strength policy. The policies are returned in two collections, one containing Conditional Access policies that require an MFA claim and the other containing Conditional Access policies that do not require such a claim. Policies in the former category are restricted in what kinds of changes may be made to them to prevent undermining the MFA requirement of those policies. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function usage + * Allows the caller to see which Conditional Access policies reference a specified authentication strength policy. The policies are returned in two collections, one containing Conditional Access policies that require an MFA claim and the other containing Conditional Access policies that do not require such a claim. Policies in the former category are restricted in what kinds of changes may be made to them to prevent undermining the MFA requirement of those policies. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/policies/authorizationpolicy/AuthorizationPolicyRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/authorizationpolicy/AuthorizationPolicyRequestBuilder.java index aaef8419233..c0469b2e490 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/authorizationpolicy/AuthorizationPolicyRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/authorizationpolicy/AuthorizationPolicyRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties of an authorizationPolicy object. + * The policy that controls Microsoft Entra authorization settings. * @return a {@link AuthorizationPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthorizationPolicy get() { return get(null); } /** - * Retrieve the properties of an authorizationPolicy object. + * The policy that controls Microsoft Entra authorization settings. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AuthorizationPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthorizationPolicy get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public AuthorizationPolicy get(@jakarta.annotation.Nullable final java.util.func return this.requestAdapter.send(requestInfo, errorMapping, AuthorizationPolicy::createFromDiscriminatorValue); } /** - * Update the properties of an authorizationPolicy object. + * Update the navigation property authorizationPolicy in policies * @param body The request body * @return a {@link AuthorizationPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthorizationPolicy patch(@jakarta.annotation.Nonnull final AuthorizationPolicy body) { return patch(body, null); } /** - * Update the properties of an authorizationPolicy object. + * Update the navigation property authorizationPolicy in policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AuthorizationPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthorizationPolicy patch(@jakarta.annotation.Nonnull final AuthorizationPolicy body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties of an authorizationPolicy object. + * The policy that controls Microsoft Entra authorization settings. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties of an authorizationPolicy object. + * The policy that controls Microsoft Entra authorization settings. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an authorizationPolicy object. + * Update the navigation property authorizationPolicy in policies * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an authorizationPolicy object. + * Update the navigation property authorizationPolicy in policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public AuthorizationPolicyRequestBuilder withUrl(@jakarta.annotation.Nonnull fin public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties of an authorizationPolicy object. + * The policy that controls Microsoft Entra authorization settings. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/policies/claimsmappingpolicies/ClaimsMappingPoliciesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/claimsmappingpolicies/ClaimsMappingPoliciesRequestBuilder.java index 8770009531c..218238b9a96 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/claimsmappingpolicies/ClaimsMappingPoliciesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/claimsmappingpolicies/ClaimsMappingPoliciesRequestBuilder.java @@ -60,21 +60,19 @@ public ClaimsMappingPoliciesRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/policies/claimsMappingPolicies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of claimsMappingPolicy objects. + * The claim-mapping policies for WS-Fed, SAML, OAuth 2.0, and OpenID Connect protocols, for tokens issued to a specific application. * @return a {@link ClaimsMappingPolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ClaimsMappingPolicyCollectionResponse get() { return get(null); } /** - * Get a list of claimsMappingPolicy objects. + * The claim-mapping policies for WS-Fed, SAML, OAuth 2.0, and OpenID Connect protocols, for tokens issued to a specific application. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ClaimsMappingPolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ClaimsMappingPolicyCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public ClaimsMappingPolicyCollectionResponse get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, ClaimsMappingPolicyCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new claimsMappingPolicy object. + * Create new navigation property to claimsMappingPolicies for policies * @param body The request body * @return a {@link ClaimsMappingPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ClaimsMappingPolicy post(@jakarta.annotation.Nonnull final ClaimsMappingPolicy body) { return post(body, null); } /** - * Create a new claimsMappingPolicy object. + * Create new navigation property to claimsMappingPolicies for policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ClaimsMappingPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ClaimsMappingPolicy post(@jakarta.annotation.Nonnull final ClaimsMappingPolicy body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public ClaimsMappingPolicy post(@jakarta.annotation.Nonnull final ClaimsMappingP return this.requestAdapter.send(requestInfo, errorMapping, ClaimsMappingPolicy::createFromDiscriminatorValue); } /** - * Get a list of claimsMappingPolicy objects. + * The claim-mapping policies for WS-Fed, SAML, OAuth 2.0, and OpenID Connect protocols, for tokens issued to a specific application. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of claimsMappingPolicy objects. + * The claim-mapping policies for WS-Fed, SAML, OAuth 2.0, and OpenID Connect protocols, for tokens issued to a specific application. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new claimsMappingPolicy object. + * Create new navigation property to claimsMappingPolicies for policies * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new claimsMappingPolicy object. + * Create new navigation property to claimsMappingPolicies for policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ClaimsMappingPoliciesRequestBuilder withUrl(@jakarta.annotation.Nonnull f return new ClaimsMappingPoliciesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of claimsMappingPolicy objects. + * The claim-mapping policies for WS-Fed, SAML, OAuth 2.0, and OpenID Connect protocols, for tokens issued to a specific application. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/policies/claimsmappingpolicies/item/ClaimsMappingPolicyItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/claimsmappingpolicies/item/ClaimsMappingPolicyItemRequestBuilder.java index 15b95e6790f..cdf8bc582cb 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/claimsmappingpolicies/item/ClaimsMappingPolicyItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/claimsmappingpolicies/item/ClaimsMappingPolicyItemRequestBuilder.java @@ -46,18 +46,16 @@ public ClaimsMappingPolicyItemRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/policies/claimsMappingPolicies/{claimsMappingPolicy%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a claimsMappingPolicy object. + * Delete navigation property claimsMappingPolicies for policies * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a claimsMappingPolicy object. + * Delete navigation property claimsMappingPolicies for policies * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a claimsMappingPolicy object. + * The claim-mapping policies for WS-Fed, SAML, OAuth 2.0, and OpenID Connect protocols, for tokens issued to a specific application. * @return a {@link ClaimsMappingPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ClaimsMappingPolicy get() { return get(null); } /** - * Retrieve the properties and relationships of a claimsMappingPolicy object. + * The claim-mapping policies for WS-Fed, SAML, OAuth 2.0, and OpenID Connect protocols, for tokens issued to a specific application. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ClaimsMappingPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ClaimsMappingPolicy get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public ClaimsMappingPolicy get(@jakarta.annotation.Nullable final java.util.func return this.requestAdapter.send(requestInfo, errorMapping, ClaimsMappingPolicy::createFromDiscriminatorValue); } /** - * Update the properties of a claimsMappingPolicy object. + * Update the navigation property claimsMappingPolicies in policies * @param body The request body * @return a {@link ClaimsMappingPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ClaimsMappingPolicy patch(@jakarta.annotation.Nonnull final ClaimsMappingPolicy body) { return patch(body, null); } /** - * Update the properties of a claimsMappingPolicy object. + * Update the navigation property claimsMappingPolicies in policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ClaimsMappingPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ClaimsMappingPolicy patch(@jakarta.annotation.Nonnull final ClaimsMappingPolicy body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public ClaimsMappingPolicy patch(@jakarta.annotation.Nonnull final ClaimsMapping return this.requestAdapter.send(requestInfo, errorMapping, ClaimsMappingPolicy::createFromDiscriminatorValue); } /** - * Delete a claimsMappingPolicy object. + * Delete navigation property claimsMappingPolicies for policies * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a claimsMappingPolicy object. + * Delete navigation property claimsMappingPolicies for policies * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a claimsMappingPolicy object. + * The claim-mapping policies for WS-Fed, SAML, OAuth 2.0, and OpenID Connect protocols, for tokens issued to a specific application. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a claimsMappingPolicy object. + * The claim-mapping policies for WS-Fed, SAML, OAuth 2.0, and OpenID Connect protocols, for tokens issued to a specific application. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a claimsMappingPolicy object. + * Update the navigation property claimsMappingPolicies in policies * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a claimsMappingPolicy object. + * Update the navigation property claimsMappingPolicies in policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public ClaimsMappingPolicyItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a claimsMappingPolicy object. + * The claim-mapping policies for WS-Fed, SAML, OAuth 2.0, and OpenID Connect protocols, for tokens issued to a specific application. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/policies/crosstenantaccesspolicy/CrossTenantAccessPolicyRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/crosstenantaccesspolicy/CrossTenantAccessPolicyRequestBuilder.java index aa6d8e8373d..228248d368e 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/crosstenantaccesspolicy/CrossTenantAccessPolicyRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/crosstenantaccesspolicy/CrossTenantAccessPolicyRequestBuilder.java @@ -73,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a crossTenantAccessPolicy object. + * The custom rules that define an access scenario when interacting with external Microsoft Entra tenants. * @return a {@link CrossTenantAccessPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CrossTenantAccessPolicy get() { return get(null); } /** - * Read the properties and relationships of a crossTenantAccessPolicy object. + * The custom rules that define an access scenario when interacting with external Microsoft Entra tenants. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CrossTenantAccessPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CrossTenantAccessPolicy get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -97,23 +95,21 @@ public CrossTenantAccessPolicy get(@jakarta.annotation.Nullable final java.util. return this.requestAdapter.send(requestInfo, errorMapping, CrossTenantAccessPolicy::createFromDiscriminatorValue); } /** - * Update the properties of a cross-tenant access policy. + * Update the navigation property crossTenantAccessPolicy in policies * @param body The request body * @return a {@link CrossTenantAccessPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CrossTenantAccessPolicy patch(@jakarta.annotation.Nonnull final CrossTenantAccessPolicy body) { return patch(body, null); } /** - * Update the properties of a cross-tenant access policy. + * Update the navigation property crossTenantAccessPolicy in policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CrossTenantAccessPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CrossTenantAccessPolicy patch(@jakarta.annotation.Nonnull final CrossTenantAccessPolicy body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -144,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a crossTenantAccessPolicy object. + * The custom rules that define an access scenario when interacting with external Microsoft Entra tenants. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -152,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a crossTenantAccessPolicy object. + * The custom rules that define an access scenario when interacting with external Microsoft Entra tenants. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -164,7 +160,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a cross-tenant access policy. + * Update the navigation property crossTenantAccessPolicy in policies * @param body The request body * @return a {@link RequestInformation} */ @@ -173,7 +169,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a cross-tenant access policy. + * Update the navigation property crossTenantAccessPolicy in policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -204,7 +200,7 @@ public CrossTenantAccessPolicyRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a crossTenantAccessPolicy object. + * The custom rules that define an access scenario when interacting with external Microsoft Entra tenants. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/policies/crosstenantaccesspolicy/defaultescaped/DefaultRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/crosstenantaccesspolicy/defaultescaped/DefaultRequestBuilder.java index f63d22e3d8d..adc48555cc5 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/crosstenantaccesspolicy/defaultescaped/DefaultRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/crosstenantaccesspolicy/defaultescaped/DefaultRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the default configuration of a cross-tenant access policy. This default configuration may be the service default assigned by Microsoft Entra ID (isServiceDefault is true) or may be customized in your tenant (isServiceDefault is false). + * Defines the default configuration for how your organization interacts with external Microsoft Entra organizations. * @return a {@link CrossTenantAccessPolicyConfigurationDefault} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CrossTenantAccessPolicyConfigurationDefault get() { return get(null); } /** - * Read the default configuration of a cross-tenant access policy. This default configuration may be the service default assigned by Microsoft Entra ID (isServiceDefault is true) or may be customized in your tenant (isServiceDefault is false). + * Defines the default configuration for how your organization interacts with external Microsoft Entra organizations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CrossTenantAccessPolicyConfigurationDefault} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CrossTenantAccessPolicyConfigurationDefault get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -88,23 +86,21 @@ public CrossTenantAccessPolicyConfigurationDefault get(@jakarta.annotation.Nulla return this.requestAdapter.send(requestInfo, errorMapping, CrossTenantAccessPolicyConfigurationDefault::createFromDiscriminatorValue); } /** - * Update the default configuration of a cross-tenant access policy. + * Update the navigation property default in policies * @param body The request body * @return a {@link CrossTenantAccessPolicyConfigurationDefault} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CrossTenantAccessPolicyConfigurationDefault patch(@jakarta.annotation.Nonnull final CrossTenantAccessPolicyConfigurationDefault body) { return patch(body, null); } /** - * Update the default configuration of a cross-tenant access policy. + * Update the navigation property default in policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CrossTenantAccessPolicyConfigurationDefault} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CrossTenantAccessPolicyConfigurationDefault patch(@jakarta.annotation.Nonnull final CrossTenantAccessPolicyConfigurationDefault body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the default configuration of a cross-tenant access policy. This default configuration may be the service default assigned by Microsoft Entra ID (isServiceDefault is true) or may be customized in your tenant (isServiceDefault is false). + * Defines the default configuration for how your organization interacts with external Microsoft Entra organizations. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the default configuration of a cross-tenant access policy. This default configuration may be the service default assigned by Microsoft Entra ID (isServiceDefault is true) or may be customized in your tenant (isServiceDefault is false). + * Defines the default configuration for how your organization interacts with external Microsoft Entra organizations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the default configuration of a cross-tenant access policy. + * Update the navigation property default in policies * @param body The request body * @return a {@link RequestInformation} */ @@ -164,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the default configuration of a cross-tenant access policy. + * Update the navigation property default in policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -195,7 +191,7 @@ public DefaultRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the default configuration of a cross-tenant access policy. This default configuration may be the service default assigned by Microsoft Entra ID (isServiceDefault is true) or may be customized in your tenant (isServiceDefault is false). + * Defines the default configuration for how your organization interacts with external Microsoft Entra organizations. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/policies/crosstenantaccesspolicy/partners/PartnersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/crosstenantaccesspolicy/partners/PartnersRequestBuilder.java index 10ea68758d4..b62f321ef3c 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/crosstenantaccesspolicy/partners/PartnersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/crosstenantaccesspolicy/partners/PartnersRequestBuilder.java @@ -60,21 +60,19 @@ public PartnersRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/policies/crossTenantAccessPolicy/partners{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of all partner configurations within a cross-tenant access policy. You can also use the $expand parameter to list the user synchronization policy for all partner configurations. + * Defines partner-specific configurations for external Microsoft Entra organizations. * @return a {@link CrossTenantAccessPolicyConfigurationPartnerCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CrossTenantAccessPolicyConfigurationPartnerCollectionResponse get() { return get(null); } /** - * Get a list of all partner configurations within a cross-tenant access policy. You can also use the $expand parameter to list the user synchronization policy for all partner configurations. + * Defines partner-specific configurations for external Microsoft Entra organizations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CrossTenantAccessPolicyConfigurationPartnerCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CrossTenantAccessPolicyConfigurationPartnerCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public CrossTenantAccessPolicyConfigurationPartnerCollectionResponse get(@jakart return this.requestAdapter.send(requestInfo, errorMapping, CrossTenantAccessPolicyConfigurationPartnerCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new partner configuration in a cross-tenant access policy. + * Create new navigation property to partners for policies * @param body The request body * @return a {@link CrossTenantAccessPolicyConfigurationPartner} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CrossTenantAccessPolicyConfigurationPartner post(@jakarta.annotation.Nonnull final CrossTenantAccessPolicyConfigurationPartner body) { return post(body, null); } /** - * Create a new partner configuration in a cross-tenant access policy. + * Create new navigation property to partners for policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CrossTenantAccessPolicyConfigurationPartner} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CrossTenantAccessPolicyConfigurationPartner post(@jakarta.annotation.Nonnull final CrossTenantAccessPolicyConfigurationPartner body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public CrossTenantAccessPolicyConfigurationPartner post(@jakarta.annotation.Nonn return this.requestAdapter.send(requestInfo, errorMapping, CrossTenantAccessPolicyConfigurationPartner::createFromDiscriminatorValue); } /** - * Get a list of all partner configurations within a cross-tenant access policy. You can also use the $expand parameter to list the user synchronization policy for all partner configurations. + * Defines partner-specific configurations for external Microsoft Entra organizations. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of all partner configurations within a cross-tenant access policy. You can also use the $expand parameter to list the user synchronization policy for all partner configurations. + * Defines partner-specific configurations for external Microsoft Entra organizations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new partner configuration in a cross-tenant access policy. + * Create new navigation property to partners for policies * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new partner configuration in a cross-tenant access policy. + * Create new navigation property to partners for policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public PartnersRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new PartnersRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of all partner configurations within a cross-tenant access policy. You can also use the $expand parameter to list the user synchronization policy for all partner configurations. + * Defines partner-specific configurations for external Microsoft Entra organizations. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/policies/crosstenantaccesspolicy/partners/item/CrossTenantAccessPolicyConfigurationPartnerTenantItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/crosstenantaccesspolicy/partners/item/CrossTenantAccessPolicyConfigurationPartnerTenantItemRequestBuilder.java index bf1dfe234c6..e44db4f2105 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/crosstenantaccesspolicy/partners/item/CrossTenantAccessPolicyConfigurationPartnerTenantItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/crosstenantaccesspolicy/partners/item/CrossTenantAccessPolicyConfigurationPartnerTenantItemRequestBuilder.java @@ -46,18 +46,16 @@ public CrossTenantAccessPolicyConfigurationPartnerTenantItemRequestBuilder(@jaka super(requestAdapter, "{+baseurl}/policies/crossTenantAccessPolicy/partners/{crossTenantAccessPolicyConfigurationPartner%2DtenantId}{?%24expand,%24select}", rawUrl); } /** - * Delete a partner-specific configuration in a cross-tenant access policy. If a configuration includes a user synchronization policy, you must first delete the user synchronization policy before you can delete the partner-specific configuration. + * Delete navigation property partners for policies * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a partner-specific configuration in a cross-tenant access policy. If a configuration includes a user synchronization policy, you must first delete the user synchronization policy before you can delete the partner-specific configuration. + * Delete navigation property partners for policies * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a partner-specific configuration. + * Defines partner-specific configurations for external Microsoft Entra organizations. * @return a {@link CrossTenantAccessPolicyConfigurationPartner} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CrossTenantAccessPolicyConfigurationPartner get() { return get(null); } /** - * Read the properties and relationships of a partner-specific configuration. + * Defines partner-specific configurations for external Microsoft Entra organizations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CrossTenantAccessPolicyConfigurationPartner} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CrossTenantAccessPolicyConfigurationPartner get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public CrossTenantAccessPolicyConfigurationPartner get(@jakarta.annotation.Nulla return this.requestAdapter.send(requestInfo, errorMapping, CrossTenantAccessPolicyConfigurationPartner::createFromDiscriminatorValue); } /** - * Update the properties of a partner-specific configuration. + * Update the navigation property partners in policies * @param body The request body * @return a {@link CrossTenantAccessPolicyConfigurationPartner} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CrossTenantAccessPolicyConfigurationPartner patch(@jakarta.annotation.Nonnull final CrossTenantAccessPolicyConfigurationPartner body) { return patch(body, null); } /** - * Update the properties of a partner-specific configuration. + * Update the navigation property partners in policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CrossTenantAccessPolicyConfigurationPartner} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CrossTenantAccessPolicyConfigurationPartner patch(@jakarta.annotation.Nonnull final CrossTenantAccessPolicyConfigurationPartner body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public CrossTenantAccessPolicyConfigurationPartner patch(@jakarta.annotation.Non return this.requestAdapter.send(requestInfo, errorMapping, CrossTenantAccessPolicyConfigurationPartner::createFromDiscriminatorValue); } /** - * Delete a partner-specific configuration in a cross-tenant access policy. If a configuration includes a user synchronization policy, you must first delete the user synchronization policy before you can delete the partner-specific configuration. + * Delete navigation property partners for policies * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a partner-specific configuration in a cross-tenant access policy. If a configuration includes a user synchronization policy, you must first delete the user synchronization policy before you can delete the partner-specific configuration. + * Delete navigation property partners for policies * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a partner-specific configuration. + * Defines partner-specific configurations for external Microsoft Entra organizations. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a partner-specific configuration. + * Defines partner-specific configurations for external Microsoft Entra organizations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a partner-specific configuration. + * Update the navigation property partners in policies * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a partner-specific configuration. + * Update the navigation property partners in policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public CrossTenantAccessPolicyConfigurationPartnerTenantItemRequestBuilder withU public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a partner-specific configuration. + * Defines partner-specific configurations for external Microsoft Entra organizations. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/policies/crosstenantaccesspolicy/partners/item/identitysynchronization/IdentitySynchronizationRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/crosstenantaccesspolicy/partners/item/identitysynchronization/IdentitySynchronizationRequestBuilder.java index 32250ce9c02..c49b3cb5695 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/crosstenantaccesspolicy/partners/item/identitysynchronization/IdentitySynchronizationRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/crosstenantaccesspolicy/partners/item/identitysynchronization/IdentitySynchronizationRequestBuilder.java @@ -37,18 +37,16 @@ public IdentitySynchronizationRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/policies/crossTenantAccessPolicy/partners/{crossTenantAccessPolicyConfigurationPartner%2DtenantId}/identitySynchronization{?%24expand,%24select}", rawUrl); } /** - * Delete the user synchronization policy for a partner-specific configuration. + * Delete navigation property identitySynchronization for policies * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete the user synchronization policy for a partner-specific configuration. + * Delete navigation property identitySynchronization for policies * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the user synchronization policy of a partner-specific configuration. + * Defines the cross-tenant policy for the synchronization of users from a partner tenant. Use this user synchronization policy to streamline collaboration between users in a multitenant organization by automating the creation, update, and deletion of users from one tenant to another. * @return a {@link CrossTenantIdentitySyncPolicyPartner} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CrossTenantIdentitySyncPolicyPartner get() { return get(null); } /** - * Get the user synchronization policy of a partner-specific configuration. + * Defines the cross-tenant policy for the synchronization of users from a partner tenant. Use this user synchronization policy to streamline collaboration between users in a multitenant organization by automating the creation, update, and deletion of users from one tenant to another. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CrossTenantIdentitySyncPolicyPartner} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CrossTenantIdentitySyncPolicyPartner get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -106,7 +102,7 @@ public CrossTenantIdentitySyncPolicyPartner put(@jakarta.annotation.Nonnull fina return this.requestAdapter.send(requestInfo, errorMapping, CrossTenantIdentitySyncPolicyPartner::createFromDiscriminatorValue); } /** - * Delete the user synchronization policy for a partner-specific configuration. + * Delete navigation property identitySynchronization for policies * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -114,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete the user synchronization policy for a partner-specific configuration. + * Delete navigation property identitySynchronization for policies * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the user synchronization policy of a partner-specific configuration. + * Defines the cross-tenant policy for the synchronization of users from a partner tenant. Use this user synchronization policy to streamline collaboration between users in a multitenant organization by automating the creation, update, and deletion of users from one tenant to another. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the user synchronization policy of a partner-specific configuration. + * Defines the cross-tenant policy for the synchronization of users from a partner tenant. Use this user synchronization policy to streamline collaboration between users in a multitenant organization by automating the creation, update, and deletion of users from one tenant to another. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public IdentitySynchronizationRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the user synchronization policy of a partner-specific configuration. + * Defines the cross-tenant policy for the synchronization of users from a partner tenant. Use this user synchronization policy to streamline collaboration between users in a multitenant organization by automating the creation, update, and deletion of users from one tenant to another. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/policies/defaultappmanagementpolicy/DefaultAppManagementPolicyRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/defaultappmanagementpolicy/DefaultAppManagementPolicyRequestBuilder.java index c91875bce77..2ecfbf17f56 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/defaultappmanagementpolicy/DefaultAppManagementPolicyRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/defaultappmanagementpolicy/DefaultAppManagementPolicyRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties of a tenantAppManagementPolicy object. + * The tenant-wide policy that enforces app management restrictions for all applications and service principals. * @return a {@link TenantAppManagementPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TenantAppManagementPolicy get() { return get(null); } /** - * Read the properties of a tenantAppManagementPolicy object. + * The tenant-wide policy that enforces app management restrictions for all applications and service principals. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TenantAppManagementPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TenantAppManagementPolicy get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public TenantAppManagementPolicy get(@jakarta.annotation.Nullable final java.uti return this.requestAdapter.send(requestInfo, errorMapping, TenantAppManagementPolicy::createFromDiscriminatorValue); } /** - * Update the properties of a tenantAppManagementPolicy object. + * Update the navigation property defaultAppManagementPolicy in policies * @param body The request body * @return a {@link TenantAppManagementPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TenantAppManagementPolicy patch(@jakarta.annotation.Nonnull final TenantAppManagementPolicy body) { return patch(body, null); } /** - * Update the properties of a tenantAppManagementPolicy object. + * Update the navigation property defaultAppManagementPolicy in policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TenantAppManagementPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TenantAppManagementPolicy patch(@jakarta.annotation.Nonnull final TenantAppManagementPolicy body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties of a tenantAppManagementPolicy object. + * The tenant-wide policy that enforces app management restrictions for all applications and service principals. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties of a tenantAppManagementPolicy object. + * The tenant-wide policy that enforces app management restrictions for all applications and service principals. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a tenantAppManagementPolicy object. + * Update the navigation property defaultAppManagementPolicy in policies * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a tenantAppManagementPolicy object. + * Update the navigation property defaultAppManagementPolicy in policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public DefaultAppManagementPolicyRequestBuilder withUrl(@jakarta.annotation.Nonn public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties of a tenantAppManagementPolicy object. + * The tenant-wide policy that enforces app management restrictions for all applications and service principals. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/policies/featurerolloutpolicies/FeatureRolloutPoliciesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/featurerolloutpolicies/FeatureRolloutPoliciesRequestBuilder.java index 10adab82f10..3b8c7cacb87 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/featurerolloutpolicies/FeatureRolloutPoliciesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/featurerolloutpolicies/FeatureRolloutPoliciesRequestBuilder.java @@ -60,21 +60,19 @@ public FeatureRolloutPoliciesRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/policies/featureRolloutPolicies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of featureRolloutPolicy objects. + * The feature rollout policy associated with a directory object. * @return a {@link FeatureRolloutPolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public FeatureRolloutPolicyCollectionResponse get() { return get(null); } /** - * Retrieve a list of featureRolloutPolicy objects. + * The feature rollout policy associated with a directory object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FeatureRolloutPolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public FeatureRolloutPolicyCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public FeatureRolloutPolicyCollectionResponse get(@jakarta.annotation.Nullable f return this.requestAdapter.send(requestInfo, errorMapping, FeatureRolloutPolicyCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new featureRolloutPolicy object. + * Create new navigation property to featureRolloutPolicies for policies * @param body The request body * @return a {@link FeatureRolloutPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public FeatureRolloutPolicy post(@jakarta.annotation.Nonnull final FeatureRolloutPolicy body) { return post(body, null); } /** - * Create a new featureRolloutPolicy object. + * Create new navigation property to featureRolloutPolicies for policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FeatureRolloutPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public FeatureRolloutPolicy post(@jakarta.annotation.Nonnull final FeatureRolloutPolicy body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public FeatureRolloutPolicy post(@jakarta.annotation.Nonnull final FeatureRollou return this.requestAdapter.send(requestInfo, errorMapping, FeatureRolloutPolicy::createFromDiscriminatorValue); } /** - * Retrieve a list of featureRolloutPolicy objects. + * The feature rollout policy associated with a directory object. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of featureRolloutPolicy objects. + * The feature rollout policy associated with a directory object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new featureRolloutPolicy object. + * Create new navigation property to featureRolloutPolicies for policies * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new featureRolloutPolicy object. + * Create new navigation property to featureRolloutPolicies for policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public FeatureRolloutPoliciesRequestBuilder withUrl(@jakarta.annotation.Nonnull return new FeatureRolloutPoliciesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of featureRolloutPolicy objects. + * The feature rollout policy associated with a directory object. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/policies/featurerolloutpolicies/item/FeatureRolloutPolicyItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/featurerolloutpolicies/item/FeatureRolloutPolicyItemRequestBuilder.java index a944ffbb4a0..f3f8ee4b800 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/featurerolloutpolicies/item/FeatureRolloutPolicyItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/featurerolloutpolicies/item/FeatureRolloutPolicyItemRequestBuilder.java @@ -46,18 +46,16 @@ public FeatureRolloutPolicyItemRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/policies/featureRolloutPolicies/{featureRolloutPolicy%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a featureRolloutPolicy object. + * Delete navigation property featureRolloutPolicies for policies * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a featureRolloutPolicy object. + * Delete navigation property featureRolloutPolicies for policies * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a featureRolloutPolicy object. + * The feature rollout policy associated with a directory object. * @return a {@link FeatureRolloutPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public FeatureRolloutPolicy get() { return get(null); } /** - * Retrieve the properties and relationships of a featureRolloutPolicy object. + * The feature rollout policy associated with a directory object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FeatureRolloutPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public FeatureRolloutPolicy get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public FeatureRolloutPolicy get(@jakarta.annotation.Nullable final java.util.fun return this.requestAdapter.send(requestInfo, errorMapping, FeatureRolloutPolicy::createFromDiscriminatorValue); } /** - * Update the properties of featureRolloutPolicy object. + * Update the navigation property featureRolloutPolicies in policies * @param body The request body * @return a {@link FeatureRolloutPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public FeatureRolloutPolicy patch(@jakarta.annotation.Nonnull final FeatureRolloutPolicy body) { return patch(body, null); } /** - * Update the properties of featureRolloutPolicy object. + * Update the navigation property featureRolloutPolicies in policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FeatureRolloutPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public FeatureRolloutPolicy patch(@jakarta.annotation.Nonnull final FeatureRolloutPolicy body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public FeatureRolloutPolicy patch(@jakarta.annotation.Nonnull final FeatureRollo return this.requestAdapter.send(requestInfo, errorMapping, FeatureRolloutPolicy::createFromDiscriminatorValue); } /** - * Delete a featureRolloutPolicy object. + * Delete navigation property featureRolloutPolicies for policies * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a featureRolloutPolicy object. + * Delete navigation property featureRolloutPolicies for policies * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a featureRolloutPolicy object. + * The feature rollout policy associated with a directory object. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a featureRolloutPolicy object. + * The feature rollout policy associated with a directory object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of featureRolloutPolicy object. + * Update the navigation property featureRolloutPolicies in policies * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of featureRolloutPolicy object. + * Update the navigation property featureRolloutPolicies in policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public FeatureRolloutPolicyItemRequestBuilder withUrl(@jakarta.annotation.Nonnul public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a featureRolloutPolicy object. + * The feature rollout policy associated with a directory object. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/policies/featurerolloutpolicies/item/appliesto/AppliesToRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/featurerolloutpolicies/item/appliesto/AppliesToRequestBuilder.java index b1417ba8355..d0500196972 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/featurerolloutpolicies/item/appliesto/AppliesToRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/featurerolloutpolicies/item/appliesto/AppliesToRequestBuilder.java @@ -91,23 +91,21 @@ public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, DirectoryObjectCollectionResponse::createFromDiscriminatorValue); } /** - * Add an appliesTo on a featureRolloutPolicy object to specify the directoryObject to which the featureRolloutPolicy should be applied. + * Create new navigation property to appliesTo for policies * @param body The request body * @return a {@link DirectoryObject} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObject post(@jakarta.annotation.Nonnull final DirectoryObject body) { return post(body, null); } /** - * Add an appliesTo on a featureRolloutPolicy object to specify the directoryObject to which the featureRolloutPolicy should be applied. + * Create new navigation property to appliesTo for policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DirectoryObject} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObject post(@jakarta.annotation.Nonnull final DirectoryObject body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -138,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add an appliesTo on a featureRolloutPolicy object to specify the directoryObject to which the featureRolloutPolicy should be applied. + * Create new navigation property to appliesTo for policies * @param body The request body * @return a {@link RequestInformation} */ @@ -147,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add an appliesTo on a featureRolloutPolicy object to specify the directoryObject to which the featureRolloutPolicy should be applied. + * Create new navigation property to appliesTo for policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/policies/featurerolloutpolicies/item/appliesto/item/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/featurerolloutpolicies/item/appliesto/item/ref/RefRequestBuilder.java index a3db8f0764e..03000c860f3 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/featurerolloutpolicies/item/appliesto/item/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/featurerolloutpolicies/item/appliesto/item/ref/RefRequestBuilder.java @@ -35,18 +35,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/policies/featureRolloutPolicies/{featureRolloutPolicy%2Did}/appliesTo/{directoryObject%2Did}/$ref", rawUrl); } /** - * Remove an appliesTo on a featureRolloutPolicy object to remove the directoryObject from feature rollout. + * Delete ref of navigation property appliesTo for policies * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove an appliesTo on a featureRolloutPolicy object to remove the directoryObject from feature rollout. + * Delete ref of navigation property appliesTo for policies * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -55,7 +53,7 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove an appliesTo on a featureRolloutPolicy object to remove the directoryObject from feature rollout. + * Delete ref of navigation property appliesTo for policies * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -63,7 +61,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove an appliesTo on a featureRolloutPolicy object to remove the directoryObject from feature rollout. + * Delete ref of navigation property appliesTo for policies * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/policies/featurerolloutpolicies/item/appliesto/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/featurerolloutpolicies/item/appliesto/ref/RefRequestBuilder.java index 36ca98860ad..03ffcd6ccfd 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/featurerolloutpolicies/item/appliesto/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/featurerolloutpolicies/item/appliesto/ref/RefRequestBuilder.java @@ -38,18 +38,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/policies/featureRolloutPolicies/{featureRolloutPolicy%2Did}/appliesTo/$ref?@id={%40id}{&%24count,%24filter,%24orderby,%24search,%24skip,%24top}", rawUrl); } /** - * Remove an appliesTo on a featureRolloutPolicy object to remove the directoryObject from feature rollout. + * Delete ref of navigation property appliesTo for policies * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove an appliesTo on a featureRolloutPolicy object to remove the directoryObject from feature rollout. + * Delete ref of navigation property appliesTo for policies * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -80,20 +78,18 @@ public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util return this.requestAdapter.send(requestInfo, errorMapping, StringCollectionResponse::createFromDiscriminatorValue); } /** - * Add an appliesTo on a featureRolloutPolicy object to specify the directoryObject to which the featureRolloutPolicy should be applied. + * Create new navigation property ref to appliesTo for policies * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body) { post(body, null); } /** - * Add an appliesTo on a featureRolloutPolicy object to specify the directoryObject to which the featureRolloutPolicy should be applied. + * Create new navigation property ref to appliesTo for policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { Objects.requireNonNull(body); @@ -103,7 +99,7 @@ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakart this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove an appliesTo on a featureRolloutPolicy object to remove the directoryObject from feature rollout. + * Delete ref of navigation property appliesTo for policies * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -111,7 +107,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove an appliesTo on a featureRolloutPolicy object to remove the directoryObject from feature rollout. + * Delete ref of navigation property appliesTo for policies * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -143,7 +139,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add an appliesTo on a featureRolloutPolicy object to specify the directoryObject to which the featureRolloutPolicy should be applied. + * Create new navigation property ref to appliesTo for policies * @param body The request body * @return a {@link RequestInformation} */ @@ -152,7 +148,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add an appliesTo on a featureRolloutPolicy object to specify the directoryObject to which the featureRolloutPolicy should be applied. + * Create new navigation property ref to appliesTo for policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -177,7 +173,7 @@ public RefRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl return new RefRequestBuilder(rawUrl, requestAdapter); } /** - * Remove an appliesTo on a featureRolloutPolicy object to remove the directoryObject from feature rollout. + * Delete ref of navigation property appliesTo for policies */ @jakarta.annotation.Generated("com.microsoft.kiota") public class DeleteQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/policies/homerealmdiscoverypolicies/HomeRealmDiscoveryPoliciesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/homerealmdiscoverypolicies/HomeRealmDiscoveryPoliciesRequestBuilder.java index ddb71c00a49..a7d673e2a24 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/homerealmdiscoverypolicies/HomeRealmDiscoveryPoliciesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/homerealmdiscoverypolicies/HomeRealmDiscoveryPoliciesRequestBuilder.java @@ -60,21 +60,19 @@ public HomeRealmDiscoveryPoliciesRequestBuilder(@jakarta.annotation.Nonnull fina super(requestAdapter, "{+baseurl}/policies/homeRealmDiscoveryPolicies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of homeRealmDiscoveryPolicy objects. + * The policy to control Microsoft Entra authentication behavior for federated users. * @return a {@link HomeRealmDiscoveryPolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public HomeRealmDiscoveryPolicyCollectionResponse get() { return get(null); } /** - * Get a list of homeRealmDiscoveryPolicy objects. + * The policy to control Microsoft Entra authentication behavior for federated users. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link HomeRealmDiscoveryPolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public HomeRealmDiscoveryPolicyCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public HomeRealmDiscoveryPolicyCollectionResponse get(@jakarta.annotation.Nullab return this.requestAdapter.send(requestInfo, errorMapping, HomeRealmDiscoveryPolicyCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new homeRealmDiscoveryPolicy object. + * Create new navigation property to homeRealmDiscoveryPolicies for policies * @param body The request body * @return a {@link HomeRealmDiscoveryPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public HomeRealmDiscoveryPolicy post(@jakarta.annotation.Nonnull final HomeRealmDiscoveryPolicy body) { return post(body, null); } /** - * Create a new homeRealmDiscoveryPolicy object. + * Create new navigation property to homeRealmDiscoveryPolicies for policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link HomeRealmDiscoveryPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public HomeRealmDiscoveryPolicy post(@jakarta.annotation.Nonnull final HomeRealmDiscoveryPolicy body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public HomeRealmDiscoveryPolicy post(@jakarta.annotation.Nonnull final HomeRealm return this.requestAdapter.send(requestInfo, errorMapping, HomeRealmDiscoveryPolicy::createFromDiscriminatorValue); } /** - * Get a list of homeRealmDiscoveryPolicy objects. + * The policy to control Microsoft Entra authentication behavior for federated users. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of homeRealmDiscoveryPolicy objects. + * The policy to control Microsoft Entra authentication behavior for federated users. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new homeRealmDiscoveryPolicy object. + * Create new navigation property to homeRealmDiscoveryPolicies for policies * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new homeRealmDiscoveryPolicy object. + * Create new navigation property to homeRealmDiscoveryPolicies for policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public HomeRealmDiscoveryPoliciesRequestBuilder withUrl(@jakarta.annotation.Nonn return new HomeRealmDiscoveryPoliciesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of homeRealmDiscoveryPolicy objects. + * The policy to control Microsoft Entra authentication behavior for federated users. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/policies/homerealmdiscoverypolicies/item/HomeRealmDiscoveryPolicyItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/homerealmdiscoverypolicies/item/HomeRealmDiscoveryPolicyItemRequestBuilder.java index 466ed8f4258..73d521d76a2 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/homerealmdiscoverypolicies/item/HomeRealmDiscoveryPolicyItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/homerealmdiscoverypolicies/item/HomeRealmDiscoveryPolicyItemRequestBuilder.java @@ -46,18 +46,16 @@ public HomeRealmDiscoveryPolicyItemRequestBuilder(@jakarta.annotation.Nonnull fi super(requestAdapter, "{+baseurl}/policies/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a homeRealmDiscoveryPolicy object. + * Delete navigation property homeRealmDiscoveryPolicies for policies * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a homeRealmDiscoveryPolicy object. + * Delete navigation property homeRealmDiscoveryPolicies for policies * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a homeRealmDiscoveryPolicy object. + * The policy to control Microsoft Entra authentication behavior for federated users. * @return a {@link HomeRealmDiscoveryPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public HomeRealmDiscoveryPolicy get() { return get(null); } /** - * Retrieve the properties and relationships of a homeRealmDiscoveryPolicy object. + * The policy to control Microsoft Entra authentication behavior for federated users. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link HomeRealmDiscoveryPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public HomeRealmDiscoveryPolicy get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public HomeRealmDiscoveryPolicy get(@jakarta.annotation.Nullable final java.util return this.requestAdapter.send(requestInfo, errorMapping, HomeRealmDiscoveryPolicy::createFromDiscriminatorValue); } /** - * Update the properties of a homeRealmDiscoveryPolicy object. + * Update the navigation property homeRealmDiscoveryPolicies in policies * @param body The request body * @return a {@link HomeRealmDiscoveryPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public HomeRealmDiscoveryPolicy patch(@jakarta.annotation.Nonnull final HomeRealmDiscoveryPolicy body) { return patch(body, null); } /** - * Update the properties of a homeRealmDiscoveryPolicy object. + * Update the navigation property homeRealmDiscoveryPolicies in policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link HomeRealmDiscoveryPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public HomeRealmDiscoveryPolicy patch(@jakarta.annotation.Nonnull final HomeRealmDiscoveryPolicy body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public HomeRealmDiscoveryPolicy patch(@jakarta.annotation.Nonnull final HomeReal return this.requestAdapter.send(requestInfo, errorMapping, HomeRealmDiscoveryPolicy::createFromDiscriminatorValue); } /** - * Delete a homeRealmDiscoveryPolicy object. + * Delete navigation property homeRealmDiscoveryPolicies for policies * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a homeRealmDiscoveryPolicy object. + * Delete navigation property homeRealmDiscoveryPolicies for policies * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a homeRealmDiscoveryPolicy object. + * The policy to control Microsoft Entra authentication behavior for federated users. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a homeRealmDiscoveryPolicy object. + * The policy to control Microsoft Entra authentication behavior for federated users. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a homeRealmDiscoveryPolicy object. + * Update the navigation property homeRealmDiscoveryPolicies in policies * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a homeRealmDiscoveryPolicy object. + * Update the navigation property homeRealmDiscoveryPolicies in policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public HomeRealmDiscoveryPolicyItemRequestBuilder withUrl(@jakarta.annotation.No public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a homeRealmDiscoveryPolicy object. + * The policy to control Microsoft Entra authentication behavior for federated users. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/policies/identitysecuritydefaultsenforcementpolicy/IdentitySecurityDefaultsEnforcementPolicyRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/identitysecuritydefaultsenforcementpolicy/IdentitySecurityDefaultsEnforcementPolicyRequestBuilder.java index 64b547b01f8..01f3220a14a 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/identitysecuritydefaultsenforcementpolicy/IdentitySecurityDefaultsEnforcementPolicyRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/identitysecuritydefaultsenforcementpolicy/IdentitySecurityDefaultsEnforcementPolicyRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties of an identitySecurityDefaultsEnforcementPolicy object. + * The policy that represents the security defaults that protect against common attacks. * @return a {@link IdentitySecurityDefaultsEnforcementPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IdentitySecurityDefaultsEnforcementPolicy get() { return get(null); } /** - * Retrieve the properties of an identitySecurityDefaultsEnforcementPolicy object. + * The policy that represents the security defaults that protect against common attacks. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link IdentitySecurityDefaultsEnforcementPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IdentitySecurityDefaultsEnforcementPolicy get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public IdentitySecurityDefaultsEnforcementPolicy get(@jakarta.annotation.Nullabl return this.requestAdapter.send(requestInfo, errorMapping, IdentitySecurityDefaultsEnforcementPolicy::createFromDiscriminatorValue); } /** - * Update the properties of an identitySecurityDefaultsEnforcementPolicy object. + * Update the navigation property identitySecurityDefaultsEnforcementPolicy in policies * @param body The request body * @return a {@link IdentitySecurityDefaultsEnforcementPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IdentitySecurityDefaultsEnforcementPolicy patch(@jakarta.annotation.Nonnull final IdentitySecurityDefaultsEnforcementPolicy body) { return patch(body, null); } /** - * Update the properties of an identitySecurityDefaultsEnforcementPolicy object. + * Update the navigation property identitySecurityDefaultsEnforcementPolicy in policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link IdentitySecurityDefaultsEnforcementPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IdentitySecurityDefaultsEnforcementPolicy patch(@jakarta.annotation.Nonnull final IdentitySecurityDefaultsEnforcementPolicy body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties of an identitySecurityDefaultsEnforcementPolicy object. + * The policy that represents the security defaults that protect against common attacks. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties of an identitySecurityDefaultsEnforcementPolicy object. + * The policy that represents the security defaults that protect against common attacks. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an identitySecurityDefaultsEnforcementPolicy object. + * Update the navigation property identitySecurityDefaultsEnforcementPolicy in policies * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an identitySecurityDefaultsEnforcementPolicy object. + * Update the navigation property identitySecurityDefaultsEnforcementPolicy in policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public IdentitySecurityDefaultsEnforcementPolicyRequestBuilder withUrl(@jakarta. public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties of an identitySecurityDefaultsEnforcementPolicy object. + * The policy that represents the security defaults that protect against common attacks. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/policies/permissiongrantpolicies/PermissionGrantPoliciesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/permissiongrantpolicies/PermissionGrantPoliciesRequestBuilder.java index 34f153bfd97..25358d6d6e9 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/permissiongrantpolicies/PermissionGrantPoliciesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/permissiongrantpolicies/PermissionGrantPoliciesRequestBuilder.java @@ -60,21 +60,19 @@ public PermissionGrantPoliciesRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/policies/permissionGrantPolicies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of permissionGrantPolicy objects. + * The policy that specifies the conditions under which consent can be granted. * @return a {@link PermissionGrantPolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PermissionGrantPolicyCollectionResponse get() { return get(null); } /** - * Retrieve the list of permissionGrantPolicy objects. + * The policy that specifies the conditions under which consent can be granted. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PermissionGrantPolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PermissionGrantPolicyCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public PermissionGrantPolicyCollectionResponse get(@jakarta.annotation.Nullable return this.requestAdapter.send(requestInfo, errorMapping, PermissionGrantPolicyCollectionResponse::createFromDiscriminatorValue); } /** - * Creates a permissionGrantPolicy. A permission grant policy is used to describe the conditions under which permissions can be granted (for example, during application consent). After creating the permission grant policy, you can add include condition sets to add matching rules, and add exclude condition sets to add exclusion rules. + * Create new navigation property to permissionGrantPolicies for policies * @param body The request body * @return a {@link PermissionGrantPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PermissionGrantPolicy post(@jakarta.annotation.Nonnull final PermissionGrantPolicy body) { return post(body, null); } /** - * Creates a permissionGrantPolicy. A permission grant policy is used to describe the conditions under which permissions can be granted (for example, during application consent). After creating the permission grant policy, you can add include condition sets to add matching rules, and add exclude condition sets to add exclusion rules. + * Create new navigation property to permissionGrantPolicies for policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PermissionGrantPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PermissionGrantPolicy post(@jakarta.annotation.Nonnull final PermissionGrantPolicy body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public PermissionGrantPolicy post(@jakarta.annotation.Nonnull final PermissionGr return this.requestAdapter.send(requestInfo, errorMapping, PermissionGrantPolicy::createFromDiscriminatorValue); } /** - * Retrieve the list of permissionGrantPolicy objects. + * The policy that specifies the conditions under which consent can be granted. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of permissionGrantPolicy objects. + * The policy that specifies the conditions under which consent can be granted. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Creates a permissionGrantPolicy. A permission grant policy is used to describe the conditions under which permissions can be granted (for example, during application consent). After creating the permission grant policy, you can add include condition sets to add matching rules, and add exclude condition sets to add exclusion rules. + * Create new navigation property to permissionGrantPolicies for policies * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Creates a permissionGrantPolicy. A permission grant policy is used to describe the conditions under which permissions can be granted (for example, during application consent). After creating the permission grant policy, you can add include condition sets to add matching rules, and add exclude condition sets to add exclusion rules. + * Create new navigation property to permissionGrantPolicies for policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public PermissionGrantPoliciesRequestBuilder withUrl(@jakarta.annotation.Nonnull return new PermissionGrantPoliciesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of permissionGrantPolicy objects. + * The policy that specifies the conditions under which consent can be granted. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/policies/permissiongrantpolicies/item/PermissionGrantPolicyItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/permissiongrantpolicies/item/PermissionGrantPolicyItemRequestBuilder.java index c7958d87e69..e7e07b96f50 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/permissiongrantpolicies/item/PermissionGrantPolicyItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/permissiongrantpolicies/item/PermissionGrantPolicyItemRequestBuilder.java @@ -55,18 +55,16 @@ public PermissionGrantPolicyItemRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/policies/permissionGrantPolicies/{permissionGrantPolicy%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a permissionGrantPolicy object. + * Delete navigation property permissionGrantPolicies for policies * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a permissionGrantPolicy object. + * Delete navigation property permissionGrantPolicies for policies * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -75,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a single permissionGrantPolicy object. + * The policy that specifies the conditions under which consent can be granted. * @return a {@link PermissionGrantPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PermissionGrantPolicy get() { return get(null); } /** - * Retrieve a single permissionGrantPolicy object. + * The policy that specifies the conditions under which consent can be granted. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PermissionGrantPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PermissionGrantPolicy get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -99,23 +95,21 @@ public PermissionGrantPolicy get(@jakarta.annotation.Nullable final java.util.fu return this.requestAdapter.send(requestInfo, errorMapping, PermissionGrantPolicy::createFromDiscriminatorValue); } /** - * Update properties of a permissionGrantPolicy. + * Update the navigation property permissionGrantPolicies in policies * @param body The request body * @return a {@link PermissionGrantPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PermissionGrantPolicy patch(@jakarta.annotation.Nonnull final PermissionGrantPolicy body) { return patch(body, null); } /** - * Update properties of a permissionGrantPolicy. + * Update the navigation property permissionGrantPolicies in policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PermissionGrantPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PermissionGrantPolicy patch(@jakarta.annotation.Nonnull final PermissionGrantPolicy body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +120,7 @@ public PermissionGrantPolicy patch(@jakarta.annotation.Nonnull final PermissionG return this.requestAdapter.send(requestInfo, errorMapping, PermissionGrantPolicy::createFromDiscriminatorValue); } /** - * Delete a permissionGrantPolicy object. + * Delete navigation property permissionGrantPolicies for policies * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +128,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a permissionGrantPolicy object. + * Delete navigation property permissionGrantPolicies for policies * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a single permissionGrantPolicy object. + * The policy that specifies the conditions under which consent can be granted. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -154,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a single permissionGrantPolicy object. + * The policy that specifies the conditions under which consent can be granted. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update properties of a permissionGrantPolicy. + * Update the navigation property permissionGrantPolicies in policies * @param body The request body * @return a {@link RequestInformation} */ @@ -175,7 +169,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update properties of a permissionGrantPolicy. + * Update the navigation property permissionGrantPolicies in policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -206,7 +200,7 @@ public PermissionGrantPolicyItemRequestBuilder withUrl(@jakarta.annotation.Nonnu public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve a single permissionGrantPolicy object. + * The policy that specifies the conditions under which consent can be granted. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/policies/permissiongrantpolicies/item/excludes/ExcludesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/permissiongrantpolicies/item/excludes/ExcludesRequestBuilder.java index 40653da1f91..824e83d9bc7 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/permissiongrantpolicies/item/excludes/ExcludesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/permissiongrantpolicies/item/excludes/ExcludesRequestBuilder.java @@ -60,21 +60,19 @@ public ExcludesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/policies/permissionGrantPolicies/{permissionGrantPolicy%2Did}/excludes{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the condition sets which are *excluded* in a permissionGrantPolicy. + * Condition sets that are excluded in this permission grant policy. Automatically expanded on GET. * @return a {@link PermissionGrantConditionSetCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PermissionGrantConditionSetCollectionResponse get() { return get(null); } /** - * Retrieve the condition sets which are *excluded* in a permissionGrantPolicy. + * Condition sets that are excluded in this permission grant policy. Automatically expanded on GET. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PermissionGrantConditionSetCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PermissionGrantConditionSetCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public PermissionGrantConditionSetCollectionResponse get(@jakarta.annotation.Nul return this.requestAdapter.send(requestInfo, errorMapping, PermissionGrantConditionSetCollectionResponse::createFromDiscriminatorValue); } /** - * Add conditions under which a permission grant event is *excluded* in a permission grant policy. You do this by adding a permissionGrantConditionSet to the excludes collection of a permissionGrantPolicy. + * Create new navigation property to excludes for policies * @param body The request body * @return a {@link PermissionGrantConditionSet} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PermissionGrantConditionSet post(@jakarta.annotation.Nonnull final PermissionGrantConditionSet body) { return post(body, null); } /** - * Add conditions under which a permission grant event is *excluded* in a permission grant policy. You do this by adding a permissionGrantConditionSet to the excludes collection of a permissionGrantPolicy. + * Create new navigation property to excludes for policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PermissionGrantConditionSet} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PermissionGrantConditionSet post(@jakarta.annotation.Nonnull final PermissionGrantConditionSet body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public PermissionGrantConditionSet post(@jakarta.annotation.Nonnull final Permis return this.requestAdapter.send(requestInfo, errorMapping, PermissionGrantConditionSet::createFromDiscriminatorValue); } /** - * Retrieve the condition sets which are *excluded* in a permissionGrantPolicy. + * Condition sets that are excluded in this permission grant policy. Automatically expanded on GET. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the condition sets which are *excluded* in a permissionGrantPolicy. + * Condition sets that are excluded in this permission grant policy. Automatically expanded on GET. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add conditions under which a permission grant event is *excluded* in a permission grant policy. You do this by adding a permissionGrantConditionSet to the excludes collection of a permissionGrantPolicy. + * Create new navigation property to excludes for policies * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add conditions under which a permission grant event is *excluded* in a permission grant policy. You do this by adding a permissionGrantConditionSet to the excludes collection of a permissionGrantPolicy. + * Create new navigation property to excludes for policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ExcludesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new ExcludesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the condition sets which are *excluded* in a permissionGrantPolicy. + * Condition sets that are excluded in this permission grant policy. Automatically expanded on GET. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/policies/permissiongrantpolicies/item/excludes/item/PermissionGrantConditionSetItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/permissiongrantpolicies/item/excludes/item/PermissionGrantConditionSetItemRequestBuilder.java index 4bcc9a60e64..48c4034c56a 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/permissiongrantpolicies/item/excludes/item/PermissionGrantConditionSetItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/permissiongrantpolicies/item/excludes/item/PermissionGrantConditionSetItemRequestBuilder.java @@ -37,18 +37,16 @@ public PermissionGrantConditionSetItemRequestBuilder(@jakarta.annotation.Nonnull super(requestAdapter, "{+baseurl}/policies/permissionGrantPolicies/{permissionGrantPolicy%2Did}/excludes/{permissionGrantConditionSet%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a permissionGrantConditionSet from the excludes collection of a permissionGrantPolicy. + * Delete navigation property excludes for policies * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a permissionGrantConditionSet from the excludes collection of a permissionGrantPolicy. + * Delete navigation property excludes for policies * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,7 +55,7 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Condition sets which are excluded in this permission grant policy. Automatically expanded on GET. + * Condition sets that are excluded in this permission grant policy. Automatically expanded on GET. * @return a {@link PermissionGrantConditionSet} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -66,7 +64,7 @@ public PermissionGrantConditionSet get() { return get(null); } /** - * Condition sets which are excluded in this permission grant policy. Automatically expanded on GET. + * Condition sets that are excluded in this permission grant policy. Automatically expanded on GET. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PermissionGrantConditionSet} * @throws ODataError When receiving a 4XX or 5XX status code @@ -104,7 +102,7 @@ public PermissionGrantConditionSet patch(@jakarta.annotation.Nonnull final Permi return this.requestAdapter.send(requestInfo, errorMapping, PermissionGrantConditionSet::createFromDiscriminatorValue); } /** - * Deletes a permissionGrantConditionSet from the excludes collection of a permissionGrantPolicy. + * Delete navigation property excludes for policies * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -112,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a permissionGrantConditionSet from the excludes collection of a permissionGrantPolicy. + * Delete navigation property excludes for policies * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Condition sets which are excluded in this permission grant policy. Automatically expanded on GET. + * Condition sets that are excluded in this permission grant policy. Automatically expanded on GET. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Condition sets which are excluded in this permission grant policy. Automatically expanded on GET. + * Condition sets that are excluded in this permission grant policy. Automatically expanded on GET. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public PermissionGrantConditionSetItemRequestBuilder withUrl(@jakarta.annotation public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Condition sets which are excluded in this permission grant policy. Automatically expanded on GET. + * Condition sets that are excluded in this permission grant policy. Automatically expanded on GET. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/policies/permissiongrantpolicies/item/includes/IncludesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/permissiongrantpolicies/item/includes/IncludesRequestBuilder.java index 13edd811036..9b137ada09a 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/permissiongrantpolicies/item/includes/IncludesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/permissiongrantpolicies/item/includes/IncludesRequestBuilder.java @@ -60,21 +60,19 @@ public IncludesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/policies/permissionGrantPolicies/{permissionGrantPolicy%2Did}/includes{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the condition sets which are *included* in a permissionGrantPolicy. + * Condition sets that are included in this permission grant policy. Automatically expanded on GET. * @return a {@link PermissionGrantConditionSetCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PermissionGrantConditionSetCollectionResponse get() { return get(null); } /** - * Retrieve the condition sets which are *included* in a permissionGrantPolicy. + * Condition sets that are included in this permission grant policy. Automatically expanded on GET. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PermissionGrantConditionSetCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PermissionGrantConditionSetCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public PermissionGrantConditionSetCollectionResponse get(@jakarta.annotation.Nul return this.requestAdapter.send(requestInfo, errorMapping, PermissionGrantConditionSetCollectionResponse::createFromDiscriminatorValue); } /** - * Add conditions under which a permission grant event is *included* in a permission grant policy. You do this by adding a permissionGrantConditionSet to the includes collection of a permissionGrantPolicy. + * Create new navigation property to includes for policies * @param body The request body * @return a {@link PermissionGrantConditionSet} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PermissionGrantConditionSet post(@jakarta.annotation.Nonnull final PermissionGrantConditionSet body) { return post(body, null); } /** - * Add conditions under which a permission grant event is *included* in a permission grant policy. You do this by adding a permissionGrantConditionSet to the includes collection of a permissionGrantPolicy. + * Create new navigation property to includes for policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PermissionGrantConditionSet} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PermissionGrantConditionSet post(@jakarta.annotation.Nonnull final PermissionGrantConditionSet body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public PermissionGrantConditionSet post(@jakarta.annotation.Nonnull final Permis return this.requestAdapter.send(requestInfo, errorMapping, PermissionGrantConditionSet::createFromDiscriminatorValue); } /** - * Retrieve the condition sets which are *included* in a permissionGrantPolicy. + * Condition sets that are included in this permission grant policy. Automatically expanded on GET. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the condition sets which are *included* in a permissionGrantPolicy. + * Condition sets that are included in this permission grant policy. Automatically expanded on GET. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add conditions under which a permission grant event is *included* in a permission grant policy. You do this by adding a permissionGrantConditionSet to the includes collection of a permissionGrantPolicy. + * Create new navigation property to includes for policies * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add conditions under which a permission grant event is *included* in a permission grant policy. You do this by adding a permissionGrantConditionSet to the includes collection of a permissionGrantPolicy. + * Create new navigation property to includes for policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public IncludesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new IncludesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the condition sets which are *included* in a permissionGrantPolicy. + * Condition sets that are included in this permission grant policy. Automatically expanded on GET. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/policies/permissiongrantpolicies/item/includes/item/PermissionGrantConditionSetItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/permissiongrantpolicies/item/includes/item/PermissionGrantConditionSetItemRequestBuilder.java index 0046d8b551e..f3f77943f24 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/permissiongrantpolicies/item/includes/item/PermissionGrantConditionSetItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/permissiongrantpolicies/item/includes/item/PermissionGrantConditionSetItemRequestBuilder.java @@ -37,18 +37,16 @@ public PermissionGrantConditionSetItemRequestBuilder(@jakarta.annotation.Nonnull super(requestAdapter, "{+baseurl}/policies/permissionGrantPolicies/{permissionGrantPolicy%2Did}/includes/{permissionGrantConditionSet%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a permissionGrantConditionSet from the includes collection of a permissionGrantPolicy. + * Delete navigation property includes for policies * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a permissionGrantConditionSet from the includes collection of a permissionGrantPolicy. + * Delete navigation property includes for policies * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,7 +55,7 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Condition sets which are included in this permission grant policy. Automatically expanded on GET. + * Condition sets that are included in this permission grant policy. Automatically expanded on GET. * @return a {@link PermissionGrantConditionSet} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -66,7 +64,7 @@ public PermissionGrantConditionSet get() { return get(null); } /** - * Condition sets which are included in this permission grant policy. Automatically expanded on GET. + * Condition sets that are included in this permission grant policy. Automatically expanded on GET. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PermissionGrantConditionSet} * @throws ODataError When receiving a 4XX or 5XX status code @@ -104,7 +102,7 @@ public PermissionGrantConditionSet patch(@jakarta.annotation.Nonnull final Permi return this.requestAdapter.send(requestInfo, errorMapping, PermissionGrantConditionSet::createFromDiscriminatorValue); } /** - * Deletes a permissionGrantConditionSet from the includes collection of a permissionGrantPolicy. + * Delete navigation property includes for policies * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -112,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a permissionGrantConditionSet from the includes collection of a permissionGrantPolicy. + * Delete navigation property includes for policies * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Condition sets which are included in this permission grant policy. Automatically expanded on GET. + * Condition sets that are included in this permission grant policy. Automatically expanded on GET. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Condition sets which are included in this permission grant policy. Automatically expanded on GET. + * Condition sets that are included in this permission grant policy. Automatically expanded on GET. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public PermissionGrantConditionSetItemRequestBuilder withUrl(@jakarta.annotation public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Condition sets which are included in this permission grant policy. Automatically expanded on GET. + * Condition sets that are included in this permission grant policy. Automatically expanded on GET. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/policies/rolemanagementpolicies/RoleManagementPoliciesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/rolemanagementpolicies/RoleManagementPoliciesRequestBuilder.java index 61d0e7e83bb..7a697191661 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/rolemanagementpolicies/RoleManagementPoliciesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/rolemanagementpolicies/RoleManagementPoliciesRequestBuilder.java @@ -60,21 +60,19 @@ public RoleManagementPoliciesRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/policies/roleManagementPolicies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the details of the policies in PIM that can be applied to Microsoft Entra roles or group membership or ownership. To retrieve policies that apply to Azure RBAC, use the Azure REST PIM API for role management policies. + * Specifies the various policies associated with scopes and roles. * @return a {@link UnifiedRoleManagementPolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleManagementPolicyCollectionResponse get() { return get(null); } /** - * Get the details of the policies in PIM that can be applied to Microsoft Entra roles or group membership or ownership. To retrieve policies that apply to Azure RBAC, use the Azure REST PIM API for role management policies. + * Specifies the various policies associated with scopes and roles. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleManagementPolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleManagementPolicyCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public UnifiedRoleManagementPolicy post(@jakarta.annotation.Nonnull final Unifie return this.requestAdapter.send(requestInfo, errorMapping, UnifiedRoleManagementPolicy::createFromDiscriminatorValue); } /** - * Get the details of the policies in PIM that can be applied to Microsoft Entra roles or group membership or ownership. To retrieve policies that apply to Azure RBAC, use the Azure REST PIM API for role management policies. + * Specifies the various policies associated with scopes and roles. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the details of the policies in PIM that can be applied to Microsoft Entra roles or group membership or ownership. To retrieve policies that apply to Azure RBAC, use the Azure REST PIM API for role management policies. + * Specifies the various policies associated with scopes and roles. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public RoleManagementPoliciesRequestBuilder withUrl(@jakarta.annotation.Nonnull return new RoleManagementPoliciesRequestBuilder(rawUrl, requestAdapter); } /** - * Get the details of the policies in PIM that can be applied to Microsoft Entra roles or group membership or ownership. To retrieve policies that apply to Azure RBAC, use the Azure REST PIM API for role management policies. + * Specifies the various policies associated with scopes and roles. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/policies/rolemanagementpolicies/item/UnifiedRoleManagementPolicyItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/rolemanagementpolicies/item/UnifiedRoleManagementPolicyItemRequestBuilder.java index accfe68bb80..cee64e1a8bf 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/rolemanagementpolicies/item/UnifiedRoleManagementPolicyItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/rolemanagementpolicies/item/UnifiedRoleManagementPolicyItemRequestBuilder.java @@ -73,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the details of a role management policy. + * Specifies the various policies associated with scopes and roles. * @return a {@link UnifiedRoleManagementPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleManagementPolicy get() { return get(null); } /** - * Retrieve the details of a role management policy. + * Specifies the various policies associated with scopes and roles. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleManagementPolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleManagementPolicy get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -142,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the details of a role management policy. + * Specifies the various policies associated with scopes and roles. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -150,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the details of a role management policy. + * Specifies the various policies associated with scopes and roles. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -202,7 +200,7 @@ public UnifiedRoleManagementPolicyItemRequestBuilder withUrl(@jakarta.annotation public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the details of a role management policy. + * Specifies the various policies associated with scopes and roles. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/policies/rolemanagementpolicies/item/rules/RulesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/rolemanagementpolicies/item/rules/RulesRequestBuilder.java index 37953856b11..6bf0498c127 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/rolemanagementpolicies/item/rules/RulesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/rolemanagementpolicies/item/rules/RulesRequestBuilder.java @@ -60,21 +60,19 @@ public RulesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/policies/roleManagementPolicies/{unifiedRoleManagementPolicy%2Did}/rules{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the rules or settings defined for a role management policy. The rules are a collection of following types that are derived from the unifiedRoleManagementPolicyRule object: + * The collection of rules like approval rules and expiration rules. Supports $expand. * @return a {@link UnifiedRoleManagementPolicyRuleCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleManagementPolicyRuleCollectionResponse get() { return get(null); } /** - * Get the rules or settings defined for a role management policy. The rules are a collection of following types that are derived from the unifiedRoleManagementPolicyRule object: + * The collection of rules like approval rules and expiration rules. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleManagementPolicyRuleCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleManagementPolicyRuleCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public UnifiedRoleManagementPolicyRule post(@jakarta.annotation.Nonnull final Un return this.requestAdapter.send(requestInfo, errorMapping, UnifiedRoleManagementPolicyRule::createFromDiscriminatorValue); } /** - * Get the rules or settings defined for a role management policy. The rules are a collection of following types that are derived from the unifiedRoleManagementPolicyRule object: + * The collection of rules like approval rules and expiration rules. Supports $expand. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the rules or settings defined for a role management policy. The rules are a collection of following types that are derived from the unifiedRoleManagementPolicyRule object: + * The collection of rules like approval rules and expiration rules. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public RulesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new RulesRequestBuilder(rawUrl, requestAdapter); } /** - * Get the rules or settings defined for a role management policy. The rules are a collection of following types that are derived from the unifiedRoleManagementPolicyRule object: + * The collection of rules like approval rules and expiration rules. Supports $expand. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/policies/rolemanagementpolicies/item/rules/item/UnifiedRoleManagementPolicyRuleItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/rolemanagementpolicies/item/rules/item/UnifiedRoleManagementPolicyRuleItemRequestBuilder.java index 0dc83f20af2..5216ba7ede5 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/rolemanagementpolicies/item/rules/item/UnifiedRoleManagementPolicyRuleItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/rolemanagementpolicies/item/rules/item/UnifiedRoleManagementPolicyRuleItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a rule or settings defined for a role management policy. The rule can be one of the following types that are derived from the unifiedRoleManagementPolicyRule object: + * The collection of rules like approval rules and expiration rules. Supports $expand. * @return a {@link UnifiedRoleManagementPolicyRule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleManagementPolicyRule get() { return get(null); } /** - * Retrieve a rule or settings defined for a role management policy. The rule can be one of the following types that are derived from the unifiedRoleManagementPolicyRule object: + * The collection of rules like approval rules and expiration rules. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleManagementPolicyRule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleManagementPolicyRule get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public UnifiedRoleManagementPolicyRule get(@jakarta.annotation.Nullable final ja return this.requestAdapter.send(requestInfo, errorMapping, UnifiedRoleManagementPolicyRule::createFromDiscriminatorValue); } /** - * Update a rule defined for a role management policy. The rule can be one of the following types that are derived from the unifiedRoleManagementPolicyRule object: For more information about rules for Microsoft Entra roles and examples of updating rules, see the following articles: + * Update the navigation property rules in policies * @param body The request body * @return a {@link UnifiedRoleManagementPolicyRule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleManagementPolicyRule patch(@jakarta.annotation.Nonnull final UnifiedRoleManagementPolicyRule body) { return patch(body, null); } /** - * Update a rule defined for a role management policy. The rule can be one of the following types that are derived from the unifiedRoleManagementPolicyRule object: For more information about rules for Microsoft Entra roles and examples of updating rules, see the following articles: + * Update the navigation property rules in policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleManagementPolicyRule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleManagementPolicyRule patch(@jakarta.annotation.Nonnull final UnifiedRoleManagementPolicyRule body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a rule or settings defined for a role management policy. The rule can be one of the following types that are derived from the unifiedRoleManagementPolicyRule object: + * The collection of rules like approval rules and expiration rules. Supports $expand. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a rule or settings defined for a role management policy. The rule can be one of the following types that are derived from the unifiedRoleManagementPolicyRule object: + * The collection of rules like approval rules and expiration rules. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update a rule defined for a role management policy. The rule can be one of the following types that are derived from the unifiedRoleManagementPolicyRule object: For more information about rules for Microsoft Entra roles and examples of updating rules, see the following articles: + * Update the navigation property rules in policies * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update a rule defined for a role management policy. The rule can be one of the following types that are derived from the unifiedRoleManagementPolicyRule object: For more information about rules for Microsoft Entra roles and examples of updating rules, see the following articles: + * Update the navigation property rules in policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public UnifiedRoleManagementPolicyRuleItemRequestBuilder withUrl(@jakarta.annota public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve a rule or settings defined for a role management policy. The rule can be one of the following types that are derived from the unifiedRoleManagementPolicyRule object: + * The collection of rules like approval rules and expiration rules. Supports $expand. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/policies/rolemanagementpolicyassignments/RoleManagementPolicyAssignmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/rolemanagementpolicyassignments/RoleManagementPolicyAssignmentsRequestBuilder.java index c07b1cdec55..0f822942081 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/rolemanagementpolicyassignments/RoleManagementPolicyAssignmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/rolemanagementpolicyassignments/RoleManagementPolicyAssignmentsRequestBuilder.java @@ -60,21 +60,19 @@ public RoleManagementPolicyAssignmentsRequestBuilder(@jakarta.annotation.Nonnull super(requestAdapter, "{+baseurl}/policies/roleManagementPolicyAssignments{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the details of all role management policy assignments made in PIM for Microsoft Entra roles and PIM for groups. + * The assignment of a role management policy to a role definition object. * @return a {@link UnifiedRoleManagementPolicyAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleManagementPolicyAssignmentCollectionResponse get() { return get(null); } /** - * Get the details of all role management policy assignments made in PIM for Microsoft Entra roles and PIM for groups. + * The assignment of a role management policy to a role definition object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleManagementPolicyAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleManagementPolicyAssignmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public UnifiedRoleManagementPolicyAssignment post(@jakarta.annotation.Nonnull fi return this.requestAdapter.send(requestInfo, errorMapping, UnifiedRoleManagementPolicyAssignment::createFromDiscriminatorValue); } /** - * Get the details of all role management policy assignments made in PIM for Microsoft Entra roles and PIM for groups. + * The assignment of a role management policy to a role definition object. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the details of all role management policy assignments made in PIM for Microsoft Entra roles and PIM for groups. + * The assignment of a role management policy to a role definition object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public RoleManagementPolicyAssignmentsRequestBuilder withUrl(@jakarta.annotation return new RoleManagementPolicyAssignmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the details of all role management policy assignments made in PIM for Microsoft Entra roles and PIM for groups. + * The assignment of a role management policy to a role definition object. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/policies/rolemanagementpolicyassignments/item/UnifiedRoleManagementPolicyAssignmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/rolemanagementpolicyassignments/item/UnifiedRoleManagementPolicyAssignmentItemRequestBuilder.java index 6ffd19f7323..7e10544a020 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/rolemanagementpolicyassignments/item/UnifiedRoleManagementPolicyAssignmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/rolemanagementpolicyassignments/item/UnifiedRoleManagementPolicyAssignmentItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the details of a policy assignment in PIM that's assigned to Microsoft Entra roles or group membership or ownership. + * The assignment of a role management policy to a role definition object. * @return a {@link UnifiedRoleManagementPolicyAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleManagementPolicyAssignment get() { return get(null); } /** - * Get the details of a policy assignment in PIM that's assigned to Microsoft Entra roles or group membership or ownership. + * The assignment of a role management policy to a role definition object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleManagementPolicyAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleManagementPolicyAssignment get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the details of a policy assignment in PIM that's assigned to Microsoft Entra roles or group membership or ownership. + * The assignment of a role management policy to a role definition object. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the details of a policy assignment in PIM that's assigned to Microsoft Entra roles or group membership or ownership. + * The assignment of a role management policy to a role definition object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public UnifiedRoleManagementPolicyAssignmentItemRequestBuilder withUrl(@jakarta. public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the details of a policy assignment in PIM that's assigned to Microsoft Entra roles or group membership or ownership. + * The assignment of a role management policy to a role definition object. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/policies/tokenissuancepolicies/TokenIssuancePoliciesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/tokenissuancepolicies/TokenIssuancePoliciesRequestBuilder.java index 2db65d0912f..b1dacb99d4f 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/tokenissuancepolicies/TokenIssuancePoliciesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/tokenissuancepolicies/TokenIssuancePoliciesRequestBuilder.java @@ -60,21 +60,19 @@ public TokenIssuancePoliciesRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/policies/tokenIssuancePolicies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of tokenIssuancePolicy objects. + * The policy that specifies the characteristics of SAML tokens issued by Microsoft Entra ID. * @return a {@link TokenIssuancePolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TokenIssuancePolicyCollectionResponse get() { return get(null); } /** - * Get a list of tokenIssuancePolicy objects. + * The policy that specifies the characteristics of SAML tokens issued by Microsoft Entra ID. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TokenIssuancePolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TokenIssuancePolicyCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TokenIssuancePolicyCollectionResponse get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, TokenIssuancePolicyCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new tokenIssuancePolicy object. + * Create new navigation property to tokenIssuancePolicies for policies * @param body The request body * @return a {@link TokenIssuancePolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TokenIssuancePolicy post(@jakarta.annotation.Nonnull final TokenIssuancePolicy body) { return post(body, null); } /** - * Create a new tokenIssuancePolicy object. + * Create new navigation property to tokenIssuancePolicies for policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TokenIssuancePolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TokenIssuancePolicy post(@jakarta.annotation.Nonnull final TokenIssuancePolicy body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public TokenIssuancePolicy post(@jakarta.annotation.Nonnull final TokenIssuanceP return this.requestAdapter.send(requestInfo, errorMapping, TokenIssuancePolicy::createFromDiscriminatorValue); } /** - * Get a list of tokenIssuancePolicy objects. + * The policy that specifies the characteristics of SAML tokens issued by Microsoft Entra ID. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of tokenIssuancePolicy objects. + * The policy that specifies the characteristics of SAML tokens issued by Microsoft Entra ID. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new tokenIssuancePolicy object. + * Create new navigation property to tokenIssuancePolicies for policies * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new tokenIssuancePolicy object. + * Create new navigation property to tokenIssuancePolicies for policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public TokenIssuancePoliciesRequestBuilder withUrl(@jakarta.annotation.Nonnull f return new TokenIssuancePoliciesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of tokenIssuancePolicy objects. + * The policy that specifies the characteristics of SAML tokens issued by Microsoft Entra ID. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/policies/tokenissuancepolicies/item/TokenIssuancePolicyItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/tokenissuancepolicies/item/TokenIssuancePolicyItemRequestBuilder.java index 1c884b9d447..254b50a86f1 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/tokenissuancepolicies/item/TokenIssuancePolicyItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/tokenissuancepolicies/item/TokenIssuancePolicyItemRequestBuilder.java @@ -46,18 +46,16 @@ public TokenIssuancePolicyItemRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/policies/tokenIssuancePolicies/{tokenIssuancePolicy%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a tokenIssuancePolicy object. + * Delete navigation property tokenIssuancePolicies for policies * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a tokenIssuancePolicy object. + * Delete navigation property tokenIssuancePolicies for policies * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -88,23 +86,21 @@ public TokenIssuancePolicy get(@jakarta.annotation.Nullable final java.util.func return this.requestAdapter.send(requestInfo, errorMapping, TokenIssuancePolicy::createFromDiscriminatorValue); } /** - * Update the properties of a tokenIssuancePolicy object. + * Update the navigation property tokenIssuancePolicies in policies * @param body The request body * @return a {@link TokenIssuancePolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TokenIssuancePolicy patch(@jakarta.annotation.Nonnull final TokenIssuancePolicy body) { return patch(body, null); } /** - * Update the properties of a tokenIssuancePolicy object. + * Update the navigation property tokenIssuancePolicies in policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TokenIssuancePolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TokenIssuancePolicy patch(@jakarta.annotation.Nonnull final TokenIssuancePolicy body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -115,7 +111,7 @@ public TokenIssuancePolicy patch(@jakarta.annotation.Nonnull final TokenIssuance return this.requestAdapter.send(requestInfo, errorMapping, TokenIssuancePolicy::createFromDiscriminatorValue); } /** - * Delete a tokenIssuancePolicy object. + * Delete navigation property tokenIssuancePolicies for policies * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -123,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a tokenIssuancePolicy object. + * Delete navigation property tokenIssuancePolicies for policies * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a tokenIssuancePolicy object. + * Update the navigation property tokenIssuancePolicies in policies * @param body The request body * @return a {@link RequestInformation} */ @@ -164,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a tokenIssuancePolicy object. + * Update the navigation property tokenIssuancePolicies in policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/policies/tokenlifetimepolicies/TokenLifetimePoliciesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/tokenlifetimepolicies/TokenLifetimePoliciesRequestBuilder.java index 2c1ba82c032..7ba338aff2a 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/tokenlifetimepolicies/TokenLifetimePoliciesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/tokenlifetimepolicies/TokenLifetimePoliciesRequestBuilder.java @@ -60,21 +60,19 @@ public TokenLifetimePoliciesRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/policies/tokenLifetimePolicies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of tokenLifetimePolicy objects. + * The policy that controls the lifetime of a JWT access token, an ID token, or a SAML 1.1/2.0 token issued by Microsoft Entra ID. * @return a {@link TokenLifetimePolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TokenLifetimePolicyCollectionResponse get() { return get(null); } /** - * Get a list of tokenLifetimePolicy objects. + * The policy that controls the lifetime of a JWT access token, an ID token, or a SAML 1.1/2.0 token issued by Microsoft Entra ID. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TokenLifetimePolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TokenLifetimePolicyCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TokenLifetimePolicyCollectionResponse get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, TokenLifetimePolicyCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new tokenLifetimePolicy object. + * Create new navigation property to tokenLifetimePolicies for policies * @param body The request body * @return a {@link TokenLifetimePolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TokenLifetimePolicy post(@jakarta.annotation.Nonnull final TokenLifetimePolicy body) { return post(body, null); } /** - * Create a new tokenLifetimePolicy object. + * Create new navigation property to tokenLifetimePolicies for policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TokenLifetimePolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TokenLifetimePolicy post(@jakarta.annotation.Nonnull final TokenLifetimePolicy body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public TokenLifetimePolicy post(@jakarta.annotation.Nonnull final TokenLifetimeP return this.requestAdapter.send(requestInfo, errorMapping, TokenLifetimePolicy::createFromDiscriminatorValue); } /** - * Get a list of tokenLifetimePolicy objects. + * The policy that controls the lifetime of a JWT access token, an ID token, or a SAML 1.1/2.0 token issued by Microsoft Entra ID. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of tokenLifetimePolicy objects. + * The policy that controls the lifetime of a JWT access token, an ID token, or a SAML 1.1/2.0 token issued by Microsoft Entra ID. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new tokenLifetimePolicy object. + * Create new navigation property to tokenLifetimePolicies for policies * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new tokenLifetimePolicy object. + * Create new navigation property to tokenLifetimePolicies for policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public TokenLifetimePoliciesRequestBuilder withUrl(@jakarta.annotation.Nonnull f return new TokenLifetimePoliciesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of tokenLifetimePolicy objects. + * The policy that controls the lifetime of a JWT access token, an ID token, or a SAML 1.1/2.0 token issued by Microsoft Entra ID. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/policies/tokenlifetimepolicies/item/TokenLifetimePolicyItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/policies/tokenlifetimepolicies/item/TokenLifetimePolicyItemRequestBuilder.java index dadc4d5d33c..2953c459e1a 100644 --- a/src/main/java/com/microsoft/graph/generated/policies/tokenlifetimepolicies/item/TokenLifetimePolicyItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/policies/tokenlifetimepolicies/item/TokenLifetimePolicyItemRequestBuilder.java @@ -46,18 +46,16 @@ public TokenLifetimePolicyItemRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/policies/tokenLifetimePolicies/{tokenLifetimePolicy%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a tokenLifetimePolicy object. + * Delete navigation property tokenLifetimePolicies for policies * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a tokenLifetimePolicy object. + * Delete navigation property tokenLifetimePolicies for policies * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a tokenLifetimePolicy object. + * The policy that controls the lifetime of a JWT access token, an ID token, or a SAML 1.1/2.0 token issued by Microsoft Entra ID. * @return a {@link TokenLifetimePolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TokenLifetimePolicy get() { return get(null); } /** - * Retrieve the properties and relationships of a tokenLifetimePolicy object. + * The policy that controls the lifetime of a JWT access token, an ID token, or a SAML 1.1/2.0 token issued by Microsoft Entra ID. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TokenLifetimePolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TokenLifetimePolicy get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public TokenLifetimePolicy get(@jakarta.annotation.Nullable final java.util.func return this.requestAdapter.send(requestInfo, errorMapping, TokenLifetimePolicy::createFromDiscriminatorValue); } /** - * Update the properties of a tokenLifetimePolicy object. + * Update the navigation property tokenLifetimePolicies in policies * @param body The request body * @return a {@link TokenLifetimePolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TokenLifetimePolicy patch(@jakarta.annotation.Nonnull final TokenLifetimePolicy body) { return patch(body, null); } /** - * Update the properties of a tokenLifetimePolicy object. + * Update the navigation property tokenLifetimePolicies in policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TokenLifetimePolicy} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TokenLifetimePolicy patch(@jakarta.annotation.Nonnull final TokenLifetimePolicy body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public TokenLifetimePolicy patch(@jakarta.annotation.Nonnull final TokenLifetime return this.requestAdapter.send(requestInfo, errorMapping, TokenLifetimePolicy::createFromDiscriminatorValue); } /** - * Delete a tokenLifetimePolicy object. + * Delete navigation property tokenLifetimePolicies for policies * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a tokenLifetimePolicy object. + * Delete navigation property tokenLifetimePolicies for policies * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a tokenLifetimePolicy object. + * The policy that controls the lifetime of a JWT access token, an ID token, or a SAML 1.1/2.0 token issued by Microsoft Entra ID. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a tokenLifetimePolicy object. + * The policy that controls the lifetime of a JWT access token, an ID token, or a SAML 1.1/2.0 token issued by Microsoft Entra ID. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a tokenLifetimePolicy object. + * Update the navigation property tokenLifetimePolicies in policies * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a tokenLifetimePolicy object. + * Update the navigation property tokenLifetimePolicies in policies * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public TokenLifetimePolicyItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a tokenLifetimePolicy object. + * The policy that controls the lifetime of a JWT access token, an ID token, or a SAML 1.1/2.0 token issued by Microsoft Entra ID. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/print/connectors/ConnectorsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/print/connectors/ConnectorsRequestBuilder.java index adf3b85cc53..d574e83cd10 100644 --- a/src/main/java/com/microsoft/graph/generated/print/connectors/ConnectorsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/print/connectors/ConnectorsRequestBuilder.java @@ -60,21 +60,19 @@ public ConnectorsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/print/connectors{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of print connectors. + * The list of available print connectors. * @return a {@link PrintConnectorCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintConnectorCollectionResponse get() { return get(null); } /** - * Retrieve a list of print connectors. + * The list of available print connectors. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrintConnectorCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintConnectorCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public PrintConnector post(@jakarta.annotation.Nonnull final PrintConnector body return this.requestAdapter.send(requestInfo, errorMapping, PrintConnector::createFromDiscriminatorValue); } /** - * Retrieve a list of print connectors. + * The list of available print connectors. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of print connectors. + * The list of available print connectors. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public ConnectorsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ConnectorsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of print connectors. + * The list of available print connectors. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/print/connectors/item/PrintConnectorItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/print/connectors/item/PrintConnectorItemRequestBuilder.java index ce0fc3312e6..dd6ffde4d58 100644 --- a/src/main/java/com/microsoft/graph/generated/print/connectors/item/PrintConnectorItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/print/connectors/item/PrintConnectorItemRequestBuilder.java @@ -37,18 +37,16 @@ public PrintConnectorItemRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/print/connectors/{printConnector%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete (unregister) a printConnector. + * Delete navigation property connectors for print * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete (unregister) a printConnector. + * Delete navigation property connectors for print * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a printConnector object. + * The list of available print connectors. * @return a {@link PrintConnector} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintConnector get() { return get(null); } /** - * Retrieve the properties and relationships of a printConnector object. + * The list of available print connectors. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrintConnector} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintConnector get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public PrintConnector get(@jakarta.annotation.Nullable final java.util.function. return this.requestAdapter.send(requestInfo, errorMapping, PrintConnector::createFromDiscriminatorValue); } /** - * Update the properties of a printConnector object. + * Update the navigation property connectors in print * @param body The request body * @return a {@link PrintConnector} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintConnector patch(@jakarta.annotation.Nonnull final PrintConnector body) { return patch(body, null); } /** - * Update the properties of a printConnector object. + * Update the navigation property connectors in print * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrintConnector} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintConnector patch(@jakarta.annotation.Nonnull final PrintConnector body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public PrintConnector patch(@jakarta.annotation.Nonnull final PrintConnector bod return this.requestAdapter.send(requestInfo, errorMapping, PrintConnector::createFromDiscriminatorValue); } /** - * Delete (unregister) a printConnector. + * Delete navigation property connectors for print * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete (unregister) a printConnector. + * Delete navigation property connectors for print * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a printConnector object. + * The list of available print connectors. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a printConnector object. + * The list of available print connectors. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a printConnector object. + * Update the navigation property connectors in print * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a printConnector object. + * Update the navigation property connectors in print * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public PrintConnectorItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fina public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a printConnector object. + * The list of available print connectors. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/print/operations/OperationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/print/operations/OperationsRequestBuilder.java index 0cffad043a3..e1757f49a6b 100644 --- a/src/main/java/com/microsoft/graph/generated/print/operations/OperationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/print/operations/OperationsRequestBuilder.java @@ -60,7 +60,7 @@ public OperationsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/print/operations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the properties and relationships of a printOperation object. + * The list of print long running operations. * @return a {@link PrintOperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public PrintOperationCollectionResponse get() { return get(null); } /** - * Retrieve the properties and relationships of a printOperation object. + * The list of print long running operations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrintOperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public PrintOperation post(@jakarta.annotation.Nonnull final PrintOperation body return this.requestAdapter.send(requestInfo, errorMapping, PrintOperation::createFromDiscriminatorValue); } /** - * Retrieve the properties and relationships of a printOperation object. + * The list of print long running operations. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a printOperation object. + * The list of print long running operations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public OperationsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new OperationsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the properties and relationships of a printOperation object. + * The list of print long running operations. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/print/operations/item/PrintOperationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/print/operations/item/PrintOperationItemRequestBuilder.java index f5aeb1d0e3b..79456c2b85e 100644 --- a/src/main/java/com/microsoft/graph/generated/print/operations/item/PrintOperationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/print/operations/item/PrintOperationItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a printOperation object. + * The list of print long running operations. * @return a {@link PrintOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintOperation get() { return get(null); } /** - * Retrieve the properties and relationships of a printOperation object. + * The list of print long running operations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrintOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintOperation get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a printOperation object. + * The list of print long running operations. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a printOperation object. + * The list of print long running operations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public PrintOperationItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fina public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a printOperation object. + * The list of print long running operations. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/print/printers/PrintersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/print/printers/PrintersRequestBuilder.java index 45dcf533985..a08ce6b9769 100644 --- a/src/main/java/com/microsoft/graph/generated/print/printers/PrintersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/print/printers/PrintersRequestBuilder.java @@ -69,21 +69,19 @@ public PrintersRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/print/printers{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of printers that are registered in the tenant. + * The list of printers registered in the tenant. * @return a {@link PrinterCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrinterCollectionResponse get() { return get(null); } /** - * Retrieve the list of printers that are registered in the tenant. + * The list of printers registered in the tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrinterCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrinterCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -118,7 +116,7 @@ public Printer post(@jakarta.annotation.Nonnull final Printer body, @jakarta.ann return this.requestAdapter.send(requestInfo, errorMapping, Printer::createFromDiscriminatorValue); } /** - * Retrieve the list of printers that are registered in the tenant. + * The list of printers registered in the tenant. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -126,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of printers that are registered in the tenant. + * The list of printers registered in the tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -172,7 +170,7 @@ public PrintersRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new PrintersRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of printers that are registered in the tenant. + * The list of printers registered in the tenant. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/print/printers/item/PrinterItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/print/printers/item/PrinterItemRequestBuilder.java index 866e3b79884..4b3a5e82c49 100644 --- a/src/main/java/com/microsoft/graph/generated/print/printers/item/PrinterItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/print/printers/item/PrinterItemRequestBuilder.java @@ -82,18 +82,16 @@ public PrinterItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/print/printers/{printer%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete (unregister) a printer. + * Delete navigation property printers for print * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete (unregister) a printer. + * Delete navigation property printers for print * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -102,21 +100,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a printer object. + * The list of printers registered in the tenant. * @return a {@link Printer} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Printer get() { return get(null); } /** - * Retrieve the properties and relationships of a printer object. + * The list of printers registered in the tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Printer} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Printer get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,23 +122,21 @@ public Printer get(@jakarta.annotation.Nullable final java.util.function.Consume return this.requestAdapter.send(requestInfo, errorMapping, Printer::createFromDiscriminatorValue); } /** - * Update the properties of a printer object. + * Update the navigation property printers in print * @param body The request body * @return a {@link Printer} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Printer patch(@jakarta.annotation.Nonnull final Printer body) { return patch(body, null); } /** - * Update the properties of a printer object. + * Update the navigation property printers in print * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Printer} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Printer patch(@jakarta.annotation.Nonnull final Printer body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -153,7 +147,7 @@ public Printer patch(@jakarta.annotation.Nonnull final Printer body, @jakarta.an return this.requestAdapter.send(requestInfo, errorMapping, Printer::createFromDiscriminatorValue); } /** - * Delete (unregister) a printer. + * Delete navigation property printers for print * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -161,7 +155,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete (unregister) a printer. + * Delete navigation property printers for print * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -173,7 +167,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a printer object. + * The list of printers registered in the tenant. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -181,7 +175,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a printer object. + * The list of printers registered in the tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +187,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a printer object. + * Update the navigation property printers in print * @param body The request body * @return a {@link RequestInformation} */ @@ -202,7 +196,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a printer object. + * Update the navigation property printers in print * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -233,7 +227,7 @@ public PrinterItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a printer object. + * The list of printers registered in the tenant. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/print/printers/item/connectors/ConnectorsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/print/printers/item/connectors/ConnectorsRequestBuilder.java index cf4180cec5c..5340a97de28 100644 --- a/src/main/java/com/microsoft/graph/generated/print/printers/item/connectors/ConnectorsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/print/printers/item/connectors/ConnectorsRequestBuilder.java @@ -59,21 +59,19 @@ public ConnectorsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/print/printers/{printer%2Did}/connectors{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of printConnectors associated with the printer. + * The connectors that are associated with the printer. * @return a {@link PrintConnectorCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintConnectorCollectionResponse get() { return get(null); } /** - * Retrieve a list of printConnectors associated with the printer. + * The connectors that are associated with the printer. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrintConnectorCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintConnectorCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public PrintConnectorCollectionResponse get(@jakarta.annotation.Nullable final j return this.requestAdapter.send(requestInfo, errorMapping, PrintConnectorCollectionResponse::createFromDiscriminatorValue); } /** - * Retrieve a list of printConnectors associated with the printer. + * The connectors that are associated with the printer. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of printConnectors associated with the printer. + * The connectors that are associated with the printer. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public ConnectorsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ConnectorsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of printConnectors associated with the printer. + * The connectors that are associated with the printer. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/print/printers/item/shares/SharesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/print/printers/item/shares/SharesRequestBuilder.java index 18ef7b22b34..9d0ad917db6 100644 --- a/src/main/java/com/microsoft/graph/generated/print/printers/item/shares/SharesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/print/printers/item/shares/SharesRequestBuilder.java @@ -59,21 +59,19 @@ public SharesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/print/printers/{printer%2Did}/shares{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of printer shares associated with the printer. + * The list of printerShares that are associated with the printer. Currently, only one printerShare can be associated with the printer. Read-only. Nullable. * @return a {@link PrinterShareCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrinterShareCollectionResponse get() { return get(null); } /** - * Retrieve a list of printer shares associated with the printer. + * The list of printerShares that are associated with the printer. Currently, only one printerShare can be associated with the printer. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrinterShareCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrinterShareCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public PrinterShareCollectionResponse get(@jakarta.annotation.Nullable final jav return this.requestAdapter.send(requestInfo, errorMapping, PrinterShareCollectionResponse::createFromDiscriminatorValue); } /** - * Retrieve a list of printer shares associated with the printer. + * The list of printerShares that are associated with the printer. Currently, only one printerShare can be associated with the printer. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of printer shares associated with the printer. + * The list of printerShares that are associated with the printer. Currently, only one printerShare can be associated with the printer. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public SharesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw return new SharesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of printer shares associated with the printer. + * The list of printerShares that are associated with the printer. Currently, only one printerShare can be associated with the printer. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/print/printers/item/tasktriggers/TaskTriggersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/print/printers/item/tasktriggers/TaskTriggersRequestBuilder.java index c1235ea0d7f..11bc86bbf39 100644 --- a/src/main/java/com/microsoft/graph/generated/print/printers/item/tasktriggers/TaskTriggersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/print/printers/item/tasktriggers/TaskTriggersRequestBuilder.java @@ -60,21 +60,19 @@ public TaskTriggersRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/print/printers/{printer%2Did}/taskTriggers{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of task triggers associated with the printer. The list of task triggers defines which tasks will be triggered as a result of events that occur during printing. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * A list of task triggers that are associated with the printer. * @return a {@link PrintTaskTriggerCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintTaskTriggerCollectionResponse get() { return get(null); } /** - * Retrieve a list of task triggers associated with the printer. The list of task triggers defines which tasks will be triggered as a result of events that occur during printing. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * A list of task triggers that are associated with the printer. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrintTaskTriggerCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintTaskTriggerCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public PrintTaskTriggerCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, PrintTaskTriggerCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new task trigger on the specified printer. Currently, only one task trigger can be specified per printer, but this limit might be removed in the future. + * Create new navigation property to taskTriggers for print * @param body The request body * @return a {@link PrintTaskTrigger} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintTaskTrigger post(@jakarta.annotation.Nonnull final PrintTaskTrigger body) { return post(body, null); } /** - * Create a new task trigger on the specified printer. Currently, only one task trigger can be specified per printer, but this limit might be removed in the future. + * Create new navigation property to taskTriggers for print * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrintTaskTrigger} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintTaskTrigger post(@jakarta.annotation.Nonnull final PrintTaskTrigger body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public PrintTaskTrigger post(@jakarta.annotation.Nonnull final PrintTaskTrigger return this.requestAdapter.send(requestInfo, errorMapping, PrintTaskTrigger::createFromDiscriminatorValue); } /** - * Retrieve a list of task triggers associated with the printer. The list of task triggers defines which tasks will be triggered as a result of events that occur during printing. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * A list of task triggers that are associated with the printer. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of task triggers associated with the printer. The list of task triggers defines which tasks will be triggered as a result of events that occur during printing. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * A list of task triggers that are associated with the printer. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new task trigger on the specified printer. Currently, only one task trigger can be specified per printer, but this limit might be removed in the future. + * Create new navigation property to taskTriggers for print * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new task trigger on the specified printer. Currently, only one task trigger can be specified per printer, but this limit might be removed in the future. + * Create new navigation property to taskTriggers for print * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public TaskTriggersRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri return new TaskTriggersRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of task triggers associated with the printer. The list of task triggers defines which tasks will be triggered as a result of events that occur during printing. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * A list of task triggers that are associated with the printer. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/print/printers/item/tasktriggers/item/PrintTaskTriggerItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/print/printers/item/tasktriggers/item/PrintTaskTriggerItemRequestBuilder.java index c74693166ca..b02a354f920 100644 --- a/src/main/java/com/microsoft/graph/generated/print/printers/item/tasktriggers/item/PrintTaskTriggerItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/print/printers/item/tasktriggers/item/PrintTaskTriggerItemRequestBuilder.java @@ -46,18 +46,16 @@ public PrintTaskTriggerItemRequestBuilder(@jakarta.annotation.Nonnull final Stri super(requestAdapter, "{+baseurl}/print/printers/{printer%2Did}/taskTriggers/{printTaskTrigger%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete the task trigger of a printer to prevent related print events from triggering tasks on the specified printer. + * Delete navigation property taskTriggers for print * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete the task trigger of a printer to prevent related print events from triggering tasks on the specified printer. + * Delete navigation property taskTriggers for print * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get a task trigger from a printer. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * A list of task triggers that are associated with the printer. * @return a {@link PrintTaskTrigger} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintTaskTrigger get() { return get(null); } /** - * Get a task trigger from a printer. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * A list of task triggers that are associated with the printer. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrintTaskTrigger} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintTaskTrigger get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -115,7 +111,7 @@ public PrintTaskTrigger patch(@jakarta.annotation.Nonnull final PrintTaskTrigger return this.requestAdapter.send(requestInfo, errorMapping, PrintTaskTrigger::createFromDiscriminatorValue); } /** - * Delete the task trigger of a printer to prevent related print events from triggering tasks on the specified printer. + * Delete navigation property taskTriggers for print * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -123,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete the task trigger of a printer to prevent related print events from triggering tasks on the specified printer. + * Delete navigation property taskTriggers for print * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -135,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get a task trigger from a printer. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * A list of task triggers that are associated with the printer. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a task trigger from a printer. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * A list of task triggers that are associated with the printer. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -195,7 +191,7 @@ public PrintTaskTriggerItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fi public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get a task trigger from a printer. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * A list of task triggers that are associated with the printer. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/print/services/ServicesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/print/services/ServicesRequestBuilder.java index f3f5aad5855..9db8b1b9e50 100644 --- a/src/main/java/com/microsoft/graph/generated/print/services/ServicesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/print/services/ServicesRequestBuilder.java @@ -60,21 +60,19 @@ public ServicesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/print/services{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of printService objects that represent the services available to your tenant. + * The list of available Universal Print service endpoints. * @return a {@link PrintServiceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintServiceCollectionResponse get() { return get(null); } /** - * Retrieve a list of printService objects that represent the services available to your tenant. + * The list of available Universal Print service endpoints. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrintServiceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintServiceCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public PrintService post(@jakarta.annotation.Nonnull final PrintService body, @j return this.requestAdapter.send(requestInfo, errorMapping, PrintService::createFromDiscriminatorValue); } /** - * Retrieve a list of printService objects that represent the services available to your tenant. + * The list of available Universal Print service endpoints. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of printService objects that represent the services available to your tenant. + * The list of available Universal Print service endpoints. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public ServicesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new ServicesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of printService objects that represent the services available to your tenant. + * The list of available Universal Print service endpoints. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/print/services/item/PrintServiceItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/print/services/item/PrintServiceItemRequestBuilder.java index dae8ef0c468..bd7f5fecbaf 100644 --- a/src/main/java/com/microsoft/graph/generated/print/services/item/PrintServiceItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/print/services/item/PrintServiceItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a print service. + * The list of available Universal Print service endpoints. * @return a {@link PrintService} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintService get() { return get(null); } /** - * Retrieve the properties and relationships of a print service. + * The list of available Universal Print service endpoints. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrintService} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintService get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a print service. + * The list of available Universal Print service endpoints. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a print service. + * The list of available Universal Print service endpoints. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public PrintServiceItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a print service. + * The list of available Universal Print service endpoints. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/print/services/item/endpoints/EndpointsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/print/services/item/endpoints/EndpointsRequestBuilder.java index 9e9c24fbc80..e5d5689a204 100644 --- a/src/main/java/com/microsoft/graph/generated/print/services/item/endpoints/EndpointsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/print/services/item/endpoints/EndpointsRequestBuilder.java @@ -60,21 +60,19 @@ public EndpointsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/print/services/{printService%2Did}/endpoints{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of endpoints exposed by a print service. + * Endpoints that can be used to access the service. Read-only. Nullable. * @return a {@link PrintServiceEndpointCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintServiceEndpointCollectionResponse get() { return get(null); } /** - * Retrieve a list of endpoints exposed by a print service. + * Endpoints that can be used to access the service. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrintServiceEndpointCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintServiceEndpointCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public PrintServiceEndpoint post(@jakarta.annotation.Nonnull final PrintServiceE return this.requestAdapter.send(requestInfo, errorMapping, PrintServiceEndpoint::createFromDiscriminatorValue); } /** - * Retrieve a list of endpoints exposed by a print service. + * Endpoints that can be used to access the service. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of endpoints exposed by a print service. + * Endpoints that can be used to access the service. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public EndpointsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new EndpointsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of endpoints exposed by a print service. + * Endpoints that can be used to access the service. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/print/services/item/endpoints/item/PrintServiceEndpointItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/print/services/item/endpoints/item/PrintServiceEndpointItemRequestBuilder.java index c5b175b4c1c..70c828f619d 100644 --- a/src/main/java/com/microsoft/graph/generated/print/services/item/endpoints/item/PrintServiceEndpointItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/print/services/item/endpoints/item/PrintServiceEndpointItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a print service endpoint. + * Endpoints that can be used to access the service. Read-only. Nullable. * @return a {@link PrintServiceEndpoint} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintServiceEndpoint get() { return get(null); } /** - * Retrieve the properties and relationships of a print service endpoint. + * Endpoints that can be used to access the service. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrintServiceEndpoint} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintServiceEndpoint get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a print service endpoint. + * Endpoints that can be used to access the service. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a print service endpoint. + * Endpoints that can be used to access the service. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public PrintServiceEndpointItemRequestBuilder withUrl(@jakarta.annotation.Nonnul public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a print service endpoint. + * Endpoints that can be used to access the service. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/print/shares/SharesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/print/shares/SharesRequestBuilder.java index 0a65274114e..9e20a20dbc7 100644 --- a/src/main/java/com/microsoft/graph/generated/print/shares/SharesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/print/shares/SharesRequestBuilder.java @@ -60,21 +60,19 @@ public SharesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/print/shares{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of printerShares. + * The list of printer shares registered in the tenant. * @return a {@link PrinterShareCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrinterShareCollectionResponse get() { return get(null); } /** - * Retrieve a list of printerShares. + * The list of printer shares registered in the tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrinterShareCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrinterShareCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public PrinterShareCollectionResponse get(@jakarta.annotation.Nullable final jav return this.requestAdapter.send(requestInfo, errorMapping, PrinterShareCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new printerShare for the specified printer. + * Create new navigation property to shares for print * @param body The request body * @return a {@link PrinterShare} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrinterShare post(@jakarta.annotation.Nonnull final PrinterShare body) { return post(body, null); } /** - * Create a new printerShare for the specified printer. + * Create new navigation property to shares for print * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrinterShare} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrinterShare post(@jakarta.annotation.Nonnull final PrinterShare body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public PrinterShare post(@jakarta.annotation.Nonnull final PrinterShare body, @j return this.requestAdapter.send(requestInfo, errorMapping, PrinterShare::createFromDiscriminatorValue); } /** - * Retrieve a list of printerShares. + * The list of printer shares registered in the tenant. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of printerShares. + * The list of printer shares registered in the tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new printerShare for the specified printer. + * Create new navigation property to shares for print * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new printerShare for the specified printer. + * Create new navigation property to shares for print * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public SharesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw return new SharesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of printerShares. + * The list of printer shares registered in the tenant. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/print/shares/item/PrinterShareItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/print/shares/item/PrinterShareItemRequestBuilder.java index 220276fda85..b940e41798c 100644 --- a/src/main/java/com/microsoft/graph/generated/print/shares/item/PrinterShareItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/print/shares/item/PrinterShareItemRequestBuilder.java @@ -73,18 +73,16 @@ public PrinterShareItemRequestBuilder(@jakarta.annotation.Nonnull final String r super(requestAdapter, "{+baseurl}/print/shares/{printerShare%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a printer share (unshare the associated printer). This action can't be undone. If the printer is shared again in the future, any Windows users who had previously installed the printer needs to discover and reinstall it. + * Delete navigation property shares for print * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a printer share (unshare the associated printer). This action can't be undone. If the printer is shared again in the future, any Windows users who had previously installed the printer needs to discover and reinstall it. + * Delete navigation property shares for print * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -93,21 +91,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a printer share. + * The list of printer shares registered in the tenant. * @return a {@link PrinterShare} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrinterShare get() { return get(null); } /** - * Retrieve the properties and relationships of a printer share. + * The list of printer shares registered in the tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrinterShare} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrinterShare get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,23 +113,21 @@ public PrinterShare get(@jakarta.annotation.Nullable final java.util.function.Co return this.requestAdapter.send(requestInfo, errorMapping, PrinterShare::createFromDiscriminatorValue); } /** - * Update the properties of a printer share. This method can be used to swap printers. For example, if a physical printer device breaks, an administrator can register a new printer device and update this printerShare to point to the new printer without requiring users to take any action. + * Update the navigation property shares in print * @param body The request body * @return a {@link PrinterShare} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrinterShare patch(@jakarta.annotation.Nonnull final PrinterShare body) { return patch(body, null); } /** - * Update the properties of a printer share. This method can be used to swap printers. For example, if a physical printer device breaks, an administrator can register a new printer device and update this printerShare to point to the new printer without requiring users to take any action. + * Update the navigation property shares in print * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrinterShare} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrinterShare patch(@jakarta.annotation.Nonnull final PrinterShare body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -144,7 +138,7 @@ public PrinterShare patch(@jakarta.annotation.Nonnull final PrinterShare body, @ return this.requestAdapter.send(requestInfo, errorMapping, PrinterShare::createFromDiscriminatorValue); } /** - * Delete a printer share (unshare the associated printer). This action can't be undone. If the printer is shared again in the future, any Windows users who had previously installed the printer needs to discover and reinstall it. + * Delete navigation property shares for print * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -152,7 +146,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a printer share (unshare the associated printer). This action can't be undone. If the printer is shared again in the future, any Windows users who had previously installed the printer needs to discover and reinstall it. + * Delete navigation property shares for print * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -164,7 +158,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a printer share. + * The list of printer shares registered in the tenant. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -172,7 +166,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a printer share. + * The list of printer shares registered in the tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +178,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a printer share. This method can be used to swap printers. For example, if a physical printer device breaks, an administrator can register a new printer device and update this printerShare to point to the new printer without requiring users to take any action. + * Update the navigation property shares in print * @param body The request body * @return a {@link RequestInformation} */ @@ -193,7 +187,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a printer share. This method can be used to swap printers. For example, if a physical printer device breaks, an administrator can register a new printer device and update this printerShare to point to the new printer without requiring users to take any action. + * Update the navigation property shares in print * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -224,7 +218,7 @@ public PrinterShareItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a printer share. + * The list of printer shares registered in the tenant. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/print/shares/item/allowedgroups/AllowedGroupsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/print/shares/item/allowedgroups/AllowedGroupsRequestBuilder.java index 3cd92135929..6526ae025ab 100644 --- a/src/main/java/com/microsoft/graph/generated/print/shares/item/allowedgroups/AllowedGroupsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/print/shares/item/allowedgroups/AllowedGroupsRequestBuilder.java @@ -68,21 +68,19 @@ public AllowedGroupsRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/print/shares/{printerShare%2Did}/allowedGroups{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of groups that have been granted access to submit print jobs to the associated printerShare. + * The groups whose users have access to print using the printer. * @return a {@link GroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public GroupCollectionResponse get() { return get(null); } /** - * Retrieve a list of groups that have been granted access to submit print jobs to the associated printerShare. + * The groups whose users have access to print using the printer. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public GroupCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -92,7 +90,7 @@ public GroupCollectionResponse get(@jakarta.annotation.Nullable final java.util. return this.requestAdapter.send(requestInfo, errorMapping, GroupCollectionResponse::createFromDiscriminatorValue); } /** - * Retrieve a list of groups that have been granted access to submit print jobs to the associated printerShare. + * The groups whose users have access to print using the printer. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -100,7 +98,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of groups that have been granted access to submit print jobs to the associated printerShare. + * The groups whose users have access to print using the printer. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -122,7 +120,7 @@ public AllowedGroupsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new AllowedGroupsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of groups that have been granted access to submit print jobs to the associated printerShare. + * The groups whose users have access to print using the printer. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/print/shares/item/allowedgroups/item/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/print/shares/item/allowedgroups/item/ref/RefRequestBuilder.java index 7cda9329df2..36a9e0697a2 100644 --- a/src/main/java/com/microsoft/graph/generated/print/shares/item/allowedgroups/item/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/print/shares/item/allowedgroups/item/ref/RefRequestBuilder.java @@ -35,18 +35,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/print/shares/{printerShare%2Did}/allowedGroups/{group%2Did}/$ref", rawUrl); } /** - * Revoke the specified group's access to submit print jobs to the associated printerShare. + * Delete ref of navigation property allowedGroups for print * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Revoke the specified group's access to submit print jobs to the associated printerShare. + * Delete ref of navigation property allowedGroups for print * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -55,7 +53,7 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Revoke the specified group's access to submit print jobs to the associated printerShare. + * Delete ref of navigation property allowedGroups for print * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -63,7 +61,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Revoke the specified group's access to submit print jobs to the associated printerShare. + * Delete ref of navigation property allowedGroups for print * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/print/shares/item/allowedgroups/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/print/shares/item/allowedgroups/ref/RefRequestBuilder.java index b83894c6204..958adfc266c 100644 --- a/src/main/java/com/microsoft/graph/generated/print/shares/item/allowedgroups/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/print/shares/item/allowedgroups/ref/RefRequestBuilder.java @@ -38,18 +38,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/print/shares/{printerShare%2Did}/allowedGroups/$ref?@id={%40id}{&%24count,%24filter,%24orderby,%24search,%24skip,%24top}", rawUrl); } /** - * Revoke the specified group's access to submit print jobs to the associated printerShare. + * Delete ref of navigation property allowedGroups for print * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Revoke the specified group's access to submit print jobs to the associated printerShare. + * Delete ref of navigation property allowedGroups for print * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -58,21 +56,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a list of groups that have been granted access to submit print jobs to the associated printerShare. + * The groups whose users have access to print using the printer. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get() { return get(null); } /** - * Retrieve a list of groups that have been granted access to submit print jobs to the associated printerShare. + * The groups whose users have access to print using the printer. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -82,20 +78,18 @@ public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util return this.requestAdapter.send(requestInfo, errorMapping, StringCollectionResponse::createFromDiscriminatorValue); } /** - * Grant the specified group access to submit print jobs to the associated printerShare. + * Create new navigation property ref to allowedGroups for print * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body) { post(body, null); } /** - * Grant the specified group access to submit print jobs to the associated printerShare. + * Create new navigation property ref to allowedGroups for print * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { Objects.requireNonNull(body); @@ -105,7 +99,7 @@ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakart this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Revoke the specified group's access to submit print jobs to the associated printerShare. + * Delete ref of navigation property allowedGroups for print * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -113,7 +107,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Revoke the specified group's access to submit print jobs to the associated printerShare. + * Delete ref of navigation property allowedGroups for print * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a list of groups that have been granted access to submit print jobs to the associated printerShare. + * The groups whose users have access to print using the printer. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -133,7 +127,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of groups that have been granted access to submit print jobs to the associated printerShare. + * The groups whose users have access to print using the printer. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Grant the specified group access to submit print jobs to the associated printerShare. + * Create new navigation property ref to allowedGroups for print * @param body The request body * @return a {@link RequestInformation} */ @@ -154,7 +148,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Grant the specified group access to submit print jobs to the associated printerShare. + * Create new navigation property ref to allowedGroups for print * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -179,7 +173,7 @@ public RefRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl return new RefRequestBuilder(rawUrl, requestAdapter); } /** - * Revoke the specified group's access to submit print jobs to the associated printerShare. + * Delete ref of navigation property allowedGroups for print */ @jakarta.annotation.Generated("com.microsoft.kiota") public class DeleteQueryParameters implements QueryParameters { @@ -211,7 +205,7 @@ public class DeleteRequestConfiguration extends BaseRequestConfiguration { public DeleteQueryParameters queryParameters = new DeleteQueryParameters(); } /** - * Retrieve a list of groups that have been granted access to submit print jobs to the associated printerShare. + * The groups whose users have access to print using the printer. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/print/shares/item/allowedusers/AllowedUsersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/print/shares/item/allowedusers/AllowedUsersRequestBuilder.java index 53867bdec35..e4ed87e8be7 100644 --- a/src/main/java/com/microsoft/graph/generated/print/shares/item/allowedusers/AllowedUsersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/print/shares/item/allowedusers/AllowedUsersRequestBuilder.java @@ -68,21 +68,19 @@ public AllowedUsersRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/print/shares/{printerShare%2Did}/allowedUsers{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of users who have been granted access to submit print jobs to the associated printerShare. + * The users who have access to print using the printer. * @return a {@link UserCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserCollectionResponse get() { return get(null); } /** - * Retrieve a list of users who have been granted access to submit print jobs to the associated printerShare. + * The users who have access to print using the printer. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UserCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -92,7 +90,7 @@ public UserCollectionResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, UserCollectionResponse::createFromDiscriminatorValue); } /** - * Retrieve a list of users who have been granted access to submit print jobs to the associated printerShare. + * The users who have access to print using the printer. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -100,7 +98,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of users who have been granted access to submit print jobs to the associated printerShare. + * The users who have access to print using the printer. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -122,7 +120,7 @@ public AllowedUsersRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri return new AllowedUsersRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of users who have been granted access to submit print jobs to the associated printerShare. + * The users who have access to print using the printer. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/print/shares/item/allowedusers/item/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/print/shares/item/allowedusers/item/ref/RefRequestBuilder.java index 3ee209d1675..f6510e36d26 100644 --- a/src/main/java/com/microsoft/graph/generated/print/shares/item/allowedusers/item/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/print/shares/item/allowedusers/item/ref/RefRequestBuilder.java @@ -35,18 +35,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/print/shares/{printerShare%2Did}/allowedUsers/{user%2Did}/$ref", rawUrl); } /** - * Revoke the specified user's access to submit print jobs to the associated printerShare. + * Delete ref of navigation property allowedUsers for print * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Revoke the specified user's access to submit print jobs to the associated printerShare. + * Delete ref of navigation property allowedUsers for print * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -55,7 +53,7 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Revoke the specified user's access to submit print jobs to the associated printerShare. + * Delete ref of navigation property allowedUsers for print * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -63,7 +61,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Revoke the specified user's access to submit print jobs to the associated printerShare. + * Delete ref of navigation property allowedUsers for print * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/print/shares/item/allowedusers/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/print/shares/item/allowedusers/ref/RefRequestBuilder.java index 50f83b18539..5b55d45d791 100644 --- a/src/main/java/com/microsoft/graph/generated/print/shares/item/allowedusers/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/print/shares/item/allowedusers/ref/RefRequestBuilder.java @@ -38,18 +38,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/print/shares/{printerShare%2Did}/allowedUsers/$ref?@id={%40id}{&%24count,%24filter,%24orderby,%24search,%24skip,%24top}", rawUrl); } /** - * Revoke the specified user's access to submit print jobs to the associated printerShare. + * Delete ref of navigation property allowedUsers for print * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Revoke the specified user's access to submit print jobs to the associated printerShare. + * Delete ref of navigation property allowedUsers for print * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -58,21 +56,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a list of users who have been granted access to submit print jobs to the associated printerShare. + * The users who have access to print using the printer. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get() { return get(null); } /** - * Retrieve a list of users who have been granted access to submit print jobs to the associated printerShare. + * The users who have access to print using the printer. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -82,20 +78,18 @@ public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util return this.requestAdapter.send(requestInfo, errorMapping, StringCollectionResponse::createFromDiscriminatorValue); } /** - * Grant the specified user access to submit print jobs to the associated printerShare. + * Create new navigation property ref to allowedUsers for print * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body) { post(body, null); } /** - * Grant the specified user access to submit print jobs to the associated printerShare. + * Create new navigation property ref to allowedUsers for print * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { Objects.requireNonNull(body); @@ -105,7 +99,7 @@ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakart this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Revoke the specified user's access to submit print jobs to the associated printerShare. + * Delete ref of navigation property allowedUsers for print * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -113,7 +107,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Revoke the specified user's access to submit print jobs to the associated printerShare. + * Delete ref of navigation property allowedUsers for print * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a list of users who have been granted access to submit print jobs to the associated printerShare. + * The users who have access to print using the printer. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -133,7 +127,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of users who have been granted access to submit print jobs to the associated printerShare. + * The users who have access to print using the printer. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Grant the specified user access to submit print jobs to the associated printerShare. + * Create new navigation property ref to allowedUsers for print * @param body The request body * @return a {@link RequestInformation} */ @@ -154,7 +148,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Grant the specified user access to submit print jobs to the associated printerShare. + * Create new navigation property ref to allowedUsers for print * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -179,7 +173,7 @@ public RefRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl return new RefRequestBuilder(rawUrl, requestAdapter); } /** - * Revoke the specified user's access to submit print jobs to the associated printerShare. + * Delete ref of navigation property allowedUsers for print */ @jakarta.annotation.Generated("com.microsoft.kiota") public class DeleteQueryParameters implements QueryParameters { @@ -211,7 +205,7 @@ public class DeleteRequestConfiguration extends BaseRequestConfiguration { public DeleteQueryParameters queryParameters = new DeleteQueryParameters(); } /** - * Retrieve a list of users who have been granted access to submit print jobs to the associated printerShare. + * The users who have access to print using the printer. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/print/taskdefinitions/TaskDefinitionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/print/taskdefinitions/TaskDefinitionsRequestBuilder.java index ef21398efbd..b54b581218e 100644 --- a/src/main/java/com/microsoft/graph/generated/print/taskdefinitions/TaskDefinitionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/print/taskdefinitions/TaskDefinitionsRequestBuilder.java @@ -60,21 +60,19 @@ public TaskDefinitionsRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/print/taskDefinitions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of task definitions that the requesting app defined in the tenant. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * List of abstract definition for a task that can be triggered when various events occur within Universal Print. * @return a {@link PrintTaskDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintTaskDefinitionCollectionResponse get() { return get(null); } /** - * Retrieve a list of task definitions that the requesting app defined in the tenant. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * List of abstract definition for a task that can be triggered when various events occur within Universal Print. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrintTaskDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintTaskDefinitionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public PrintTaskDefinitionCollectionResponse get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, PrintTaskDefinitionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new task definition. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * Create new navigation property to taskDefinitions for print * @param body The request body * @return a {@link PrintTaskDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintTaskDefinition post(@jakarta.annotation.Nonnull final PrintTaskDefinition body) { return post(body, null); } /** - * Create a new task definition. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * Create new navigation property to taskDefinitions for print * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrintTaskDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintTaskDefinition post(@jakarta.annotation.Nonnull final PrintTaskDefinition body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public PrintTaskDefinition post(@jakarta.annotation.Nonnull final PrintTaskDefin return this.requestAdapter.send(requestInfo, errorMapping, PrintTaskDefinition::createFromDiscriminatorValue); } /** - * Retrieve a list of task definitions that the requesting app defined in the tenant. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * List of abstract definition for a task that can be triggered when various events occur within Universal Print. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of task definitions that the requesting app defined in the tenant. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * List of abstract definition for a task that can be triggered when various events occur within Universal Print. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new task definition. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * Create new navigation property to taskDefinitions for print * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new task definition. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * Create new navigation property to taskDefinitions for print * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public TaskDefinitionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final S return new TaskDefinitionsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of task definitions that the requesting app defined in the tenant. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * List of abstract definition for a task that can be triggered when various events occur within Universal Print. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/print/taskdefinitions/item/PrintTaskDefinitionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/print/taskdefinitions/item/PrintTaskDefinitionItemRequestBuilder.java index fe7f1f24100..c1a11d7cc3a 100644 --- a/src/main/java/com/microsoft/graph/generated/print/taskdefinitions/item/PrintTaskDefinitionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/print/taskdefinitions/item/PrintTaskDefinitionItemRequestBuilder.java @@ -46,18 +46,16 @@ public PrintTaskDefinitionItemRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/print/taskDefinitions/{printTaskDefinition%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a taskDefinition. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * Delete navigation property taskDefinitions for print * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a taskDefinition. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * Delete navigation property taskDefinitions for print * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get details about a task definition. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * List of abstract definition for a task that can be triggered when various events occur within Universal Print. * @return a {@link PrintTaskDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintTaskDefinition get() { return get(null); } /** - * Get details about a task definition. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * List of abstract definition for a task that can be triggered when various events occur within Universal Print. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrintTaskDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintTaskDefinition get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public PrintTaskDefinition get(@jakarta.annotation.Nullable final java.util.func return this.requestAdapter.send(requestInfo, errorMapping, PrintTaskDefinition::createFromDiscriminatorValue); } /** - * Update a task definition. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * Update the navigation property taskDefinitions in print * @param body The request body * @return a {@link PrintTaskDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintTaskDefinition patch(@jakarta.annotation.Nonnull final PrintTaskDefinition body) { return patch(body, null); } /** - * Update a task definition. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * Update the navigation property taskDefinitions in print * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrintTaskDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintTaskDefinition patch(@jakarta.annotation.Nonnull final PrintTaskDefinition body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public PrintTaskDefinition patch(@jakarta.annotation.Nonnull final PrintTaskDefi return this.requestAdapter.send(requestInfo, errorMapping, PrintTaskDefinition::createFromDiscriminatorValue); } /** - * Delete a taskDefinition. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * Delete navigation property taskDefinitions for print * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a taskDefinition. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * Delete navigation property taskDefinitions for print * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get details about a task definition. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * List of abstract definition for a task that can be triggered when various events occur within Universal Print. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get details about a task definition. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * List of abstract definition for a task that can be triggered when various events occur within Universal Print. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update a task definition. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * Update the navigation property taskDefinitions in print * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update a task definition. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * Update the navigation property taskDefinitions in print * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public PrintTaskDefinitionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get details about a task definition. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * List of abstract definition for a task that can be triggered when various events occur within Universal Print. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/print/taskdefinitions/item/tasks/TasksRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/print/taskdefinitions/item/tasks/TasksRequestBuilder.java index 830d9e74de8..5c49f7bce0e 100644 --- a/src/main/java/com/microsoft/graph/generated/print/taskdefinitions/item/tasks/TasksRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/print/taskdefinitions/item/tasks/TasksRequestBuilder.java @@ -60,21 +60,19 @@ public TasksRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/print/taskDefinitions/{printTaskDefinition%2Did}/tasks{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of tasks associated with a task definition. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * A list of tasks that have been created based on this definition. The list includes currently running tasks and recently completed tasks. Read-only. * @return a {@link PrintTaskCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintTaskCollectionResponse get() { return get(null); } /** - * Retrieve a list of tasks associated with a task definition. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * A list of tasks that have been created based on this definition. The list includes currently running tasks and recently completed tasks. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrintTaskCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintTaskCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public PrintTask post(@jakarta.annotation.Nonnull final PrintTask body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, PrintTask::createFromDiscriminatorValue); } /** - * Retrieve a list of tasks associated with a task definition. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * A list of tasks that have been created based on this definition. The list includes currently running tasks and recently completed tasks. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of tasks associated with a task definition. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * A list of tasks that have been created based on this definition. The list includes currently running tasks and recently completed tasks. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public TasksRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new TasksRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of tasks associated with a task definition. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * A list of tasks that have been created based on this definition. The list includes currently running tasks and recently completed tasks. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/print/taskdefinitions/item/tasks/item/PrintTaskItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/print/taskdefinitions/item/tasks/item/PrintTaskItemRequestBuilder.java index 815a08b0c65..ef09ecd076c 100644 --- a/src/main/java/com/microsoft/graph/generated/print/taskdefinitions/item/tasks/item/PrintTaskItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/print/taskdefinitions/item/tasks/item/PrintTaskItemRequestBuilder.java @@ -73,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get details about a print task. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * A list of tasks that have been created based on this definition. The list includes currently running tasks and recently completed tasks. Read-only. * @return a {@link PrintTask} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintTask get() { return get(null); } /** - * Get details about a print task. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * A list of tasks that have been created based on this definition. The list includes currently running tasks and recently completed tasks. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrintTask} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintTask get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -97,23 +95,21 @@ public PrintTask get(@jakarta.annotation.Nullable final java.util.function.Consu return this.requestAdapter.send(requestInfo, errorMapping, PrintTask::createFromDiscriminatorValue); } /** - * Update a print task. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * Update the navigation property tasks in print * @param body The request body * @return a {@link PrintTask} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintTask patch(@jakarta.annotation.Nonnull final PrintTask body) { return patch(body, null); } /** - * Update a print task. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * Update the navigation property tasks in print * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrintTask} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintTask patch(@jakarta.annotation.Nonnull final PrintTask body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -144,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get details about a print task. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * A list of tasks that have been created based on this definition. The list includes currently running tasks and recently completed tasks. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -152,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get details about a print task. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * A list of tasks that have been created based on this definition. The list includes currently running tasks and recently completed tasks. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -164,7 +160,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update a print task. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * Update the navigation property tasks in print * @param body The request body * @return a {@link RequestInformation} */ @@ -173,7 +169,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update a print task. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * Update the navigation property tasks in print * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -204,7 +200,7 @@ public PrintTaskItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get details about a print task. For details about how to use this API to add pull printing support to Universal Print, see Extending Universal Print to support pull printing. + * A list of tasks that have been created based on this definition. The list includes currently running tasks and recently completed tasks. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/SubjectRightsRequestsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/SubjectRightsRequestsRequestBuilder.java index 4003c19e2a2..fc3e165c568 100644 --- a/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/SubjectRightsRequestsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/SubjectRightsRequestsRequestBuilder.java @@ -66,12 +66,11 @@ public SubjectRightsRequestsRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/privacy/subjectRightsRequests{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of subjectRightsRequest objects and their properties. + * Get subjectRightsRequests from privacy * @return a {@link SubjectRightsRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code * @deprecated * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate - * @see Find more info here */ @jakarta.annotation.Nullable @Deprecated @@ -79,13 +78,12 @@ public SubjectRightsRequestCollectionResponse get() { return get(null); } /** - * Get a list of subjectRightsRequest objects and their properties. + * Get subjectRightsRequests from privacy * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SubjectRightsRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code * @deprecated * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate - * @see Find more info here */ @jakarta.annotation.Nullable @Deprecated @@ -96,13 +94,12 @@ public SubjectRightsRequestCollectionResponse get(@jakarta.annotation.Nullable f return this.requestAdapter.send(requestInfo, errorMapping, SubjectRightsRequestCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new subjectRightsRequest object. + * Create new navigation property to subjectRightsRequests for privacy * @param body The request body * @return a {@link SubjectRightsRequest} * @throws ODataError When receiving a 4XX or 5XX status code * @deprecated * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate - * @see Find more info here */ @jakarta.annotation.Nullable @Deprecated @@ -110,14 +107,13 @@ public SubjectRightsRequest post(@jakarta.annotation.Nonnull final SubjectRights return post(body, null); } /** - * Create a new subjectRightsRequest object. + * Create new navigation property to subjectRightsRequests for privacy * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SubjectRightsRequest} * @throws ODataError When receiving a 4XX or 5XX status code * @deprecated * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate - * @see Find more info here */ @jakarta.annotation.Nullable @Deprecated @@ -129,7 +125,7 @@ public SubjectRightsRequest post(@jakarta.annotation.Nonnull final SubjectRights return this.requestAdapter.send(requestInfo, errorMapping, SubjectRightsRequest::createFromDiscriminatorValue); } /** - * Get a list of subjectRightsRequest objects and their properties. + * Get subjectRightsRequests from privacy * @return a {@link RequestInformation} * @deprecated * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of subjectRightsRequest objects and their properties. + * Get subjectRightsRequests from privacy * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} * @deprecated @@ -155,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new subjectRightsRequest object. + * Create new navigation property to subjectRightsRequests for privacy * @param body The request body * @return a {@link RequestInformation} * @deprecated @@ -167,7 +163,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new subjectRightsRequest object. + * Create new navigation property to subjectRightsRequests for privacy * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -198,7 +194,7 @@ public SubjectRightsRequestsRequestBuilder withUrl(@jakarta.annotation.Nonnull f return new SubjectRightsRequestsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of subjectRightsRequest objects and their properties. + * Get subjectRightsRequests from privacy */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/SubjectRightsRequestItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/SubjectRightsRequestItemRequestBuilder.java index fcdf6755d77..0950656cefd 100644 --- a/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/SubjectRightsRequestItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/SubjectRightsRequestItemRequestBuilder.java @@ -133,12 +133,11 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a subjectRightsRequest object. + * Get subjectRightsRequests from privacy * @return a {@link SubjectRightsRequest} * @throws ODataError When receiving a 4XX or 5XX status code * @deprecated * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate - * @see Find more info here */ @jakarta.annotation.Nullable @Deprecated @@ -146,13 +145,12 @@ public SubjectRightsRequest get() { return get(null); } /** - * Read the properties and relationships of a subjectRightsRequest object. + * Get subjectRightsRequests from privacy * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SubjectRightsRequest} * @throws ODataError When receiving a 4XX or 5XX status code * @deprecated * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate - * @see Find more info here */ @jakarta.annotation.Nullable @Deprecated @@ -163,13 +161,12 @@ public SubjectRightsRequest get(@jakarta.annotation.Nullable final java.util.fun return this.requestAdapter.send(requestInfo, errorMapping, SubjectRightsRequest::createFromDiscriminatorValue); } /** - * Update the properties of a subjectRightsRequest object. + * Update the navigation property subjectRightsRequests in privacy * @param body The request body * @return a {@link SubjectRightsRequest} * @throws ODataError When receiving a 4XX or 5XX status code * @deprecated * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate - * @see Find more info here */ @jakarta.annotation.Nullable @Deprecated @@ -177,14 +174,13 @@ public SubjectRightsRequest patch(@jakarta.annotation.Nonnull final SubjectRight return patch(body, null); } /** - * Update the properties of a subjectRightsRequest object. + * Update the navigation property subjectRightsRequests in privacy * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SubjectRightsRequest} * @throws ODataError When receiving a 4XX or 5XX status code * @deprecated * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate - * @see Find more info here */ @jakarta.annotation.Nullable @Deprecated @@ -222,7 +218,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a subjectRightsRequest object. + * Get subjectRightsRequests from privacy * @return a {@link RequestInformation} * @deprecated * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate @@ -233,7 +229,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a subjectRightsRequest object. + * Get subjectRightsRequests from privacy * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} * @deprecated @@ -248,7 +244,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a subjectRightsRequest object. + * Update the navigation property subjectRightsRequests in privacy * @param body The request body * @return a {@link RequestInformation} * @deprecated @@ -260,7 +256,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a subjectRightsRequest object. + * Update the navigation property subjectRightsRequests in privacy * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -297,7 +293,7 @@ public SubjectRightsRequestItemRequestBuilder withUrl(@jakarta.annotation.Nonnul public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a subjectRightsRequest object. + * Get subjectRightsRequests from privacy */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/getfinalattachment/GetFinalAttachmentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/getfinalattachment/GetFinalAttachmentRequestBuilder.java index 362bcf7e4e0..a88c1abe168 100644 --- a/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/getfinalattachment/GetFinalAttachmentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/getfinalattachment/GetFinalAttachmentRequestBuilder.java @@ -36,11 +36,12 @@ public GetFinalAttachmentRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/privacy/subjectRightsRequests/{subjectRightsRequest%2Did}/getFinalAttachment()", rawUrl); } /** - * Invoke function getFinalAttachment + * Get the final attachment for a subject rights request. The attachment is a zip file that contains all the files that were included by the privacy administrator. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code * @deprecated * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate + * @see Find more info here */ @jakarta.annotation.Nullable @Deprecated @@ -48,12 +49,13 @@ public InputStream get() { return get(null); } /** - * Invoke function getFinalAttachment + * Get the final attachment for a subject rights request. The attachment is a zip file that contains all the files that were included by the privacy administrator. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code * @deprecated * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate + * @see Find more info here */ @jakarta.annotation.Nullable @Deprecated @@ -64,7 +66,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getFinalAttachment + * Get the final attachment for a subject rights request. The attachment is a zip file that contains all the files that were included by the privacy administrator. * @return a {@link RequestInformation} * @deprecated * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate @@ -75,7 +77,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getFinalAttachment + * Get the final attachment for a subject rights request. The attachment is a zip file that contains all the files that were included by the privacy administrator. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} * @deprecated diff --git a/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/getfinalreport/GetFinalReportRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/getfinalreport/GetFinalReportRequestBuilder.java index 3ab71348242..b747a48718c 100644 --- a/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/getfinalreport/GetFinalReportRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/getfinalreport/GetFinalReportRequestBuilder.java @@ -36,11 +36,12 @@ public GetFinalReportRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/privacy/subjectRightsRequests/{subjectRightsRequest%2Did}/getFinalReport()", rawUrl); } /** - * Invoke function getFinalReport + * Get the final report for a subject rights request. The report is a text file that contains information about the files that were included by the privacy administrator. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code * @deprecated * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate + * @see Find more info here */ @jakarta.annotation.Nullable @Deprecated @@ -48,12 +49,13 @@ public InputStream get() { return get(null); } /** - * Invoke function getFinalReport + * Get the final report for a subject rights request. The report is a text file that contains information about the files that were included by the privacy administrator. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code * @deprecated * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate + * @see Find more info here */ @jakarta.annotation.Nullable @Deprecated @@ -64,7 +66,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getFinalReport + * Get the final report for a subject rights request. The report is a text file that contains information about the files that were included by the privacy administrator. * @return a {@link RequestInformation} * @deprecated * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate @@ -75,7 +77,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getFinalReport + * Get the final report for a subject rights request. The report is a text file that contains information about the files that were included by the privacy administrator. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} * @deprecated diff --git a/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/notes/NotesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/notes/NotesRequestBuilder.java index ba5c2064ad1..d7f290db907 100644 --- a/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/notes/NotesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/privacy/subjectrightsrequests/item/notes/NotesRequestBuilder.java @@ -66,12 +66,11 @@ public NotesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/privacy/subjectRightsRequests/{subjectRightsRequest%2Did}/notes{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of authored notes assoicated with a subject rights request. + * List of notes associated with the request. * @return a {@link AuthoredNoteCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code * @deprecated * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate - * @see Find more info here */ @jakarta.annotation.Nullable @Deprecated @@ -79,13 +78,12 @@ public AuthoredNoteCollectionResponse get() { return get(null); } /** - * Get the list of authored notes assoicated with a subject rights request. + * List of notes associated with the request. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AuthoredNoteCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code * @deprecated * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate - * @see Find more info here */ @jakarta.annotation.Nullable @Deprecated @@ -96,13 +94,12 @@ public AuthoredNoteCollectionResponse get(@jakarta.annotation.Nullable final jav return this.requestAdapter.send(requestInfo, errorMapping, AuthoredNoteCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new authoredNote object. + * Create new navigation property to notes for privacy * @param body The request body * @return a {@link AuthoredNote} * @throws ODataError When receiving a 4XX or 5XX status code * @deprecated * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate - * @see Find more info here */ @jakarta.annotation.Nullable @Deprecated @@ -110,14 +107,13 @@ public AuthoredNote post(@jakarta.annotation.Nonnull final AuthoredNote body) { return post(body, null); } /** - * Create a new authoredNote object. + * Create new navigation property to notes for privacy * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AuthoredNote} * @throws ODataError When receiving a 4XX or 5XX status code * @deprecated * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate - * @see Find more info here */ @jakarta.annotation.Nullable @Deprecated @@ -129,7 +125,7 @@ public AuthoredNote post(@jakarta.annotation.Nonnull final AuthoredNote body, @j return this.requestAdapter.send(requestInfo, errorMapping, AuthoredNote::createFromDiscriminatorValue); } /** - * Get the list of authored notes assoicated with a subject rights request. + * List of notes associated with the request. * @return a {@link RequestInformation} * @deprecated * The subject rights request API under Privacy is deprecated and will stop working on March 22, 2025. Please use the new API under Security. as of 2022-02/PrivacyDeprecate @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of authored notes assoicated with a subject rights request. + * List of notes associated with the request. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} * @deprecated @@ -155,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new authoredNote object. + * Create new navigation property to notes for privacy * @param body The request body * @return a {@link RequestInformation} * @deprecated @@ -167,7 +163,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new authoredNote object. + * Create new navigation property to notes for privacy * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -198,7 +194,7 @@ public NotesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new NotesRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of authored notes assoicated with a subject rights request. + * List of notes associated with the request. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/reports/authenticationmethods/userregistrationdetails/UserRegistrationDetailsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/authenticationmethods/userregistrationdetails/UserRegistrationDetailsRequestBuilder.java index 9ea30155bff..4cd4e3842cb 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/authenticationmethods/userregistrationdetails/UserRegistrationDetailsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/authenticationmethods/userregistrationdetails/UserRegistrationDetailsRequestBuilder.java @@ -60,21 +60,19 @@ public UserRegistrationDetailsRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/reports/authenticationMethods/userRegistrationDetails{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the authentication methods registered for a user as defined in the userRegistrationDetails object. + * Represents the state of a user's authentication methods, including which methods are registered and which features the user is registered and capable of (such as multifactor authentication, self-service password reset, and passwordless authentication). * @return a {@link UserRegistrationDetailsCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserRegistrationDetailsCollectionResponse get() { return get(null); } /** - * Get a list of the authentication methods registered for a user as defined in the userRegistrationDetails object. + * Represents the state of a user's authentication methods, including which methods are registered and which features the user is registered and capable of (such as multifactor authentication, self-service password reset, and passwordless authentication). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UserRegistrationDetailsCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserRegistrationDetailsCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public UserRegistrationDetails post(@jakarta.annotation.Nonnull final UserRegist return this.requestAdapter.send(requestInfo, errorMapping, UserRegistrationDetails::createFromDiscriminatorValue); } /** - * Get a list of the authentication methods registered for a user as defined in the userRegistrationDetails object. + * Represents the state of a user's authentication methods, including which methods are registered and which features the user is registered and capable of (such as multifactor authentication, self-service password reset, and passwordless authentication). * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the authentication methods registered for a user as defined in the userRegistrationDetails object. + * Represents the state of a user's authentication methods, including which methods are registered and which features the user is registered and capable of (such as multifactor authentication, self-service password reset, and passwordless authentication). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public UserRegistrationDetailsRequestBuilder withUrl(@jakarta.annotation.Nonnull return new UserRegistrationDetailsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the authentication methods registered for a user as defined in the userRegistrationDetails object. + * Represents the state of a user's authentication methods, including which methods are registered and which features the user is registered and capable of (such as multifactor authentication, self-service password reset, and passwordless authentication). */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/reports/authenticationmethods/userregistrationdetails/item/UserRegistrationDetailsItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/authenticationmethods/userregistrationdetails/item/UserRegistrationDetailsItemRequestBuilder.java index 563705aca91..09f4bebabb0 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/authenticationmethods/userregistrationdetails/item/UserRegistrationDetailsItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/authenticationmethods/userregistrationdetails/item/UserRegistrationDetailsItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a userRegistrationDetails object. + * Represents the state of a user's authentication methods, including which methods are registered and which features the user is registered and capable of (such as multifactor authentication, self-service password reset, and passwordless authentication). * @return a {@link UserRegistrationDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserRegistrationDetails get() { return get(null); } /** - * Read the properties and relationships of a userRegistrationDetails object. + * Represents the state of a user's authentication methods, including which methods are registered and which features the user is registered and capable of (such as multifactor authentication, self-service password reset, and passwordless authentication). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UserRegistrationDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserRegistrationDetails get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a userRegistrationDetails object. + * Represents the state of a user's authentication methods, including which methods are registered and which features the user is registered and capable of (such as multifactor authentication, self-service password reset, and passwordless authentication). * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a userRegistrationDetails object. + * Represents the state of a user's authentication methods, including which methods are registered and which features the user is registered and capable of (such as multifactor authentication, self-service password reset, and passwordless authentication). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public UserRegistrationDetailsItemRequestBuilder withUrl(@jakarta.annotation.Non public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a userRegistrationDetails object. + * Represents the state of a user's authentication methods, including which methods are registered and which features the user is registered and capable of (such as multifactor authentication, self-service password reset, and passwordless authentication). */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/reports/authenticationmethods/usersregisteredbyfeature/UsersRegisteredByFeatureRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/authenticationmethods/usersregisteredbyfeature/UsersRegisteredByFeatureRequestBuilder.java index e070945c300..055d794484e 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/authenticationmethods/usersregisteredbyfeature/UsersRegisteredByFeatureRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/authenticationmethods/usersregisteredbyfeature/UsersRegisteredByFeatureRequestBuilder.java @@ -36,19 +36,21 @@ public UsersRegisteredByFeatureRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/reports/authenticationMethods/usersRegisteredByFeature()", rawUrl); } /** - * Invoke function usersRegisteredByFeature + * Get the number of users capable of multi-factor authentication, self-service password reset, and passwordless authentication. * @return a {@link UserRegistrationFeatureSummary} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public UserRegistrationFeatureSummary get() { return get(null); } /** - * Invoke function usersRegisteredByFeature + * Get the number of users capable of multi-factor authentication, self-service password reset, and passwordless authentication. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UserRegistrationFeatureSummary} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public UserRegistrationFeatureSummary get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public UserRegistrationFeatureSummary get(@jakarta.annotation.Nullable final jav return this.requestAdapter.send(requestInfo, errorMapping, UserRegistrationFeatureSummary::createFromDiscriminatorValue); } /** - * Invoke function usersRegisteredByFeature + * Get the number of users capable of multi-factor authentication, self-service password reset, and passwordless authentication. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function usersRegisteredByFeature + * Get the number of users capable of multi-factor authentication, self-service password reset, and passwordless authentication. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/authenticationmethods/usersregisteredbymethod/UsersRegisteredByMethodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/authenticationmethods/usersregisteredbymethod/UsersRegisteredByMethodRequestBuilder.java index 8451918e126..190e18b3636 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/authenticationmethods/usersregisteredbymethod/UsersRegisteredByMethodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/authenticationmethods/usersregisteredbymethod/UsersRegisteredByMethodRequestBuilder.java @@ -36,19 +36,21 @@ public UsersRegisteredByMethodRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/reports/authenticationMethods/usersRegisteredByMethod()", rawUrl); } /** - * Invoke function usersRegisteredByMethod + * Get the number of users registered for each authentication method. * @return a {@link UserRegistrationMethodSummary} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public UserRegistrationMethodSummary get() { return get(null); } /** - * Invoke function usersRegisteredByMethod + * Get the number of users registered for each authentication method. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UserRegistrationMethodSummary} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public UserRegistrationMethodSummary get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public UserRegistrationMethodSummary get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, UserRegistrationMethodSummary::createFromDiscriminatorValue); } /** - * Invoke function usersRegisteredByMethod + * Get the number of users registered for each authentication method. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function usersRegisteredByMethod + * Get the number of users registered for each authentication method. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/dailyprintusagebyprinter/DailyPrintUsageByPrinterRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/dailyprintusagebyprinter/DailyPrintUsageByPrinterRequestBuilder.java index fd556c7f132..f84f3b17da6 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/dailyprintusagebyprinter/DailyPrintUsageByPrinterRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/dailyprintusagebyprinter/DailyPrintUsageByPrinterRequestBuilder.java @@ -63,7 +63,6 @@ public DailyPrintUsageByPrinterRequestBuilder(@jakarta.annotation.Nonnull final * Retrieve a list of daily print usage summaries, grouped by printer. * @return a {@link PrintUsageByPrinterCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintUsageByPrinterCollectionResponse get() { @@ -74,7 +73,6 @@ public PrintUsageByPrinterCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrintUsageByPrinterCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintUsageByPrinterCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/reports/dailyprintusagebyprinter/item/PrintUsageByPrinterItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/dailyprintusagebyprinter/item/PrintUsageByPrinterItemRequestBuilder.java index fa5179ca9a9..9f5d109b155 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/dailyprintusagebyprinter/item/PrintUsageByPrinterItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/dailyprintusagebyprinter/item/PrintUsageByPrinterItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a usage summary for a printer for a particular time period. For descriptions of each of the endpoints, see printUsageByPrinter. + * Retrieve a list of daily print usage summaries, grouped by printer. * @return a {@link PrintUsageByPrinter} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintUsageByPrinter get() { return get(null); } /** - * Retrieve a usage summary for a printer for a particular time period. For descriptions of each of the endpoints, see printUsageByPrinter. + * Retrieve a list of daily print usage summaries, grouped by printer. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrintUsageByPrinter} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintUsageByPrinter get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a usage summary for a printer for a particular time period. For descriptions of each of the endpoints, see printUsageByPrinter. + * Retrieve a list of daily print usage summaries, grouped by printer. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a usage summary for a printer for a particular time period. For descriptions of each of the endpoints, see printUsageByPrinter. + * Retrieve a list of daily print usage summaries, grouped by printer. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public PrintUsageByPrinterItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve a usage summary for a printer for a particular time period. For descriptions of each of the endpoints, see printUsageByPrinter. + * Retrieve a list of daily print usage summaries, grouped by printer. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/reports/dailyprintusagebyuser/DailyPrintUsageByUserRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/dailyprintusagebyuser/DailyPrintUsageByUserRequestBuilder.java index 0971b836064..fc0716c5195 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/dailyprintusagebyuser/DailyPrintUsageByUserRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/dailyprintusagebyuser/DailyPrintUsageByUserRequestBuilder.java @@ -63,7 +63,6 @@ public DailyPrintUsageByUserRequestBuilder(@jakarta.annotation.Nonnull final Str * Retrieve a list of daily print usage summaries, grouped by user. * @return a {@link PrintUsageByUserCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintUsageByUserCollectionResponse get() { @@ -74,7 +73,6 @@ public PrintUsageByUserCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrintUsageByUserCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintUsageByUserCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/reports/dailyprintusagebyuser/item/PrintUsageByUserItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/dailyprintusagebyuser/item/PrintUsageByUserItemRequestBuilder.java index 1586c513224..ec31b2b8ddd 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/dailyprintusagebyuser/item/PrintUsageByUserItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/dailyprintusagebyuser/item/PrintUsageByUserItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a user's usage summary for a particular time period. For descriptions of each endpoint, see printUsageByUser. + * Retrieve a list of daily print usage summaries, grouped by user. * @return a {@link PrintUsageByUser} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintUsageByUser get() { return get(null); } /** - * Retrieve a user's usage summary for a particular time period. For descriptions of each endpoint, see printUsageByUser. + * Retrieve a list of daily print usage summaries, grouped by user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrintUsageByUser} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintUsageByUser get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a user's usage summary for a particular time period. For descriptions of each endpoint, see printUsageByUser. + * Retrieve a list of daily print usage summaries, grouped by user. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a user's usage summary for a particular time period. For descriptions of each endpoint, see printUsageByUser. + * Retrieve a list of daily print usage summaries, grouped by user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public PrintUsageByUserItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fi public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve a user's usage summary for a particular time period. For descriptions of each endpoint, see printUsageByUser. + * Retrieve a list of daily print usage summaries, grouped by user. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/reports/deviceconfigurationdeviceactivity/DeviceConfigurationDeviceActivityRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/deviceconfigurationdeviceactivity/DeviceConfigurationDeviceActivityRequestBuilder.java index 06c059ff0a8..552b060c0ee 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/deviceconfigurationdeviceactivity/DeviceConfigurationDeviceActivityRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/deviceconfigurationdeviceactivity/DeviceConfigurationDeviceActivityRequestBuilder.java @@ -39,6 +39,7 @@ public DeviceConfigurationDeviceActivityRequestBuilder(@jakarta.annotation.Nonnu * Metadata for the device configuration device activity report * @return a {@link Report} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public Report get() { @@ -49,6 +50,7 @@ public Report get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Report} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public Report get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/reports/deviceconfigurationuseractivity/DeviceConfigurationUserActivityRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/deviceconfigurationuseractivity/DeviceConfigurationUserActivityRequestBuilder.java index 141749e3a6b..798508d62e9 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/deviceconfigurationuseractivity/DeviceConfigurationUserActivityRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/deviceconfigurationuseractivity/DeviceConfigurationUserActivityRequestBuilder.java @@ -39,6 +39,7 @@ public DeviceConfigurationUserActivityRequestBuilder(@jakarta.annotation.Nonnull * Metadata for the device configuration user activity report * @return a {@link Report} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public Report get() { @@ -49,6 +50,7 @@ public Report get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Report} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public Report get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/reports/getemailactivitycountswithperiod/GetEmailActivityCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getemailactivitycountswithperiod/GetEmailActivityCountsWithPeriodRequestBuilder.java index e829c36a803..7053d0f7c98 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getemailactivitycountswithperiod/GetEmailActivityCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getemailactivitycountswithperiod/GetEmailActivityCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetEmailActivityCountsWithPeriodRequestBuilder(@jakarta.annotation.Nonnul super(requestAdapter, "{+baseurl}/reports/getEmailActivityCounts(period='{period}')", rawUrl); } /** - * Invoke function getEmailActivityCounts + * Enables you to understand the trends of email activity (like how many were sent, read, and received) in your organization. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getEmailActivityCounts + * Enables you to understand the trends of email activity (like how many were sent, read, and received) in your organization. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getEmailActivityCounts + * Enables you to understand the trends of email activity (like how many were sent, read, and received) in your organization. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getEmailActivityCounts + * Enables you to understand the trends of email activity (like how many were sent, read, and received) in your organization. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getemailactivityusercountswithperiod/GetEmailActivityUserCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getemailactivityusercountswithperiod/GetEmailActivityUserCountsWithPeriodRequestBuilder.java index cdfe006c061..4acf8f37752 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getemailactivityusercountswithperiod/GetEmailActivityUserCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getemailactivityusercountswithperiod/GetEmailActivityUserCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetEmailActivityUserCountsWithPeriodRequestBuilder(@jakarta.annotation.No super(requestAdapter, "{+baseurl}/reports/getEmailActivityUserCounts(period='{period}')", rawUrl); } /** - * Invoke function getEmailActivityUserCounts + * Enables you to understand trends on the number of unique users who are performing email activities like send, read, and receive. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getEmailActivityUserCounts + * Enables you to understand trends on the number of unique users who are performing email activities like send, read, and receive. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getEmailActivityUserCounts + * Enables you to understand trends on the number of unique users who are performing email activities like send, read, and receive. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getEmailActivityUserCounts + * Enables you to understand trends on the number of unique users who are performing email activities like send, read, and receive. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getemailappusageappsusercountswithperiod/GetEmailAppUsageAppsUserCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getemailappusageappsusercountswithperiod/GetEmailAppUsageAppsUserCountsWithPeriodRequestBuilder.java index 5ea63dac5ce..adedb84b612 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getemailappusageappsusercountswithperiod/GetEmailAppUsageAppsUserCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getemailappusageappsusercountswithperiod/GetEmailAppUsageAppsUserCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetEmailAppUsageAppsUserCountsWithPeriodRequestBuilder(@jakarta.annotatio super(requestAdapter, "{+baseurl}/reports/getEmailAppUsageAppsUserCounts(period='{period}')", rawUrl); } /** - * Invoke function getEmailAppUsageAppsUserCounts + * Get the count of unique users per email app. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getEmailAppUsageAppsUserCounts + * Get the count of unique users per email app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getEmailAppUsageAppsUserCounts + * Get the count of unique users per email app. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getEmailAppUsageAppsUserCounts + * Get the count of unique users per email app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getemailappusageusercountswithperiod/GetEmailAppUsageUserCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getemailappusageusercountswithperiod/GetEmailAppUsageUserCountsWithPeriodRequestBuilder.java index 10244523cda..b32ad3df32b 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getemailappusageusercountswithperiod/GetEmailAppUsageUserCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getemailappusageusercountswithperiod/GetEmailAppUsageUserCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetEmailAppUsageUserCountsWithPeriodRequestBuilder(@jakarta.annotation.No super(requestAdapter, "{+baseurl}/reports/getEmailAppUsageUserCounts(period='{period}')", rawUrl); } /** - * Invoke function getEmailAppUsageUserCounts + * Get the count of unique users that connected to Exchange Online using any email app. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getEmailAppUsageUserCounts + * Get the count of unique users that connected to Exchange Online using any email app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getEmailAppUsageUserCounts + * Get the count of unique users that connected to Exchange Online using any email app. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getEmailAppUsageUserCounts + * Get the count of unique users that connected to Exchange Online using any email app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getemailappusageversionsusercountswithperiod/GetEmailAppUsageVersionsUserCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getemailappusageversionsusercountswithperiod/GetEmailAppUsageVersionsUserCountsWithPeriodRequestBuilder.java index dcf784585e3..e13e014e637 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getemailappusageversionsusercountswithperiod/GetEmailAppUsageVersionsUserCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getemailappusageversionsusercountswithperiod/GetEmailAppUsageVersionsUserCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetEmailAppUsageVersionsUserCountsWithPeriodRequestBuilder(@jakarta.annot super(requestAdapter, "{+baseurl}/reports/getEmailAppUsageVersionsUserCounts(period='{period}')", rawUrl); } /** - * Invoke function getEmailAppUsageVersionsUserCounts + * Get the count of unique users by Outlook desktop version. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getEmailAppUsageVersionsUserCounts + * Get the count of unique users by Outlook desktop version. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getEmailAppUsageVersionsUserCounts + * Get the count of unique users by Outlook desktop version. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getEmailAppUsageVersionsUserCounts + * Get the count of unique users by Outlook desktop version. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getgrouparchivedprintjobswithgroupidwithstartdatetimewithenddatetime/GetGroupArchivedPrintJobsWithGroupIdWithStartDateTimeWithEndDateTimeRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getgrouparchivedprintjobswithgroupidwithstartdatetimewithenddatetime/GetGroupArchivedPrintJobsWithGroupIdWithStartDateTimeWithEndDateTimeRequestBuilder.java index d1ebbbb8339..50be805ae10 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getgrouparchivedprintjobswithgroupidwithstartdatetimewithenddatetime/GetGroupArchivedPrintJobsWithGroupIdWithStartDateTimeWithEndDateTimeRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getgrouparchivedprintjobswithgroupidwithstartdatetimewithenddatetime/GetGroupArchivedPrintJobsWithGroupIdWithStartDateTimeWithEndDateTimeRequestBuilder.java @@ -43,19 +43,21 @@ public GetGroupArchivedPrintJobsWithGroupIdWithStartDateTimeWithEndDateTimeReque super(requestAdapter, "{+baseurl}/reports/getGroupArchivedPrintJobs(groupId='{groupId}',startDateTime={startDateTime},endDateTime={endDateTime}){?%24count,%24filter,%24search,%24skip,%24top}", rawUrl); } /** - * Invoke function getGroupArchivedPrintJobs + * Get a list of archived print jobs for a particular group. * @return a {@link GetGroupArchivedPrintJobsWithGroupIdWithStartDateTimeWithEndDateTimeGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetGroupArchivedPrintJobsWithGroupIdWithStartDateTimeWithEndDateTimeGetResponse get() { return get(null); } /** - * Invoke function getGroupArchivedPrintJobs + * Get a list of archived print jobs for a particular group. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GetGroupArchivedPrintJobsWithGroupIdWithStartDateTimeWithEndDateTimeGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetGroupArchivedPrintJobsWithGroupIdWithStartDateTimeWithEndDateTimeGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -65,7 +67,7 @@ public GetGroupArchivedPrintJobsWithGroupIdWithStartDateTimeWithEndDateTimeGetRe return this.requestAdapter.send(requestInfo, errorMapping, GetGroupArchivedPrintJobsWithGroupIdWithStartDateTimeWithEndDateTimeGetResponse::createFromDiscriminatorValue); } /** - * Invoke function getGroupArchivedPrintJobs + * Get a list of archived print jobs for a particular group. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -73,7 +75,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getGroupArchivedPrintJobs + * Get a list of archived print jobs for a particular group. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -95,7 +97,7 @@ public GetGroupArchivedPrintJobsWithGroupIdWithStartDateTimeWithEndDateTimeReque return new GetGroupArchivedPrintJobsWithGroupIdWithStartDateTimeWithEndDateTimeRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function getGroupArchivedPrintJobs + * Get a list of archived print jobs for a particular group. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/reports/getm365appplatformusercountswithperiod/GetM365AppPlatformUserCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getm365appplatformusercountswithperiod/GetM365AppPlatformUserCountsWithPeriodRequestBuilder.java index 72952ecf632..9b6ee043c27 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getm365appplatformusercountswithperiod/GetM365AppPlatformUserCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getm365appplatformusercountswithperiod/GetM365AppPlatformUserCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetM365AppPlatformUserCountsWithPeriodRequestBuilder(@jakarta.annotation. super(requestAdapter, "{+baseurl}/reports/getM365AppPlatformUserCounts(period='{period}')", rawUrl); } /** - * Invoke function getM365AppPlatformUserCounts + * Get a report that provides the trend of active users across all apps for each platform (Windows, Mac, web, and mobile) in your organization. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getM365AppPlatformUserCounts + * Get a report that provides the trend of active users across all apps for each platform (Windows, Mac, web, and mobile) in your organization. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getM365AppPlatformUserCounts + * Get a report that provides the trend of active users across all apps for each platform (Windows, Mac, web, and mobile) in your organization. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getM365AppPlatformUserCounts + * Get a report that provides the trend of active users across all apps for each platform (Windows, Mac, web, and mobile) in your organization. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getm365appusercountswithperiod/GetM365AppUserCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getm365appusercountswithperiod/GetM365AppUserCountsWithPeriodRequestBuilder.java index de2899c133b..c9bbc63ea45 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getm365appusercountswithperiod/GetM365AppUserCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getm365appusercountswithperiod/GetM365AppUserCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetM365AppUserCountsWithPeriodRequestBuilder(@jakarta.annotation.Nonnull super(requestAdapter, "{+baseurl}/reports/getM365AppUserCounts(period='{period}')", rawUrl); } /** - * Invoke function getM365AppUserCounts + * Get a report that provides the trend in the number of active users for each app (Outlook, Word, Excel, PowerPoint, OneNote, and Teams) in your organization. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getM365AppUserCounts + * Get a report that provides the trend in the number of active users for each app (Outlook, Word, Excel, PowerPoint, OneNote, and Teams) in your organization. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getM365AppUserCounts + * Get a report that provides the trend in the number of active users for each app (Outlook, Word, Excel, PowerPoint, OneNote, and Teams) in your organization. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getM365AppUserCounts + * Get a report that provides the trend in the number of active users for each app (Outlook, Word, Excel, PowerPoint, OneNote, and Teams) in your organization. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getmailboxusagedetailwithperiod/GetMailboxUsageDetailWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getmailboxusagedetailwithperiod/GetMailboxUsageDetailWithPeriodRequestBuilder.java index 0befe9f2549..43c34ed8dbe 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getmailboxusagedetailwithperiod/GetMailboxUsageDetailWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getmailboxusagedetailwithperiod/GetMailboxUsageDetailWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetMailboxUsageDetailWithPeriodRequestBuilder(@jakarta.annotation.Nonnull super(requestAdapter, "{+baseurl}/reports/getMailboxUsageDetail(period='{period}')", rawUrl); } /** - * Invoke function getMailboxUsageDetail + * Get details about mailbox usage. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getMailboxUsageDetail + * Get details about mailbox usage. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getMailboxUsageDetail + * Get details about mailbox usage. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getMailboxUsageDetail + * Get details about mailbox usage. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getmailboxusagemailboxcountswithperiod/GetMailboxUsageMailboxCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getmailboxusagemailboxcountswithperiod/GetMailboxUsageMailboxCountsWithPeriodRequestBuilder.java index bbecc98ab86..474be9af2fb 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getmailboxusagemailboxcountswithperiod/GetMailboxUsageMailboxCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getmailboxusagemailboxcountswithperiod/GetMailboxUsageMailboxCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetMailboxUsageMailboxCountsWithPeriodRequestBuilder(@jakarta.annotation. super(requestAdapter, "{+baseurl}/reports/getMailboxUsageMailboxCounts(period='{period}')", rawUrl); } /** - * Invoke function getMailboxUsageMailboxCounts + * Get the total number of user mailboxes in your organization and how many are active each day of the reporting period. A mailbox is considered active if the user sent or read any email. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getMailboxUsageMailboxCounts + * Get the total number of user mailboxes in your organization and how many are active each day of the reporting period. A mailbox is considered active if the user sent or read any email. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getMailboxUsageMailboxCounts + * Get the total number of user mailboxes in your organization and how many are active each day of the reporting period. A mailbox is considered active if the user sent or read any email. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getMailboxUsageMailboxCounts + * Get the total number of user mailboxes in your organization and how many are active each day of the reporting period. A mailbox is considered active if the user sent or read any email. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getmailboxusagequotastatusmailboxcountswithperiod/GetMailboxUsageQuotaStatusMailboxCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getmailboxusagequotastatusmailboxcountswithperiod/GetMailboxUsageQuotaStatusMailboxCountsWithPeriodRequestBuilder.java index 589180a291a..3fe4a750486 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getmailboxusagequotastatusmailboxcountswithperiod/GetMailboxUsageQuotaStatusMailboxCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getmailboxusagequotastatusmailboxcountswithperiod/GetMailboxUsageQuotaStatusMailboxCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetMailboxUsageQuotaStatusMailboxCountsWithPeriodRequestBuilder(@jakarta. super(requestAdapter, "{+baseurl}/reports/getMailboxUsageQuotaStatusMailboxCounts(period='{period}')", rawUrl); } /** - * Invoke function getMailboxUsageQuotaStatusMailboxCounts + * Get the count of user mailboxes in each quota category. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getMailboxUsageQuotaStatusMailboxCounts + * Get the count of user mailboxes in each quota category. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getMailboxUsageQuotaStatusMailboxCounts + * Get the count of user mailboxes in each quota category. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getMailboxUsageQuotaStatusMailboxCounts + * Get the count of user mailboxes in each quota category. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getmailboxusagestoragewithperiod/GetMailboxUsageStorageWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getmailboxusagestoragewithperiod/GetMailboxUsageStorageWithPeriodRequestBuilder.java index 02c7d171a1f..1e5637367e5 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getmailboxusagestoragewithperiod/GetMailboxUsageStorageWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getmailboxusagestoragewithperiod/GetMailboxUsageStorageWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetMailboxUsageStorageWithPeriodRequestBuilder(@jakarta.annotation.Nonnul super(requestAdapter, "{+baseurl}/reports/getMailboxUsageStorage(period='{period}')", rawUrl); } /** - * Invoke function getMailboxUsageStorage + * Get the amount of storage used in your organization. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getMailboxUsageStorage + * Get the amount of storage used in your organization. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getMailboxUsageStorage + * Get the amount of storage used in your organization. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getMailboxUsageStorage + * Get the amount of storage used in your organization. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getoffice365activationcounts/GetOffice365ActivationCountsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getoffice365activationcounts/GetOffice365ActivationCountsRequestBuilder.java index 715d1d2cf73..18b439664c5 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getoffice365activationcounts/GetOffice365ActivationCountsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getoffice365activationcounts/GetOffice365ActivationCountsRequestBuilder.java @@ -36,19 +36,21 @@ public GetOffice365ActivationCountsRequestBuilder(@jakarta.annotation.Nonnull fi super(requestAdapter, "{+baseurl}/reports/getOffice365ActivationCounts()", rawUrl); } /** - * Invoke function getOffice365ActivationCounts + * Get the count of Microsoft 365 activations on desktops and devices. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getOffice365ActivationCounts + * Get the count of Microsoft 365 activations on desktops and devices. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getOffice365ActivationCounts + * Get the count of Microsoft 365 activations on desktops and devices. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getOffice365ActivationCounts + * Get the count of Microsoft 365 activations on desktops and devices. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getoffice365activationsusercounts/GetOffice365ActivationsUserCountsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getoffice365activationsusercounts/GetOffice365ActivationsUserCountsRequestBuilder.java index a18df0db255..083cbeb8a23 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getoffice365activationsusercounts/GetOffice365ActivationsUserCountsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getoffice365activationsusercounts/GetOffice365ActivationsUserCountsRequestBuilder.java @@ -36,19 +36,21 @@ public GetOffice365ActivationsUserCountsRequestBuilder(@jakarta.annotation.Nonnu super(requestAdapter, "{+baseurl}/reports/getOffice365ActivationsUserCounts()", rawUrl); } /** - * Invoke function getOffice365ActivationsUserCounts + * Get the count of users that are enabled and those that have activated the Office subscription on desktop or devices or shared computers. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getOffice365ActivationsUserCounts + * Get the count of users that are enabled and those that have activated the Office subscription on desktop or devices or shared computers. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getOffice365ActivationsUserCounts + * Get the count of users that are enabled and those that have activated the Office subscription on desktop or devices or shared computers. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getOffice365ActivationsUserCounts + * Get the count of users that are enabled and those that have activated the Office subscription on desktop or devices or shared computers. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getoffice365activationsuserdetail/GetOffice365ActivationsUserDetailRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getoffice365activationsuserdetail/GetOffice365ActivationsUserDetailRequestBuilder.java index e37c8073e40..0f513e24a80 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getoffice365activationsuserdetail/GetOffice365ActivationsUserDetailRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getoffice365activationsuserdetail/GetOffice365ActivationsUserDetailRequestBuilder.java @@ -36,19 +36,21 @@ public GetOffice365ActivationsUserDetailRequestBuilder(@jakarta.annotation.Nonnu super(requestAdapter, "{+baseurl}/reports/getOffice365ActivationsUserDetail()", rawUrl); } /** - * Invoke function getOffice365ActivationsUserDetail + * Get details about users who have activated Microsoft 365. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getOffice365ActivationsUserDetail + * Get details about users who have activated Microsoft 365. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getOffice365ActivationsUserDetail + * Get details about users who have activated Microsoft 365. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getOffice365ActivationsUserDetail + * Get details about users who have activated Microsoft 365. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getoffice365activeusercountswithperiod/GetOffice365ActiveUserCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getoffice365activeusercountswithperiod/GetOffice365ActiveUserCountsWithPeriodRequestBuilder.java index 8cde7863916..db709e05e13 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getoffice365activeusercountswithperiod/GetOffice365ActiveUserCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getoffice365activeusercountswithperiod/GetOffice365ActiveUserCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetOffice365ActiveUserCountsWithPeriodRequestBuilder(@jakarta.annotation. super(requestAdapter, "{+baseurl}/reports/getOffice365ActiveUserCounts(period='{period}')", rawUrl); } /** - * Invoke function getOffice365ActiveUserCounts + * Get the count of daily active users in the reporting period by product. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getOffice365ActiveUserCounts + * Get the count of daily active users in the reporting period by product. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getOffice365ActiveUserCounts + * Get the count of daily active users in the reporting period by product. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getOffice365ActiveUserCounts + * Get the count of daily active users in the reporting period by product. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getoffice365activeuserdetailwithdate/GetOffice365ActiveUserDetailWithDateRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getoffice365activeuserdetailwithdate/GetOffice365ActiveUserDetailWithDateRequestBuilder.java index 79d537d6727..0255f8e7b00 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getoffice365activeuserdetailwithdate/GetOffice365ActiveUserDetailWithDateRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getoffice365activeuserdetailwithdate/GetOffice365ActiveUserDetailWithDateRequestBuilder.java @@ -39,19 +39,21 @@ public GetOffice365ActiveUserDetailWithDateRequestBuilder(@jakarta.annotation.No super(requestAdapter, "{+baseurl}/reports/getOffice365ActiveUserDetail(date={date})", rawUrl); } /** - * Invoke function getOffice365ActiveUserDetail + * Get details about Microsoft 365 active users. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getOffice365ActiveUserDetail + * Get details about Microsoft 365 active users. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -61,7 +63,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getOffice365ActiveUserDetail + * Get details about Microsoft 365 active users. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -69,7 +71,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getOffice365ActiveUserDetail + * Get details about Microsoft 365 active users. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getoffice365groupsactivitycountswithperiod/GetOffice365GroupsActivityCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getoffice365groupsactivitycountswithperiod/GetOffice365GroupsActivityCountsWithPeriodRequestBuilder.java index badd4ea4f3a..7c9ad54b297 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getoffice365groupsactivitycountswithperiod/GetOffice365GroupsActivityCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getoffice365groupsactivitycountswithperiod/GetOffice365GroupsActivityCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetOffice365GroupsActivityCountsWithPeriodRequestBuilder(@jakarta.annotat super(requestAdapter, "{+baseurl}/reports/getOffice365GroupsActivityCounts(period='{period}')", rawUrl); } /** - * Invoke function getOffice365GroupsActivityCounts + * Get the number of group activities across group workloads. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getOffice365GroupsActivityCounts + * Get the number of group activities across group workloads. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getOffice365GroupsActivityCounts + * Get the number of group activities across group workloads. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getOffice365GroupsActivityCounts + * Get the number of group activities across group workloads. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getoffice365groupsactivitydetailwithdate/GetOffice365GroupsActivityDetailWithDateRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getoffice365groupsactivitydetailwithdate/GetOffice365GroupsActivityDetailWithDateRequestBuilder.java index b34bff92137..c3efd22f7e5 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getoffice365groupsactivitydetailwithdate/GetOffice365GroupsActivityDetailWithDateRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getoffice365groupsactivitydetailwithdate/GetOffice365GroupsActivityDetailWithDateRequestBuilder.java @@ -39,19 +39,21 @@ public GetOffice365GroupsActivityDetailWithDateRequestBuilder(@jakarta.annotatio super(requestAdapter, "{+baseurl}/reports/getOffice365GroupsActivityDetail(date={date})", rawUrl); } /** - * Invoke function getOffice365GroupsActivityDetail + * Get details about Microsoft 365 groups activity by group. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getOffice365GroupsActivityDetail + * Get details about Microsoft 365 groups activity by group. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -61,7 +63,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getOffice365GroupsActivityDetail + * Get details about Microsoft 365 groups activity by group. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -69,7 +71,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getOffice365GroupsActivityDetail + * Get details about Microsoft 365 groups activity by group. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getoffice365groupsactivityfilecountswithperiod/GetOffice365GroupsActivityFileCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getoffice365groupsactivityfilecountswithperiod/GetOffice365GroupsActivityFileCountsWithPeriodRequestBuilder.java index f63eb3cfe5a..bb4ee406d8b 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getoffice365groupsactivityfilecountswithperiod/GetOffice365GroupsActivityFileCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getoffice365groupsactivityfilecountswithperiod/GetOffice365GroupsActivityFileCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetOffice365GroupsActivityFileCountsWithPeriodRequestBuilder(@jakarta.ann super(requestAdapter, "{+baseurl}/reports/getOffice365GroupsActivityFileCounts(period='{period}')", rawUrl); } /** - * Invoke function getOffice365GroupsActivityFileCounts + * Get the total number of files and how many of them were active across all group sites associated with a Microsoft 365 group. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getOffice365GroupsActivityFileCounts + * Get the total number of files and how many of them were active across all group sites associated with a Microsoft 365 group. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getOffice365GroupsActivityFileCounts + * Get the total number of files and how many of them were active across all group sites associated with a Microsoft 365 group. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getOffice365GroupsActivityFileCounts + * Get the total number of files and how many of them were active across all group sites associated with a Microsoft 365 group. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getoffice365groupsactivitygroupcountswithperiod/GetOffice365GroupsActivityGroupCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getoffice365groupsactivitygroupcountswithperiod/GetOffice365GroupsActivityGroupCountsWithPeriodRequestBuilder.java index 4b48c62ca3c..a552d89a2e3 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getoffice365groupsactivitygroupcountswithperiod/GetOffice365GroupsActivityGroupCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getoffice365groupsactivitygroupcountswithperiod/GetOffice365GroupsActivityGroupCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetOffice365GroupsActivityGroupCountsWithPeriodRequestBuilder(@jakarta.an super(requestAdapter, "{+baseurl}/reports/getOffice365GroupsActivityGroupCounts(period='{period}')", rawUrl); } /** - * Invoke function getOffice365GroupsActivityGroupCounts + * Get the daily total number of groups and how many of them were active based on email conversations, Yammer posts, and SharePoint file activities. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getOffice365GroupsActivityGroupCounts + * Get the daily total number of groups and how many of them were active based on email conversations, Yammer posts, and SharePoint file activities. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getOffice365GroupsActivityGroupCounts + * Get the daily total number of groups and how many of them were active based on email conversations, Yammer posts, and SharePoint file activities. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getOffice365GroupsActivityGroupCounts + * Get the daily total number of groups and how many of them were active based on email conversations, Yammer posts, and SharePoint file activities. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getoffice365groupsactivitystoragewithperiod/GetOffice365GroupsActivityStorageWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getoffice365groupsactivitystoragewithperiod/GetOffice365GroupsActivityStorageWithPeriodRequestBuilder.java index bd21c9ea4cf..477b9ab998d 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getoffice365groupsactivitystoragewithperiod/GetOffice365GroupsActivityStorageWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getoffice365groupsactivitystoragewithperiod/GetOffice365GroupsActivityStorageWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetOffice365GroupsActivityStorageWithPeriodRequestBuilder(@jakarta.annota super(requestAdapter, "{+baseurl}/reports/getOffice365GroupsActivityStorage(period='{period}')", rawUrl); } /** - * Invoke function getOffice365GroupsActivityStorage + * Get the total storage used across all group mailboxes and group sites. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getOffice365GroupsActivityStorage + * Get the total storage used across all group mailboxes and group sites. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getOffice365GroupsActivityStorage + * Get the total storage used across all group mailboxes and group sites. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getOffice365GroupsActivityStorage + * Get the total storage used across all group mailboxes and group sites. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getoffice365servicesusercountswithperiod/GetOffice365ServicesUserCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getoffice365servicesusercountswithperiod/GetOffice365ServicesUserCountsWithPeriodRequestBuilder.java index e9f0d41914b..459d5eee230 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getoffice365servicesusercountswithperiod/GetOffice365ServicesUserCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getoffice365servicesusercountswithperiod/GetOffice365ServicesUserCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetOffice365ServicesUserCountsWithPeriodRequestBuilder(@jakarta.annotatio super(requestAdapter, "{+baseurl}/reports/getOffice365ServicesUserCounts(period='{period}')", rawUrl); } /** - * Invoke function getOffice365ServicesUserCounts + * Get the count of users by activity type and service. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getOffice365ServicesUserCounts + * Get the count of users by activity type and service. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getOffice365ServicesUserCounts + * Get the count of users by activity type and service. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getOffice365ServicesUserCounts + * Get the count of users by activity type and service. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getonedriveactivityfilecountswithperiod/GetOneDriveActivityFileCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getonedriveactivityfilecountswithperiod/GetOneDriveActivityFileCountsWithPeriodRequestBuilder.java index 07812fd2286..11d78db8b35 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getonedriveactivityfilecountswithperiod/GetOneDriveActivityFileCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getonedriveactivityfilecountswithperiod/GetOneDriveActivityFileCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetOneDriveActivityFileCountsWithPeriodRequestBuilder(@jakarta.annotation super(requestAdapter, "{+baseurl}/reports/getOneDriveActivityFileCounts(period='{period}')", rawUrl); } /** - * Invoke function getOneDriveActivityFileCounts + * Get the number of unique, licensed users that performed file interactions against any OneDrive account. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getOneDriveActivityFileCounts + * Get the number of unique, licensed users that performed file interactions against any OneDrive account. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getOneDriveActivityFileCounts + * Get the number of unique, licensed users that performed file interactions against any OneDrive account. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getOneDriveActivityFileCounts + * Get the number of unique, licensed users that performed file interactions against any OneDrive account. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getonedriveactivityusercountswithperiod/GetOneDriveActivityUserCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getonedriveactivityusercountswithperiod/GetOneDriveActivityUserCountsWithPeriodRequestBuilder.java index ba20cd22cf8..c12e6b7a702 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getonedriveactivityusercountswithperiod/GetOneDriveActivityUserCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getonedriveactivityusercountswithperiod/GetOneDriveActivityUserCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetOneDriveActivityUserCountsWithPeriodRequestBuilder(@jakarta.annotation super(requestAdapter, "{+baseurl}/reports/getOneDriveActivityUserCounts(period='{period}')", rawUrl); } /** - * Invoke function getOneDriveActivityUserCounts + * Get the trend in the number of active OneDrive users. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getOneDriveActivityUserCounts + * Get the trend in the number of active OneDrive users. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getOneDriveActivityUserCounts + * Get the trend in the number of active OneDrive users. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getOneDriveActivityUserCounts + * Get the trend in the number of active OneDrive users. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getonedriveactivityuserdetailwithdate/GetOneDriveActivityUserDetailWithDateRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getonedriveactivityuserdetailwithdate/GetOneDriveActivityUserDetailWithDateRequestBuilder.java index 5d8691f858d..c215692d362 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getonedriveactivityuserdetailwithdate/GetOneDriveActivityUserDetailWithDateRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getonedriveactivityuserdetailwithdate/GetOneDriveActivityUserDetailWithDateRequestBuilder.java @@ -39,19 +39,21 @@ public GetOneDriveActivityUserDetailWithDateRequestBuilder(@jakarta.annotation.N super(requestAdapter, "{+baseurl}/reports/getOneDriveActivityUserDetail(date={date})", rawUrl); } /** - * Invoke function getOneDriveActivityUserDetail + * Get details about OneDrive activity by user. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getOneDriveActivityUserDetail + * Get details about OneDrive activity by user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -61,7 +63,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getOneDriveActivityUserDetail + * Get details about OneDrive activity by user. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -69,7 +71,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getOneDriveActivityUserDetail + * Get details about OneDrive activity by user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getonedriveusageaccountcountswithperiod/GetOneDriveUsageAccountCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getonedriveusageaccountcountswithperiod/GetOneDriveUsageAccountCountsWithPeriodRequestBuilder.java index 0af215b290c..311404e480d 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getonedriveusageaccountcountswithperiod/GetOneDriveUsageAccountCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getonedriveusageaccountcountswithperiod/GetOneDriveUsageAccountCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetOneDriveUsageAccountCountsWithPeriodRequestBuilder(@jakarta.annotation super(requestAdapter, "{+baseurl}/reports/getOneDriveUsageAccountCounts(period='{period}')", rawUrl); } /** - * Invoke function getOneDriveUsageAccountCounts + * Get the trend in the number of active OneDrive for Business sites. Any site on which users viewed, modified, uploaded, downloaded, shared, or synced files is considered an active site. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getOneDriveUsageAccountCounts + * Get the trend in the number of active OneDrive for Business sites. Any site on which users viewed, modified, uploaded, downloaded, shared, or synced files is considered an active site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getOneDriveUsageAccountCounts + * Get the trend in the number of active OneDrive for Business sites. Any site on which users viewed, modified, uploaded, downloaded, shared, or synced files is considered an active site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getOneDriveUsageAccountCounts + * Get the trend in the number of active OneDrive for Business sites. Any site on which users viewed, modified, uploaded, downloaded, shared, or synced files is considered an active site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getonedriveusageaccountdetailwithdate/GetOneDriveUsageAccountDetailWithDateRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getonedriveusageaccountdetailwithdate/GetOneDriveUsageAccountDetailWithDateRequestBuilder.java index 05377de49ba..0e3dea3c1db 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getonedriveusageaccountdetailwithdate/GetOneDriveUsageAccountDetailWithDateRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getonedriveusageaccountdetailwithdate/GetOneDriveUsageAccountDetailWithDateRequestBuilder.java @@ -39,19 +39,21 @@ public GetOneDriveUsageAccountDetailWithDateRequestBuilder(@jakarta.annotation.N super(requestAdapter, "{+baseurl}/reports/getOneDriveUsageAccountDetail(date={date})", rawUrl); } /** - * Invoke function getOneDriveUsageAccountDetail + * Get details about OneDrive usage by account. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getOneDriveUsageAccountDetail + * Get details about OneDrive usage by account. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -61,7 +63,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getOneDriveUsageAccountDetail + * Get details about OneDrive usage by account. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -69,7 +71,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getOneDriveUsageAccountDetail + * Get details about OneDrive usage by account. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getonedriveusagefilecountswithperiod/GetOneDriveUsageFileCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getonedriveusagefilecountswithperiod/GetOneDriveUsageFileCountsWithPeriodRequestBuilder.java index c36a220c7e3..7eed9cb1ed5 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getonedriveusagefilecountswithperiod/GetOneDriveUsageFileCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getonedriveusagefilecountswithperiod/GetOneDriveUsageFileCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetOneDriveUsageFileCountsWithPeriodRequestBuilder(@jakarta.annotation.No super(requestAdapter, "{+baseurl}/reports/getOneDriveUsageFileCounts(period='{period}')", rawUrl); } /** - * Invoke function getOneDriveUsageFileCounts + * Get the total number of files across all sites and how many are active files. A file is considered active if it has been saved, synced, modified, or shared within the specified time period. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getOneDriveUsageFileCounts + * Get the total number of files across all sites and how many are active files. A file is considered active if it has been saved, synced, modified, or shared within the specified time period. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getOneDriveUsageFileCounts + * Get the total number of files across all sites and how many are active files. A file is considered active if it has been saved, synced, modified, or shared within the specified time period. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getOneDriveUsageFileCounts + * Get the total number of files across all sites and how many are active files. A file is considered active if it has been saved, synced, modified, or shared within the specified time period. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getonedriveusagestoragewithperiod/GetOneDriveUsageStorageWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getonedriveusagestoragewithperiod/GetOneDriveUsageStorageWithPeriodRequestBuilder.java index bb9e8b759de..59ccb9a4198 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getonedriveusagestoragewithperiod/GetOneDriveUsageStorageWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getonedriveusagestoragewithperiod/GetOneDriveUsageStorageWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetOneDriveUsageStorageWithPeriodRequestBuilder(@jakarta.annotation.Nonnu super(requestAdapter, "{+baseurl}/reports/getOneDriveUsageStorage(period='{period}')", rawUrl); } /** - * Invoke function getOneDriveUsageStorage + * Get the trend on the amount of storage you're using in OneDrive for Business. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getOneDriveUsageStorage + * Get the trend on the amount of storage you're using in OneDrive for Business. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getOneDriveUsageStorage + * Get the trend on the amount of storage you're using in OneDrive for Business. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getOneDriveUsageStorage + * Get the trend on the amount of storage you're using in OneDrive for Business. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getprinterarchivedprintjobswithprinteridwithstartdatetimewithenddatetime/GetPrinterArchivedPrintJobsWithPrinterIdWithStartDateTimeWithEndDateTimeRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getprinterarchivedprintjobswithprinteridwithstartdatetimewithenddatetime/GetPrinterArchivedPrintJobsWithPrinterIdWithStartDateTimeWithEndDateTimeRequestBuilder.java index e02483dcd12..b6c86df8a81 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getprinterarchivedprintjobswithprinteridwithstartdatetimewithenddatetime/GetPrinterArchivedPrintJobsWithPrinterIdWithStartDateTimeWithEndDateTimeRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getprinterarchivedprintjobswithprinteridwithstartdatetimewithenddatetime/GetPrinterArchivedPrintJobsWithPrinterIdWithStartDateTimeWithEndDateTimeRequestBuilder.java @@ -43,19 +43,21 @@ public GetPrinterArchivedPrintJobsWithPrinterIdWithStartDateTimeWithEndDateTimeR super(requestAdapter, "{+baseurl}/reports/getPrinterArchivedPrintJobs(printerId='{printerId}',startDateTime={startDateTime},endDateTime={endDateTime}){?%24count,%24filter,%24search,%24skip,%24top}", rawUrl); } /** - * Invoke function getPrinterArchivedPrintJobs + * Get a list of archived print jobs that were queued for particular printer. * @return a {@link GetPrinterArchivedPrintJobsWithPrinterIdWithStartDateTimeWithEndDateTimeGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetPrinterArchivedPrintJobsWithPrinterIdWithStartDateTimeWithEndDateTimeGetResponse get() { return get(null); } /** - * Invoke function getPrinterArchivedPrintJobs + * Get a list of archived print jobs that were queued for particular printer. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GetPrinterArchivedPrintJobsWithPrinterIdWithStartDateTimeWithEndDateTimeGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetPrinterArchivedPrintJobsWithPrinterIdWithStartDateTimeWithEndDateTimeGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -65,7 +67,7 @@ public GetPrinterArchivedPrintJobsWithPrinterIdWithStartDateTimeWithEndDateTimeG return this.requestAdapter.send(requestInfo, errorMapping, GetPrinterArchivedPrintJobsWithPrinterIdWithStartDateTimeWithEndDateTimeGetResponse::createFromDiscriminatorValue); } /** - * Invoke function getPrinterArchivedPrintJobs + * Get a list of archived print jobs that were queued for particular printer. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -73,7 +75,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getPrinterArchivedPrintJobs + * Get a list of archived print jobs that were queued for particular printer. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -95,7 +97,7 @@ public GetPrinterArchivedPrintJobsWithPrinterIdWithStartDateTimeWithEndDateTimeR return new GetPrinterArchivedPrintJobsWithPrinterIdWithStartDateTimeWithEndDateTimeRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function getPrinterArchivedPrintJobs + * Get a list of archived print jobs that were queued for particular printer. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/reports/getrelyingpartydetailedsummarywithperiod/GetRelyingPartyDetailedSummaryWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getrelyingpartydetailedsummarywithperiod/GetRelyingPartyDetailedSummaryWithPeriodRequestBuilder.java index 95896c1d1b3..c41403c6a14 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getrelyingpartydetailedsummarywithperiod/GetRelyingPartyDetailedSummaryWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getrelyingpartydetailedsummarywithperiod/GetRelyingPartyDetailedSummaryWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetRelyingPartyDetailedSummaryWithPeriodRequestBuilder(@jakarta.annotatio super(requestAdapter, "{+baseurl}/reports/getRelyingPartyDetailedSummary(period='{period}'){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function getRelyingPartyDetailedSummary + * Get a summary of AD FS relying parties information. * @return a {@link GetRelyingPartyDetailedSummaryWithPeriodGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetRelyingPartyDetailedSummaryWithPeriodGetResponse get() { return get(null); } /** - * Invoke function getRelyingPartyDetailedSummary + * Get a summary of AD FS relying parties information. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GetRelyingPartyDetailedSummaryWithPeriodGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetRelyingPartyDetailedSummaryWithPeriodGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public GetRelyingPartyDetailedSummaryWithPeriodGetResponse get(@jakarta.annotati return this.requestAdapter.send(requestInfo, errorMapping, GetRelyingPartyDetailedSummaryWithPeriodGetResponse::createFromDiscriminatorValue); } /** - * Invoke function getRelyingPartyDetailedSummary + * Get a summary of AD FS relying parties information. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getRelyingPartyDetailedSummary + * Get a summary of AD FS relying parties information. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -90,7 +92,7 @@ public GetRelyingPartyDetailedSummaryWithPeriodRequestBuilder withUrl(@jakarta.a return new GetRelyingPartyDetailedSummaryWithPeriodRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function getRelyingPartyDetailedSummary + * Get a summary of AD FS relying parties information. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/reports/getsharepointactivityfilecountswithperiod/GetSharePointActivityFileCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getsharepointactivityfilecountswithperiod/GetSharePointActivityFileCountsWithPeriodRequestBuilder.java index cf66f66485c..a2ff2ab4166 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getsharepointactivityfilecountswithperiod/GetSharePointActivityFileCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getsharepointactivityfilecountswithperiod/GetSharePointActivityFileCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetSharePointActivityFileCountsWithPeriodRequestBuilder(@jakarta.annotati super(requestAdapter, "{+baseurl}/reports/getSharePointActivityFileCounts(period='{period}')", rawUrl); } /** - * Invoke function getSharePointActivityFileCounts + * Get the number of unique, licensed users who interacted with files stored on SharePoint sites. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getSharePointActivityFileCounts + * Get the number of unique, licensed users who interacted with files stored on SharePoint sites. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getSharePointActivityFileCounts + * Get the number of unique, licensed users who interacted with files stored on SharePoint sites. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getSharePointActivityFileCounts + * Get the number of unique, licensed users who interacted with files stored on SharePoint sites. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getsharepointactivitypageswithperiod/GetSharePointActivityPagesWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getsharepointactivitypageswithperiod/GetSharePointActivityPagesWithPeriodRequestBuilder.java index 1d52c663886..0eb8e85f20e 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getsharepointactivitypageswithperiod/GetSharePointActivityPagesWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getsharepointactivitypageswithperiod/GetSharePointActivityPagesWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetSharePointActivityPagesWithPeriodRequestBuilder(@jakarta.annotation.No super(requestAdapter, "{+baseurl}/reports/getSharePointActivityPages(period='{period}')", rawUrl); } /** - * Invoke function getSharePointActivityPages + * Get the number of unique pages visited by users. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getSharePointActivityPages + * Get the number of unique pages visited by users. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getSharePointActivityPages + * Get the number of unique pages visited by users. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getSharePointActivityPages + * Get the number of unique pages visited by users. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getsharepointactivityusercountswithperiod/GetSharePointActivityUserCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getsharepointactivityusercountswithperiod/GetSharePointActivityUserCountsWithPeriodRequestBuilder.java index 6fb1761387a..f50a5bcdb71 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getsharepointactivityusercountswithperiod/GetSharePointActivityUserCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getsharepointactivityusercountswithperiod/GetSharePointActivityUserCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetSharePointActivityUserCountsWithPeriodRequestBuilder(@jakarta.annotati super(requestAdapter, "{+baseurl}/reports/getSharePointActivityUserCounts(period='{period}')", rawUrl); } /** - * Invoke function getSharePointActivityUserCounts + * Get the trend in the number of active users. A user is considered active if they have executed a file activity (save, sync, modify, or share) or visited a page within the specified time period. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getSharePointActivityUserCounts + * Get the trend in the number of active users. A user is considered active if they have executed a file activity (save, sync, modify, or share) or visited a page within the specified time period. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getSharePointActivityUserCounts + * Get the trend in the number of active users. A user is considered active if they have executed a file activity (save, sync, modify, or share) or visited a page within the specified time period. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getSharePointActivityUserCounts + * Get the trend in the number of active users. A user is considered active if they have executed a file activity (save, sync, modify, or share) or visited a page within the specified time period. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getsharepointactivityuserdetailwithdate/GetSharePointActivityUserDetailWithDateRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getsharepointactivityuserdetailwithdate/GetSharePointActivityUserDetailWithDateRequestBuilder.java index d7e4159562f..fb2a367551d 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getsharepointactivityuserdetailwithdate/GetSharePointActivityUserDetailWithDateRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getsharepointactivityuserdetailwithdate/GetSharePointActivityUserDetailWithDateRequestBuilder.java @@ -39,19 +39,21 @@ public GetSharePointActivityUserDetailWithDateRequestBuilder(@jakarta.annotation super(requestAdapter, "{+baseurl}/reports/getSharePointActivityUserDetail(date={date})", rawUrl); } /** - * Invoke function getSharePointActivityUserDetail + * Get details about SharePoint activity by user. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getSharePointActivityUserDetail + * Get details about SharePoint activity by user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -61,7 +63,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getSharePointActivityUserDetail + * Get details about SharePoint activity by user. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -69,7 +71,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getSharePointActivityUserDetail + * Get details about SharePoint activity by user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getsharepointsiteusagedetailwithdate/GetSharePointSiteUsageDetailWithDateRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getsharepointsiteusagedetailwithdate/GetSharePointSiteUsageDetailWithDateRequestBuilder.java index 4725bb9797f..06700eae651 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getsharepointsiteusagedetailwithdate/GetSharePointSiteUsageDetailWithDateRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getsharepointsiteusagedetailwithdate/GetSharePointSiteUsageDetailWithDateRequestBuilder.java @@ -39,19 +39,21 @@ public GetSharePointSiteUsageDetailWithDateRequestBuilder(@jakarta.annotation.No super(requestAdapter, "{+baseurl}/reports/getSharePointSiteUsageDetail(date={date})", rawUrl); } /** - * Invoke function getSharePointSiteUsageDetail + * Get details about SharePoint site usage. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getSharePointSiteUsageDetail + * Get details about SharePoint site usage. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -61,7 +63,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getSharePointSiteUsageDetail + * Get details about SharePoint site usage. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -69,7 +71,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getSharePointSiteUsageDetail + * Get details about SharePoint site usage. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getsharepointsiteusagefilecountswithperiod/GetSharePointSiteUsageFileCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getsharepointsiteusagefilecountswithperiod/GetSharePointSiteUsageFileCountsWithPeriodRequestBuilder.java index ff9ad1f0cf4..f7ccf1c6489 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getsharepointsiteusagefilecountswithperiod/GetSharePointSiteUsageFileCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getsharepointsiteusagefilecountswithperiod/GetSharePointSiteUsageFileCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetSharePointSiteUsageFileCountsWithPeriodRequestBuilder(@jakarta.annotat super(requestAdapter, "{+baseurl}/reports/getSharePointSiteUsageFileCounts(period='{period}')", rawUrl); } /** - * Invoke function getSharePointSiteUsageFileCounts + * Get the total number of files across all sites and the number of active files. A file (user or system) is considered active if it has been saved, synced, modified, or shared within the specified time period. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getSharePointSiteUsageFileCounts + * Get the total number of files across all sites and the number of active files. A file (user or system) is considered active if it has been saved, synced, modified, or shared within the specified time period. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getSharePointSiteUsageFileCounts + * Get the total number of files across all sites and the number of active files. A file (user or system) is considered active if it has been saved, synced, modified, or shared within the specified time period. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getSharePointSiteUsageFileCounts + * Get the total number of files across all sites and the number of active files. A file (user or system) is considered active if it has been saved, synced, modified, or shared within the specified time period. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getsharepointsiteusagepageswithperiod/GetSharePointSiteUsagePagesWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getsharepointsiteusagepageswithperiod/GetSharePointSiteUsagePagesWithPeriodRequestBuilder.java index a85304fc51e..4674f434e26 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getsharepointsiteusagepageswithperiod/GetSharePointSiteUsagePagesWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getsharepointsiteusagepageswithperiod/GetSharePointSiteUsagePagesWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetSharePointSiteUsagePagesWithPeriodRequestBuilder(@jakarta.annotation.N super(requestAdapter, "{+baseurl}/reports/getSharePointSiteUsagePages(period='{period}')", rawUrl); } /** - * Invoke function getSharePointSiteUsagePages + * Get the number of pages viewed across all sites. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getSharePointSiteUsagePages + * Get the number of pages viewed across all sites. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getSharePointSiteUsagePages + * Get the number of pages viewed across all sites. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getSharePointSiteUsagePages + * Get the number of pages viewed across all sites. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getsharepointsiteusagesitecountswithperiod/GetSharePointSiteUsageSiteCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getsharepointsiteusagesitecountswithperiod/GetSharePointSiteUsageSiteCountsWithPeriodRequestBuilder.java index d7502c059b2..24cc2ada9d9 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getsharepointsiteusagesitecountswithperiod/GetSharePointSiteUsageSiteCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getsharepointsiteusagesitecountswithperiod/GetSharePointSiteUsageSiteCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetSharePointSiteUsageSiteCountsWithPeriodRequestBuilder(@jakarta.annotat super(requestAdapter, "{+baseurl}/reports/getSharePointSiteUsageSiteCounts(period='{period}')", rawUrl); } /** - * Invoke function getSharePointSiteUsageSiteCounts + * Get the trend of total and active site count during the reporting period. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getSharePointSiteUsageSiteCounts + * Get the trend of total and active site count during the reporting period. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getSharePointSiteUsageSiteCounts + * Get the trend of total and active site count during the reporting period. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getSharePointSiteUsageSiteCounts + * Get the trend of total and active site count during the reporting period. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getsharepointsiteusagestoragewithperiod/GetSharePointSiteUsageStorageWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getsharepointsiteusagestoragewithperiod/GetSharePointSiteUsageStorageWithPeriodRequestBuilder.java index 36a9671b2d3..f880e78905c 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getsharepointsiteusagestoragewithperiod/GetSharePointSiteUsageStorageWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getsharepointsiteusagestoragewithperiod/GetSharePointSiteUsageStorageWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetSharePointSiteUsageStorageWithPeriodRequestBuilder(@jakarta.annotation super(requestAdapter, "{+baseurl}/reports/getSharePointSiteUsageStorage(period='{period}')", rawUrl); } /** - * Invoke function getSharePointSiteUsageStorage + * Get the trend of storage allocated and consumed during the reporting period. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getSharePointSiteUsageStorage + * Get the trend of storage allocated and consumed during the reporting period. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getSharePointSiteUsageStorage + * Get the trend of storage allocated and consumed during the reporting period. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getSharePointSiteUsageStorage + * Get the trend of storage allocated and consumed during the reporting period. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessactivitycountswithperiod/GetSkypeForBusinessActivityCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessactivitycountswithperiod/GetSkypeForBusinessActivityCountsWithPeriodRequestBuilder.java index 4df586fc942..2330f09239c 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessactivitycountswithperiod/GetSkypeForBusinessActivityCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessactivitycountswithperiod/GetSkypeForBusinessActivityCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetSkypeForBusinessActivityCountsWithPeriodRequestBuilder(@jakarta.annota super(requestAdapter, "{+baseurl}/reports/getSkypeForBusinessActivityCounts(period='{period}')", rawUrl); } /** - * Invoke function getSkypeForBusinessActivityCounts + * Get the trends on how many users organized and participated in conference sessions held in your organization through Skype for Business. The report also includes the number of peer-to-peer sessions. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getSkypeForBusinessActivityCounts + * Get the trends on how many users organized and participated in conference sessions held in your organization through Skype for Business. The report also includes the number of peer-to-peer sessions. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getSkypeForBusinessActivityCounts + * Get the trends on how many users organized and participated in conference sessions held in your organization through Skype for Business. The report also includes the number of peer-to-peer sessions. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getSkypeForBusinessActivityCounts + * Get the trends on how many users organized and participated in conference sessions held in your organization through Skype for Business. The report also includes the number of peer-to-peer sessions. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessactivityusercountswithperiod/GetSkypeForBusinessActivityUserCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessactivityusercountswithperiod/GetSkypeForBusinessActivityUserCountsWithPeriodRequestBuilder.java index b69f5de74dc..1b7fb647fe2 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessactivityusercountswithperiod/GetSkypeForBusinessActivityUserCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessactivityusercountswithperiod/GetSkypeForBusinessActivityUserCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetSkypeForBusinessActivityUserCountsWithPeriodRequestBuilder(@jakarta.an super(requestAdapter, "{+baseurl}/reports/getSkypeForBusinessActivityUserCounts(period='{period}')", rawUrl); } /** - * Invoke function getSkypeForBusinessActivityUserCounts + * Get the trends on how many unique users organized and participated in conference sessions held in your organization through Skype for Business. The report also includes the number of peer-to-peer sessions. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getSkypeForBusinessActivityUserCounts + * Get the trends on how many unique users organized and participated in conference sessions held in your organization through Skype for Business. The report also includes the number of peer-to-peer sessions. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getSkypeForBusinessActivityUserCounts + * Get the trends on how many unique users organized and participated in conference sessions held in your organization through Skype for Business. The report also includes the number of peer-to-peer sessions. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getSkypeForBusinessActivityUserCounts + * Get the trends on how many unique users organized and participated in conference sessions held in your organization through Skype for Business. The report also includes the number of peer-to-peer sessions. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessactivityuserdetailwithdate/GetSkypeForBusinessActivityUserDetailWithDateRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessactivityuserdetailwithdate/GetSkypeForBusinessActivityUserDetailWithDateRequestBuilder.java index abd65487c8e..ea4a872aae6 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessactivityuserdetailwithdate/GetSkypeForBusinessActivityUserDetailWithDateRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessactivityuserdetailwithdate/GetSkypeForBusinessActivityUserDetailWithDateRequestBuilder.java @@ -39,19 +39,21 @@ public GetSkypeForBusinessActivityUserDetailWithDateRequestBuilder(@jakarta.anno super(requestAdapter, "{+baseurl}/reports/getSkypeForBusinessActivityUserDetail(date={date})", rawUrl); } /** - * Invoke function getSkypeForBusinessActivityUserDetail + * Get details about Skype for Business activity by user. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getSkypeForBusinessActivityUserDetail + * Get details about Skype for Business activity by user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -61,7 +63,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getSkypeForBusinessActivityUserDetail + * Get details about Skype for Business activity by user. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -69,7 +71,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getSkypeForBusinessActivityUserDetail + * Get details about Skype for Business activity by user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessdeviceusagedistributionusercountswithperiod/GetSkypeForBusinessDeviceUsageDistributionUserCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessdeviceusagedistributionusercountswithperiod/GetSkypeForBusinessDeviceUsageDistributionUserCountsWithPeriodRequestBuilder.java index a9b9c299c8f..7a418e0ad14 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessdeviceusagedistributionusercountswithperiod/GetSkypeForBusinessDeviceUsageDistributionUserCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessdeviceusagedistributionusercountswithperiod/GetSkypeForBusinessDeviceUsageDistributionUserCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetSkypeForBusinessDeviceUsageDistributionUserCountsWithPeriodRequestBuil super(requestAdapter, "{+baseurl}/reports/getSkypeForBusinessDeviceUsageDistributionUserCounts(period='{period}')", rawUrl); } /** - * Invoke function getSkypeForBusinessDeviceUsageDistributionUserCounts + * Get the number of users using unique devices in your organization. The report will show you the number of users per device including Windows, Windows phone, Android phone, iPhone, and iPad. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getSkypeForBusinessDeviceUsageDistributionUserCounts + * Get the number of users using unique devices in your organization. The report will show you the number of users per device including Windows, Windows phone, Android phone, iPhone, and iPad. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getSkypeForBusinessDeviceUsageDistributionUserCounts + * Get the number of users using unique devices in your organization. The report will show you the number of users per device including Windows, Windows phone, Android phone, iPhone, and iPad. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getSkypeForBusinessDeviceUsageDistributionUserCounts + * Get the number of users using unique devices in your organization. The report will show you the number of users per device including Windows, Windows phone, Android phone, iPhone, and iPad. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessdeviceusageusercountswithperiod/GetSkypeForBusinessDeviceUsageUserCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessdeviceusageusercountswithperiod/GetSkypeForBusinessDeviceUsageUserCountsWithPeriodRequestBuilder.java index de93828b23d..5a5f95cc83f 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessdeviceusageusercountswithperiod/GetSkypeForBusinessDeviceUsageUserCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessdeviceusageusercountswithperiod/GetSkypeForBusinessDeviceUsageUserCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetSkypeForBusinessDeviceUsageUserCountsWithPeriodRequestBuilder(@jakarta super(requestAdapter, "{+baseurl}/reports/getSkypeForBusinessDeviceUsageUserCounts(period='{period}')", rawUrl); } /** - * Invoke function getSkypeForBusinessDeviceUsageUserCounts + * Get the usage trends on how many users in your organization have connected using the Skype for Business app. You'll also get a breakdown by the type of device (Windows, Windows phone, Android phone, iPhone, or iPad) on which the Skype for Business client app is installed and used across your organization. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getSkypeForBusinessDeviceUsageUserCounts + * Get the usage trends on how many users in your organization have connected using the Skype for Business app. You'll also get a breakdown by the type of device (Windows, Windows phone, Android phone, iPhone, or iPad) on which the Skype for Business client app is installed and used across your organization. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getSkypeForBusinessDeviceUsageUserCounts + * Get the usage trends on how many users in your organization have connected using the Skype for Business app. You'll also get a breakdown by the type of device (Windows, Windows phone, Android phone, iPhone, or iPad) on which the Skype for Business client app is installed and used across your organization. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getSkypeForBusinessDeviceUsageUserCounts + * Get the usage trends on how many users in your organization have connected using the Skype for Business app. You'll also get a breakdown by the type of device (Windows, Windows phone, Android phone, iPhone, or iPad) on which the Skype for Business client app is installed and used across your organization. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessdeviceusageuserdetailwithdate/GetSkypeForBusinessDeviceUsageUserDetailWithDateRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessdeviceusageuserdetailwithdate/GetSkypeForBusinessDeviceUsageUserDetailWithDateRequestBuilder.java index 54e9a93e69d..c8b9e2766bf 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessdeviceusageuserdetailwithdate/GetSkypeForBusinessDeviceUsageUserDetailWithDateRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessdeviceusageuserdetailwithdate/GetSkypeForBusinessDeviceUsageUserDetailWithDateRequestBuilder.java @@ -39,19 +39,21 @@ public GetSkypeForBusinessDeviceUsageUserDetailWithDateRequestBuilder(@jakarta.a super(requestAdapter, "{+baseurl}/reports/getSkypeForBusinessDeviceUsageUserDetail(date={date})", rawUrl); } /** - * Invoke function getSkypeForBusinessDeviceUsageUserDetail + * Get details about Skype for Business device usage by user. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getSkypeForBusinessDeviceUsageUserDetail + * Get details about Skype for Business device usage by user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -61,7 +63,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getSkypeForBusinessDeviceUsageUserDetail + * Get details about Skype for Business device usage by user. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -69,7 +71,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getSkypeForBusinessDeviceUsageUserDetail + * Get details about Skype for Business device usage by user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessorganizeractivitycountswithperiod/GetSkypeForBusinessOrganizerActivityCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessorganizeractivitycountswithperiod/GetSkypeForBusinessOrganizerActivityCountsWithPeriodRequestBuilder.java index b8aa06d12c2..e494a84d238 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessorganizeractivitycountswithperiod/GetSkypeForBusinessOrganizerActivityCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessorganizeractivitycountswithperiod/GetSkypeForBusinessOrganizerActivityCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetSkypeForBusinessOrganizerActivityCountsWithPeriodRequestBuilder(@jakar super(requestAdapter, "{+baseurl}/reports/getSkypeForBusinessOrganizerActivityCounts(period='{period}')", rawUrl); } /** - * Invoke function getSkypeForBusinessOrganizerActivityCounts + * Get usage trends on the number and type of conference sessions held and organized by users in your organization. Types of conference sessions include IM, audio/video, application sharing, web, dial-in/out - third party, and Dial-in/out Microsoft. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getSkypeForBusinessOrganizerActivityCounts + * Get usage trends on the number and type of conference sessions held and organized by users in your organization. Types of conference sessions include IM, audio/video, application sharing, web, dial-in/out - third party, and Dial-in/out Microsoft. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getSkypeForBusinessOrganizerActivityCounts + * Get usage trends on the number and type of conference sessions held and organized by users in your organization. Types of conference sessions include IM, audio/video, application sharing, web, dial-in/out - third party, and Dial-in/out Microsoft. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getSkypeForBusinessOrganizerActivityCounts + * Get usage trends on the number and type of conference sessions held and organized by users in your organization. Types of conference sessions include IM, audio/video, application sharing, web, dial-in/out - third party, and Dial-in/out Microsoft. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessorganizeractivityminutecountswithperiod/GetSkypeForBusinessOrganizerActivityMinuteCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessorganizeractivityminutecountswithperiod/GetSkypeForBusinessOrganizerActivityMinuteCountsWithPeriodRequestBuilder.java index 848ec556911..23c3f19010c 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessorganizeractivityminutecountswithperiod/GetSkypeForBusinessOrganizerActivityMinuteCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessorganizeractivityminutecountswithperiod/GetSkypeForBusinessOrganizerActivityMinuteCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetSkypeForBusinessOrganizerActivityMinuteCountsWithPeriodRequestBuilder( super(requestAdapter, "{+baseurl}/reports/getSkypeForBusinessOrganizerActivityMinuteCounts(period='{period}')", rawUrl); } /** - * Invoke function getSkypeForBusinessOrganizerActivityMinuteCounts + * Get usage trends on the length in minutes and type of conference sessions held and organized by users in your organization. Types of conference sessions include audio/video, and dial-in and dial-out - Microsoft. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getSkypeForBusinessOrganizerActivityMinuteCounts + * Get usage trends on the length in minutes and type of conference sessions held and organized by users in your organization. Types of conference sessions include audio/video, and dial-in and dial-out - Microsoft. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getSkypeForBusinessOrganizerActivityMinuteCounts + * Get usage trends on the length in minutes and type of conference sessions held and organized by users in your organization. Types of conference sessions include audio/video, and dial-in and dial-out - Microsoft. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getSkypeForBusinessOrganizerActivityMinuteCounts + * Get usage trends on the length in minutes and type of conference sessions held and organized by users in your organization. Types of conference sessions include audio/video, and dial-in and dial-out - Microsoft. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessorganizeractivityusercountswithperiod/GetSkypeForBusinessOrganizerActivityUserCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessorganizeractivityusercountswithperiod/GetSkypeForBusinessOrganizerActivityUserCountsWithPeriodRequestBuilder.java index 88c42b10019..106fdb3121f 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessorganizeractivityusercountswithperiod/GetSkypeForBusinessOrganizerActivityUserCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessorganizeractivityusercountswithperiod/GetSkypeForBusinessOrganizerActivityUserCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetSkypeForBusinessOrganizerActivityUserCountsWithPeriodRequestBuilder(@j super(requestAdapter, "{+baseurl}/reports/getSkypeForBusinessOrganizerActivityUserCounts(period='{period}')", rawUrl); } /** - * Invoke function getSkypeForBusinessOrganizerActivityUserCounts + * Get usage trends on the number of unique users and type of conference sessions held and organized by users in your organization. Types of conference sessions include IM, audio/video, application sharing, web, dial-in/out - third party, and dial-in/out Microsoft. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getSkypeForBusinessOrganizerActivityUserCounts + * Get usage trends on the number of unique users and type of conference sessions held and organized by users in your organization. Types of conference sessions include IM, audio/video, application sharing, web, dial-in/out - third party, and dial-in/out Microsoft. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getSkypeForBusinessOrganizerActivityUserCounts + * Get usage trends on the number of unique users and type of conference sessions held and organized by users in your organization. Types of conference sessions include IM, audio/video, application sharing, web, dial-in/out - third party, and dial-in/out Microsoft. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getSkypeForBusinessOrganizerActivityUserCounts + * Get usage trends on the number of unique users and type of conference sessions held and organized by users in your organization. Types of conference sessions include IM, audio/video, application sharing, web, dial-in/out - third party, and dial-in/out Microsoft. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessparticipantactivitycountswithperiod/GetSkypeForBusinessParticipantActivityCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessparticipantactivitycountswithperiod/GetSkypeForBusinessParticipantActivityCountsWithPeriodRequestBuilder.java index 18e1d392504..f51b7e1351f 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessparticipantactivitycountswithperiod/GetSkypeForBusinessParticipantActivityCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessparticipantactivitycountswithperiod/GetSkypeForBusinessParticipantActivityCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetSkypeForBusinessParticipantActivityCountsWithPeriodRequestBuilder(@jak super(requestAdapter, "{+baseurl}/reports/getSkypeForBusinessParticipantActivityCounts(period='{period}')", rawUrl); } /** - * Invoke function getSkypeForBusinessParticipantActivityCounts + * Get usage trends on the number and type of conference sessions that users from your organization participated in. Types of conference sessions include IM, audio/video, application sharing, web, and dial-in/out - third party. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getSkypeForBusinessParticipantActivityCounts + * Get usage trends on the number and type of conference sessions that users from your organization participated in. Types of conference sessions include IM, audio/video, application sharing, web, and dial-in/out - third party. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getSkypeForBusinessParticipantActivityCounts + * Get usage trends on the number and type of conference sessions that users from your organization participated in. Types of conference sessions include IM, audio/video, application sharing, web, and dial-in/out - third party. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getSkypeForBusinessParticipantActivityCounts + * Get usage trends on the number and type of conference sessions that users from your organization participated in. Types of conference sessions include IM, audio/video, application sharing, web, and dial-in/out - third party. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessparticipantactivityminutecountswithperiod/GetSkypeForBusinessParticipantActivityMinuteCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessparticipantactivityminutecountswithperiod/GetSkypeForBusinessParticipantActivityMinuteCountsWithPeriodRequestBuilder.java index f949082119a..0507ddd3ff5 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessparticipantactivityminutecountswithperiod/GetSkypeForBusinessParticipantActivityMinuteCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessparticipantactivityminutecountswithperiod/GetSkypeForBusinessParticipantActivityMinuteCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetSkypeForBusinessParticipantActivityMinuteCountsWithPeriodRequestBuilde super(requestAdapter, "{+baseurl}/reports/getSkypeForBusinessParticipantActivityMinuteCounts(period='{period}')", rawUrl); } /** - * Invoke function getSkypeForBusinessParticipantActivityMinuteCounts + * Get usage trends on the length in minutes and type of conference sessions that users from your organization participated in. Types of conference sessions include audio/video. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getSkypeForBusinessParticipantActivityMinuteCounts + * Get usage trends on the length in minutes and type of conference sessions that users from your organization participated in. Types of conference sessions include audio/video. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getSkypeForBusinessParticipantActivityMinuteCounts + * Get usage trends on the length in minutes and type of conference sessions that users from your organization participated in. Types of conference sessions include audio/video. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getSkypeForBusinessParticipantActivityMinuteCounts + * Get usage trends on the length in minutes and type of conference sessions that users from your organization participated in. Types of conference sessions include audio/video. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessparticipantactivityusercountswithperiod/GetSkypeForBusinessParticipantActivityUserCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessparticipantactivityusercountswithperiod/GetSkypeForBusinessParticipantActivityUserCountsWithPeriodRequestBuilder.java index 97c118c62a4..5bf6156a7ea 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessparticipantactivityusercountswithperiod/GetSkypeForBusinessParticipantActivityUserCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinessparticipantactivityusercountswithperiod/GetSkypeForBusinessParticipantActivityUserCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetSkypeForBusinessParticipantActivityUserCountsWithPeriodRequestBuilder( super(requestAdapter, "{+baseurl}/reports/getSkypeForBusinessParticipantActivityUserCounts(period='{period}')", rawUrl); } /** - * Invoke function getSkypeForBusinessParticipantActivityUserCounts + * Get usage trends on the number of unique users and type of conference sessions that users from your organization participated in. Types of conference sessions include IM, audio/video, application sharing, web, and dial-in/out - third party. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getSkypeForBusinessParticipantActivityUserCounts + * Get usage trends on the number of unique users and type of conference sessions that users from your organization participated in. Types of conference sessions include IM, audio/video, application sharing, web, and dial-in/out - third party. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getSkypeForBusinessParticipantActivityUserCounts + * Get usage trends on the number of unique users and type of conference sessions that users from your organization participated in. Types of conference sessions include IM, audio/video, application sharing, web, and dial-in/out - third party. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getSkypeForBusinessParticipantActivityUserCounts + * Get usage trends on the number of unique users and type of conference sessions that users from your organization participated in. Types of conference sessions include IM, audio/video, application sharing, web, and dial-in/out - third party. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinesspeertopeeractivitycountswithperiod/GetSkypeForBusinessPeerToPeerActivityCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinesspeertopeeractivitycountswithperiod/GetSkypeForBusinessPeerToPeerActivityCountsWithPeriodRequestBuilder.java index 40436a1258b..a3b1fd3b7ca 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinesspeertopeeractivitycountswithperiod/GetSkypeForBusinessPeerToPeerActivityCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinesspeertopeeractivitycountswithperiod/GetSkypeForBusinessPeerToPeerActivityCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetSkypeForBusinessPeerToPeerActivityCountsWithPeriodRequestBuilder(@jaka super(requestAdapter, "{+baseurl}/reports/getSkypeForBusinessPeerToPeerActivityCounts(period='{period}')", rawUrl); } /** - * Invoke function getSkypeForBusinessPeerToPeerActivityCounts + * Get usage trends on the number and type of sessions held in your organization. Types of sessions include IM, audio, video, application sharing, and file transfer. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getSkypeForBusinessPeerToPeerActivityCounts + * Get usage trends on the number and type of sessions held in your organization. Types of sessions include IM, audio, video, application sharing, and file transfer. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getSkypeForBusinessPeerToPeerActivityCounts + * Get usage trends on the number and type of sessions held in your organization. Types of sessions include IM, audio, video, application sharing, and file transfer. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getSkypeForBusinessPeerToPeerActivityCounts + * Get usage trends on the number and type of sessions held in your organization. Types of sessions include IM, audio, video, application sharing, and file transfer. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinesspeertopeeractivityminutecountswithperiod/GetSkypeForBusinessPeerToPeerActivityMinuteCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinesspeertopeeractivityminutecountswithperiod/GetSkypeForBusinessPeerToPeerActivityMinuteCountsWithPeriodRequestBuilder.java index f52929e6138..7e421f6236b 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinesspeertopeeractivityminutecountswithperiod/GetSkypeForBusinessPeerToPeerActivityMinuteCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinesspeertopeeractivityminutecountswithperiod/GetSkypeForBusinessPeerToPeerActivityMinuteCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetSkypeForBusinessPeerToPeerActivityMinuteCountsWithPeriodRequestBuilder super(requestAdapter, "{+baseurl}/reports/getSkypeForBusinessPeerToPeerActivityMinuteCounts(period='{period}')", rawUrl); } /** - * Invoke function getSkypeForBusinessPeerToPeerActivityMinuteCounts + * Get usage trends on the length in minutes and type of peer-to-peer sessions held in your organization. Types of sessions include audio and video. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getSkypeForBusinessPeerToPeerActivityMinuteCounts + * Get usage trends on the length in minutes and type of peer-to-peer sessions held in your organization. Types of sessions include audio and video. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getSkypeForBusinessPeerToPeerActivityMinuteCounts + * Get usage trends on the length in minutes and type of peer-to-peer sessions held in your organization. Types of sessions include audio and video. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getSkypeForBusinessPeerToPeerActivityMinuteCounts + * Get usage trends on the length in minutes and type of peer-to-peer sessions held in your organization. Types of sessions include audio and video. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinesspeertopeeractivityusercountswithperiod/GetSkypeForBusinessPeerToPeerActivityUserCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinesspeertopeeractivityusercountswithperiod/GetSkypeForBusinessPeerToPeerActivityUserCountsWithPeriodRequestBuilder.java index 6c6463be492..2e7dc599820 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinesspeertopeeractivityusercountswithperiod/GetSkypeForBusinessPeerToPeerActivityUserCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getskypeforbusinesspeertopeeractivityusercountswithperiod/GetSkypeForBusinessPeerToPeerActivityUserCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetSkypeForBusinessPeerToPeerActivityUserCountsWithPeriodRequestBuilder(@ super(requestAdapter, "{+baseurl}/reports/getSkypeForBusinessPeerToPeerActivityUserCounts(period='{period}')", rawUrl); } /** - * Invoke function getSkypeForBusinessPeerToPeerActivityUserCounts + * Get usage trends on the number of unique users and type of peer-to-peer sessions held in your organization. Types of sessions include IM, audio, video, application sharing, and file transfers in peer-to-peer sessions. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getSkypeForBusinessPeerToPeerActivityUserCounts + * Get usage trends on the number of unique users and type of peer-to-peer sessions held in your organization. Types of sessions include IM, audio, video, application sharing, and file transfers in peer-to-peer sessions. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getSkypeForBusinessPeerToPeerActivityUserCounts + * Get usage trends on the number of unique users and type of peer-to-peer sessions held in your organization. Types of sessions include IM, audio, video, application sharing, and file transfers in peer-to-peer sessions. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getSkypeForBusinessPeerToPeerActivityUserCounts + * Get usage trends on the number of unique users and type of peer-to-peer sessions held in your organization. Types of sessions include IM, audio, video, application sharing, and file transfers in peer-to-peer sessions. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getteamsdeviceusagedistributionusercountswithperiod/GetTeamsDeviceUsageDistributionUserCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getteamsdeviceusagedistributionusercountswithperiod/GetTeamsDeviceUsageDistributionUserCountsWithPeriodRequestBuilder.java index 4e61e457aab..19e5650a5eb 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getteamsdeviceusagedistributionusercountswithperiod/GetTeamsDeviceUsageDistributionUserCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getteamsdeviceusagedistributionusercountswithperiod/GetTeamsDeviceUsageDistributionUserCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetTeamsDeviceUsageDistributionUserCountsWithPeriodRequestBuilder(@jakart super(requestAdapter, "{+baseurl}/reports/getTeamsDeviceUsageDistributionUserCounts(period='{period}')", rawUrl); } /** - * Invoke function getTeamsDeviceUsageDistributionUserCounts + * Get the number of Microsoft Teams unique users by device type over the selected time period. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getTeamsDeviceUsageDistributionUserCounts + * Get the number of Microsoft Teams unique users by device type over the selected time period. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getTeamsDeviceUsageDistributionUserCounts + * Get the number of Microsoft Teams unique users by device type over the selected time period. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getTeamsDeviceUsageDistributionUserCounts + * Get the number of Microsoft Teams unique users by device type over the selected time period. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getteamsdeviceusageusercountswithperiod/GetTeamsDeviceUsageUserCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getteamsdeviceusageusercountswithperiod/GetTeamsDeviceUsageUserCountsWithPeriodRequestBuilder.java index de7d86242e0..47164c65beb 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getteamsdeviceusageusercountswithperiod/GetTeamsDeviceUsageUserCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getteamsdeviceusageusercountswithperiod/GetTeamsDeviceUsageUserCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetTeamsDeviceUsageUserCountsWithPeriodRequestBuilder(@jakarta.annotation super(requestAdapter, "{+baseurl}/reports/getTeamsDeviceUsageUserCounts(period='{period}')", rawUrl); } /** - * Invoke function getTeamsDeviceUsageUserCounts + * Get the number of Microsoft Teams daily unique users by device type. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getTeamsDeviceUsageUserCounts + * Get the number of Microsoft Teams daily unique users by device type. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getTeamsDeviceUsageUserCounts + * Get the number of Microsoft Teams daily unique users by device type. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getTeamsDeviceUsageUserCounts + * Get the number of Microsoft Teams daily unique users by device type. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getteamsteamactivitycountswithperiod/GetTeamsTeamActivityCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getteamsteamactivitycountswithperiod/GetTeamsTeamActivityCountsWithPeriodRequestBuilder.java index 380a669072c..ffed6f352c0 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getteamsteamactivitycountswithperiod/GetTeamsTeamActivityCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getteamsteamactivitycountswithperiod/GetTeamsTeamActivityCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetTeamsTeamActivityCountsWithPeriodRequestBuilder(@jakarta.annotation.No super(requestAdapter, "{+baseurl}/reports/getTeamsTeamActivityCounts(period='{period}')", rawUrl); } /** - * Invoke function getTeamsTeamActivityCounts + * Get the number of team activities across Microsoft Teams. The activity types are related to meetings and messages. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getTeamsTeamActivityCounts + * Get the number of team activities across Microsoft Teams. The activity types are related to meetings and messages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getTeamsTeamActivityCounts + * Get the number of team activities across Microsoft Teams. The activity types are related to meetings and messages. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getTeamsTeamActivityCounts + * Get the number of team activities across Microsoft Teams. The activity types are related to meetings and messages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getteamsteamactivitydistributioncountswithperiod/GetTeamsTeamActivityDistributionCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getteamsteamactivitydistributioncountswithperiod/GetTeamsTeamActivityDistributionCountsWithPeriodRequestBuilder.java index 960e1613a71..72396a1b2ad 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getteamsteamactivitydistributioncountswithperiod/GetTeamsTeamActivityDistributionCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getteamsteamactivitydistributioncountswithperiod/GetTeamsTeamActivityDistributionCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetTeamsTeamActivityDistributionCountsWithPeriodRequestBuilder(@jakarta.a super(requestAdapter, "{+baseurl}/reports/getTeamsTeamActivityDistributionCounts(period='{period}')", rawUrl); } /** - * Invoke function getTeamsTeamActivityDistributionCounts + * Get the number of team activities across Microsoft Teams over a selected period. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getTeamsTeamActivityDistributionCounts + * Get the number of team activities across Microsoft Teams over a selected period. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getTeamsTeamActivityDistributionCounts + * Get the number of team activities across Microsoft Teams over a selected period. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getTeamsTeamActivityDistributionCounts + * Get the number of team activities across Microsoft Teams over a selected period. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getteamsteamcountswithperiod/GetTeamsTeamCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getteamsteamcountswithperiod/GetTeamsTeamCountsWithPeriodRequestBuilder.java index a3a58612bf3..7a4752c94d6 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getteamsteamcountswithperiod/GetTeamsTeamCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getteamsteamcountswithperiod/GetTeamsTeamCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetTeamsTeamCountsWithPeriodRequestBuilder(@jakarta.annotation.Nonnull fi super(requestAdapter, "{+baseurl}/reports/getTeamsTeamCounts(period='{period}')", rawUrl); } /** - * Invoke function getTeamsTeamCounts + * Get the number of teams of a particular type in an instance of Microsoft Teams. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getTeamsTeamCounts + * Get the number of teams of a particular type in an instance of Microsoft Teams. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getTeamsTeamCounts + * Get the number of teams of a particular type in an instance of Microsoft Teams. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getTeamsTeamCounts + * Get the number of teams of a particular type in an instance of Microsoft Teams. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getteamsuseractivitycountswithperiod/GetTeamsUserActivityCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getteamsuseractivitycountswithperiod/GetTeamsUserActivityCountsWithPeriodRequestBuilder.java index e53984f6532..ee24f66a852 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getteamsuseractivitycountswithperiod/GetTeamsUserActivityCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getteamsuseractivitycountswithperiod/GetTeamsUserActivityCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetTeamsUserActivityCountsWithPeriodRequestBuilder(@jakarta.annotation.No super(requestAdapter, "{+baseurl}/reports/getTeamsUserActivityCounts(period='{period}')", rawUrl); } /** - * Invoke function getTeamsUserActivityCounts + * Get the number of Microsoft Teams activities by activity type. The activities are performed by Microsoft Teams licensed users. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getTeamsUserActivityCounts + * Get the number of Microsoft Teams activities by activity type. The activities are performed by Microsoft Teams licensed users. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getTeamsUserActivityCounts + * Get the number of Microsoft Teams activities by activity type. The activities are performed by Microsoft Teams licensed users. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getTeamsUserActivityCounts + * Get the number of Microsoft Teams activities by activity type. The activities are performed by Microsoft Teams licensed users. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getteamsuseractivityusercountswithperiod/GetTeamsUserActivityUserCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getteamsuseractivityusercountswithperiod/GetTeamsUserActivityUserCountsWithPeriodRequestBuilder.java index 0bd903b20f8..9c76554ecc8 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getteamsuseractivityusercountswithperiod/GetTeamsUserActivityUserCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getteamsuseractivityusercountswithperiod/GetTeamsUserActivityUserCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetTeamsUserActivityUserCountsWithPeriodRequestBuilder(@jakarta.annotatio super(requestAdapter, "{+baseurl}/reports/getTeamsUserActivityUserCounts(period='{period}')", rawUrl); } /** - * Invoke function getTeamsUserActivityUserCounts + * Get the number of Microsoft Teams users by activity type. The activity types are number of teams chat messages, private chat messages, calls, or meetings. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getTeamsUserActivityUserCounts + * Get the number of Microsoft Teams users by activity type. The activity types are number of teams chat messages, private chat messages, calls, or meetings. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getTeamsUserActivityUserCounts + * Get the number of Microsoft Teams users by activity type. The activity types are number of teams chat messages, private chat messages, calls, or meetings. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getTeamsUserActivityUserCounts + * Get the number of Microsoft Teams users by activity type. The activity types are number of teams chat messages, private chat messages, calls, or meetings. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getuserarchivedprintjobswithuseridwithstartdatetimewithenddatetime/GetUserArchivedPrintJobsWithUserIdWithStartDateTimeWithEndDateTimeRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getuserarchivedprintjobswithuseridwithstartdatetimewithenddatetime/GetUserArchivedPrintJobsWithUserIdWithStartDateTimeWithEndDateTimeRequestBuilder.java index 1a43edb7196..33577ad1c6c 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getuserarchivedprintjobswithuseridwithstartdatetimewithenddatetime/GetUserArchivedPrintJobsWithUserIdWithStartDateTimeWithEndDateTimeRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getuserarchivedprintjobswithuseridwithstartdatetimewithenddatetime/GetUserArchivedPrintJobsWithUserIdWithStartDateTimeWithEndDateTimeRequestBuilder.java @@ -43,19 +43,21 @@ public GetUserArchivedPrintJobsWithUserIdWithStartDateTimeWithEndDateTimeRequest super(requestAdapter, "{+baseurl}/reports/getUserArchivedPrintJobs(userId='{userId}',startDateTime={startDateTime},endDateTime={endDateTime}){?%24count,%24filter,%24search,%24skip,%24top}", rawUrl); } /** - * Invoke function getUserArchivedPrintJobs + * Get a list of archived print jobs for a particular user. * @return a {@link GetUserArchivedPrintJobsWithUserIdWithStartDateTimeWithEndDateTimeGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetUserArchivedPrintJobsWithUserIdWithStartDateTimeWithEndDateTimeGetResponse get() { return get(null); } /** - * Invoke function getUserArchivedPrintJobs + * Get a list of archived print jobs for a particular user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GetUserArchivedPrintJobsWithUserIdWithStartDateTimeWithEndDateTimeGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetUserArchivedPrintJobsWithUserIdWithStartDateTimeWithEndDateTimeGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -65,7 +67,7 @@ public GetUserArchivedPrintJobsWithUserIdWithStartDateTimeWithEndDateTimeGetResp return this.requestAdapter.send(requestInfo, errorMapping, GetUserArchivedPrintJobsWithUserIdWithStartDateTimeWithEndDateTimeGetResponse::createFromDiscriminatorValue); } /** - * Invoke function getUserArchivedPrintJobs + * Get a list of archived print jobs for a particular user. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -73,7 +75,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getUserArchivedPrintJobs + * Get a list of archived print jobs for a particular user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -95,7 +97,7 @@ public GetUserArchivedPrintJobsWithUserIdWithStartDateTimeWithEndDateTimeRequest return new GetUserArchivedPrintJobsWithUserIdWithStartDateTimeWithEndDateTimeRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function getUserArchivedPrintJobs + * Get a list of archived print jobs for a particular user. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/reports/getyammeractivitycountswithperiod/GetYammerActivityCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getyammeractivitycountswithperiod/GetYammerActivityCountsWithPeriodRequestBuilder.java index dbbc5583d65..28d83d50420 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getyammeractivitycountswithperiod/GetYammerActivityCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getyammeractivitycountswithperiod/GetYammerActivityCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetYammerActivityCountsWithPeriodRequestBuilder(@jakarta.annotation.Nonnu super(requestAdapter, "{+baseurl}/reports/getYammerActivityCounts(period='{period}')", rawUrl); } /** - * Invoke function getYammerActivityCounts + * Get the trends on the amount of Yammer activity in your organization by how many messages were posted, read, and liked. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getYammerActivityCounts + * Get the trends on the amount of Yammer activity in your organization by how many messages were posted, read, and liked. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getYammerActivityCounts + * Get the trends on the amount of Yammer activity in your organization by how many messages were posted, read, and liked. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getYammerActivityCounts + * Get the trends on the amount of Yammer activity in your organization by how many messages were posted, read, and liked. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getyammeractivityusercountswithperiod/GetYammerActivityUserCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getyammeractivityusercountswithperiod/GetYammerActivityUserCountsWithPeriodRequestBuilder.java index 3f9772ee1b9..4fbc31aac43 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getyammeractivityusercountswithperiod/GetYammerActivityUserCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getyammeractivityusercountswithperiod/GetYammerActivityUserCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetYammerActivityUserCountsWithPeriodRequestBuilder(@jakarta.annotation.N super(requestAdapter, "{+baseurl}/reports/getYammerActivityUserCounts(period='{period}')", rawUrl); } /** - * Invoke function getYammerActivityUserCounts + * Get the trends on the number of unique users who posted, read, and liked Yammer messages. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getYammerActivityUserCounts + * Get the trends on the number of unique users who posted, read, and liked Yammer messages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getYammerActivityUserCounts + * Get the trends on the number of unique users who posted, read, and liked Yammer messages. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getYammerActivityUserCounts + * Get the trends on the number of unique users who posted, read, and liked Yammer messages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getyammeractivityuserdetailwithdate/GetYammerActivityUserDetailWithDateRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getyammeractivityuserdetailwithdate/GetYammerActivityUserDetailWithDateRequestBuilder.java index 48c943b6ce3..62406da8f9f 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getyammeractivityuserdetailwithdate/GetYammerActivityUserDetailWithDateRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getyammeractivityuserdetailwithdate/GetYammerActivityUserDetailWithDateRequestBuilder.java @@ -39,19 +39,21 @@ public GetYammerActivityUserDetailWithDateRequestBuilder(@jakarta.annotation.Non super(requestAdapter, "{+baseurl}/reports/getYammerActivityUserDetail(date={date})", rawUrl); } /** - * Invoke function getYammerActivityUserDetail + * Get details about Yammer activity by user. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getYammerActivityUserDetail + * Get details about Yammer activity by user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -61,7 +63,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getYammerActivityUserDetail + * Get details about Yammer activity by user. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -69,7 +71,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getYammerActivityUserDetail + * Get details about Yammer activity by user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getyammerdeviceusagedistributionusercountswithperiod/GetYammerDeviceUsageDistributionUserCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getyammerdeviceusagedistributionusercountswithperiod/GetYammerDeviceUsageDistributionUserCountsWithPeriodRequestBuilder.java index cf150e20801..6f8b8c016ea 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getyammerdeviceusagedistributionusercountswithperiod/GetYammerDeviceUsageDistributionUserCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getyammerdeviceusagedistributionusercountswithperiod/GetYammerDeviceUsageDistributionUserCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetYammerDeviceUsageDistributionUserCountsWithPeriodRequestBuilder(@jakar super(requestAdapter, "{+baseurl}/reports/getYammerDeviceUsageDistributionUserCounts(period='{period}')", rawUrl); } /** - * Invoke function getYammerDeviceUsageDistributionUserCounts + * Get the number of users by device type. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getYammerDeviceUsageDistributionUserCounts + * Get the number of users by device type. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getYammerDeviceUsageDistributionUserCounts + * Get the number of users by device type. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getYammerDeviceUsageDistributionUserCounts + * Get the number of users by device type. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getyammerdeviceusageusercountswithperiod/GetYammerDeviceUsageUserCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getyammerdeviceusageusercountswithperiod/GetYammerDeviceUsageUserCountsWithPeriodRequestBuilder.java index ce79a3280ea..9af27f64da6 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getyammerdeviceusageusercountswithperiod/GetYammerDeviceUsageUserCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getyammerdeviceusageusercountswithperiod/GetYammerDeviceUsageUserCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetYammerDeviceUsageUserCountsWithPeriodRequestBuilder(@jakarta.annotatio super(requestAdapter, "{+baseurl}/reports/getYammerDeviceUsageUserCounts(period='{period}')", rawUrl); } /** - * Invoke function getYammerDeviceUsageUserCounts + * Get the number of daily users by device type. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getYammerDeviceUsageUserCounts + * Get the number of daily users by device type. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getYammerDeviceUsageUserCounts + * Get the number of daily users by device type. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getYammerDeviceUsageUserCounts + * Get the number of daily users by device type. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getyammerdeviceusageuserdetailwithdate/GetYammerDeviceUsageUserDetailWithDateRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getyammerdeviceusageuserdetailwithdate/GetYammerDeviceUsageUserDetailWithDateRequestBuilder.java index a48d88b28a2..a1c17ff25fd 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getyammerdeviceusageuserdetailwithdate/GetYammerDeviceUsageUserDetailWithDateRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getyammerdeviceusageuserdetailwithdate/GetYammerDeviceUsageUserDetailWithDateRequestBuilder.java @@ -39,19 +39,21 @@ public GetYammerDeviceUsageUserDetailWithDateRequestBuilder(@jakarta.annotation. super(requestAdapter, "{+baseurl}/reports/getYammerDeviceUsageUserDetail(date={date})", rawUrl); } /** - * Invoke function getYammerDeviceUsageUserDetail + * Get details about Yammer device usage by user. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getYammerDeviceUsageUserDetail + * Get details about Yammer device usage by user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -61,7 +63,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getYammerDeviceUsageUserDetail + * Get details about Yammer device usage by user. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -69,7 +71,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getYammerDeviceUsageUserDetail + * Get details about Yammer device usage by user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getyammergroupsactivitycountswithperiod/GetYammerGroupsActivityCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getyammergroupsactivitycountswithperiod/GetYammerGroupsActivityCountsWithPeriodRequestBuilder.java index df40a1c6ebc..e2c2ab77901 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getyammergroupsactivitycountswithperiod/GetYammerGroupsActivityCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getyammergroupsactivitycountswithperiod/GetYammerGroupsActivityCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetYammerGroupsActivityCountsWithPeriodRequestBuilder(@jakarta.annotation super(requestAdapter, "{+baseurl}/reports/getYammerGroupsActivityCounts(period='{period}')", rawUrl); } /** - * Invoke function getYammerGroupsActivityCounts + * Get the number of Yammer messages posted, read, and liked in groups. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getYammerGroupsActivityCounts + * Get the number of Yammer messages posted, read, and liked in groups. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getYammerGroupsActivityCounts + * Get the number of Yammer messages posted, read, and liked in groups. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getYammerGroupsActivityCounts + * Get the number of Yammer messages posted, read, and liked in groups. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getyammergroupsactivitydetailwithdate/GetYammerGroupsActivityDetailWithDateRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getyammergroupsactivitydetailwithdate/GetYammerGroupsActivityDetailWithDateRequestBuilder.java index a7ae4dc9bdb..885fd8cdd5f 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getyammergroupsactivitydetailwithdate/GetYammerGroupsActivityDetailWithDateRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getyammergroupsactivitydetailwithdate/GetYammerGroupsActivityDetailWithDateRequestBuilder.java @@ -39,19 +39,21 @@ public GetYammerGroupsActivityDetailWithDateRequestBuilder(@jakarta.annotation.N super(requestAdapter, "{+baseurl}/reports/getYammerGroupsActivityDetail(date={date})", rawUrl); } /** - * Invoke function getYammerGroupsActivityDetail + * Get details about Yammer groups activity by group. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getYammerGroupsActivityDetail + * Get details about Yammer groups activity by group. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -61,7 +63,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getYammerGroupsActivityDetail + * Get details about Yammer groups activity by group. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -69,7 +71,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getYammerGroupsActivityDetail + * Get details about Yammer groups activity by group. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/getyammergroupsactivitygroupcountswithperiod/GetYammerGroupsActivityGroupCountsWithPeriodRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/getyammergroupsactivitygroupcountswithperiod/GetYammerGroupsActivityGroupCountsWithPeriodRequestBuilder.java index 3417e65e2d5..0149e459151 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/getyammergroupsactivitygroupcountswithperiod/GetYammerGroupsActivityGroupCountsWithPeriodRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/getyammergroupsactivitygroupcountswithperiod/GetYammerGroupsActivityGroupCountsWithPeriodRequestBuilder.java @@ -38,19 +38,21 @@ public GetYammerGroupsActivityGroupCountsWithPeriodRequestBuilder(@jakarta.annot super(requestAdapter, "{+baseurl}/reports/getYammerGroupsActivityGroupCounts(period='{period}')", rawUrl); } /** - * Invoke function getYammerGroupsActivityGroupCounts + * Get the total number of groups that existed and how many included group conversation activities. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getYammerGroupsActivityGroupCounts + * Get the total number of groups that existed and how many included group conversation activities. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getYammerGroupsActivityGroupCounts + * Get the total number of groups that existed and how many included group conversation activities. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getYammerGroupsActivityGroupCounts + * Get the total number of groups that existed and how many included group conversation activities. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/reports/monthlyprintusagebyprinter/MonthlyPrintUsageByPrinterRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/monthlyprintusagebyprinter/MonthlyPrintUsageByPrinterRequestBuilder.java index 7392a7bd142..9952f4747f1 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/monthlyprintusagebyprinter/MonthlyPrintUsageByPrinterRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/monthlyprintusagebyprinter/MonthlyPrintUsageByPrinterRequestBuilder.java @@ -63,7 +63,6 @@ public MonthlyPrintUsageByPrinterRequestBuilder(@jakarta.annotation.Nonnull fina * Retrieve a list of monthly print usage summaries, grouped by printer. * @return a {@link PrintUsageByPrinterCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintUsageByPrinterCollectionResponse get() { @@ -74,7 +73,6 @@ public PrintUsageByPrinterCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrintUsageByPrinterCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintUsageByPrinterCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/reports/monthlyprintusagebyuser/MonthlyPrintUsageByUserRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/monthlyprintusagebyuser/MonthlyPrintUsageByUserRequestBuilder.java index 36942c4a61e..8711a98a95b 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/monthlyprintusagebyuser/MonthlyPrintUsageByUserRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/monthlyprintusagebyuser/MonthlyPrintUsageByUserRequestBuilder.java @@ -63,7 +63,6 @@ public MonthlyPrintUsageByUserRequestBuilder(@jakarta.annotation.Nonnull final S * Retrieve a list of monthly print usage summaries, grouped by user. * @return a {@link PrintUsageByUserCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintUsageByUserCollectionResponse get() { @@ -74,7 +73,6 @@ public PrintUsageByUserCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PrintUsageByUserCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PrintUsageByUserCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/reports/partners/billing/manifests/ManifestsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/partners/billing/manifests/ManifestsRequestBuilder.java index 4e79f3f2427..8cbcf0146e7 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/partners/billing/manifests/ManifestsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/partners/billing/manifests/ManifestsRequestBuilder.java @@ -60,7 +60,7 @@ public ManifestsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/reports/partners/billing/manifests{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Read the properties and relationships of a manifest object. + * Represents metadata for the exported data. * @return a {@link ManifestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public ManifestCollectionResponse get() { return get(null); } /** - * Read the properties and relationships of a manifest object. + * Represents metadata for the exported data. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ManifestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public Manifest post(@jakarta.annotation.Nonnull final Manifest body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, Manifest::createFromDiscriminatorValue); } /** - * Read the properties and relationships of a manifest object. + * Represents metadata for the exported data. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a manifest object. + * Represents metadata for the exported data. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public ManifestsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ManifestsRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of a manifest object. + * Represents metadata for the exported data. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/reports/partners/billing/manifests/item/ManifestItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/partners/billing/manifests/item/ManifestItemRequestBuilder.java index dd8581757c4..b4b1d3fb874 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/partners/billing/manifests/item/ManifestItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/partners/billing/manifests/item/ManifestItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a manifest object. + * Represents metadata for the exported data. * @return a {@link Manifest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Manifest get() { return get(null); } /** - * Read the properties and relationships of a manifest object. + * Represents metadata for the exported data. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Manifest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Manifest get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a manifest object. + * Represents metadata for the exported data. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a manifest object. + * Represents metadata for the exported data. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public ManifestItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a manifest object. + * Represents metadata for the exported data. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/reports/partners/billing/operations/OperationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/partners/billing/operations/OperationsRequestBuilder.java index 3e259e1e8ad..1b71e1fb006 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/partners/billing/operations/OperationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/partners/billing/operations/OperationsRequestBuilder.java @@ -60,7 +60,7 @@ public OperationsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/reports/partners/billing/operations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Read the properties and relationships of an operation object. + * Represents an operation to export the billing data of a partner. * @return a {@link OperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public OperationCollectionResponse get() { return get(null); } /** - * Read the properties and relationships of an operation object. + * Represents an operation to export the billing data of a partner. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public Operation post(@jakarta.annotation.Nonnull final Operation body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, Operation::createFromDiscriminatorValue); } /** - * Read the properties and relationships of an operation object. + * Represents an operation to export the billing data of a partner. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of an operation object. + * Represents an operation to export the billing data of a partner. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public OperationsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new OperationsRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of an operation object. + * Represents an operation to export the billing data of a partner. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/reports/partners/billing/operations/item/OperationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/partners/billing/operations/item/OperationItemRequestBuilder.java index 8ed175bc9fd..2c1c72b11be 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/partners/billing/operations/item/OperationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/partners/billing/operations/item/OperationItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of an operation object. + * Represents an operation to export the billing data of a partner. * @return a {@link Operation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Operation get() { return get(null); } /** - * Read the properties and relationships of an operation object. + * Represents an operation to export the billing data of a partner. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Operation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Operation get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of an operation object. + * Represents an operation to export the billing data of a partner. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of an operation object. + * Represents an operation to export the billing data of a partner. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public OperationItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of an operation object. + * Represents an operation to export the billing data of a partner. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/reports/security/getattacksimulationrepeatoffenders/GetAttackSimulationRepeatOffendersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/security/getattacksimulationrepeatoffenders/GetAttackSimulationRepeatOffendersRequestBuilder.java index a833348336c..b0b44023b3d 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/security/getattacksimulationrepeatoffenders/GetAttackSimulationRepeatOffendersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/security/getattacksimulationrepeatoffenders/GetAttackSimulationRepeatOffendersRequestBuilder.java @@ -36,19 +36,21 @@ public GetAttackSimulationRepeatOffendersRequestBuilder(@jakarta.annotation.Nonn super(requestAdapter, "{+baseurl}/reports/security/getAttackSimulationRepeatOffenders(){?%24count,%24filter,%24search,%24skip,%24top}", rawUrl); } /** - * Invoke function getAttackSimulationRepeatOffenders + * List the tenant users who have yielded to attacks more than once in attack simulation and training campaigns. This function supports @odata.nextLink for pagination. * @return a {@link GetAttackSimulationRepeatOffendersGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetAttackSimulationRepeatOffendersGetResponse get() { return get(null); } /** - * Invoke function getAttackSimulationRepeatOffenders + * List the tenant users who have yielded to attacks more than once in attack simulation and training campaigns. This function supports @odata.nextLink for pagination. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GetAttackSimulationRepeatOffendersGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetAttackSimulationRepeatOffendersGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public GetAttackSimulationRepeatOffendersGetResponse get(@jakarta.annotation.Nul return this.requestAdapter.send(requestInfo, errorMapping, GetAttackSimulationRepeatOffendersGetResponse::createFromDiscriminatorValue); } /** - * Invoke function getAttackSimulationRepeatOffenders + * List the tenant users who have yielded to attacks more than once in attack simulation and training campaigns. This function supports @odata.nextLink for pagination. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getAttackSimulationRepeatOffenders + * List the tenant users who have yielded to attacks more than once in attack simulation and training campaigns. This function supports @odata.nextLink for pagination. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public GetAttackSimulationRepeatOffendersRequestBuilder withUrl(@jakarta.annotat return new GetAttackSimulationRepeatOffendersRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function getAttackSimulationRepeatOffenders + * List the tenant users who have yielded to attacks more than once in attack simulation and training campaigns. This function supports @odata.nextLink for pagination. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/reports/security/getattacksimulationsimulationusercoverage/GetAttackSimulationSimulationUserCoverageRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/security/getattacksimulationsimulationusercoverage/GetAttackSimulationSimulationUserCoverageRequestBuilder.java index c9bf307642c..db0a29acc84 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/security/getattacksimulationsimulationusercoverage/GetAttackSimulationSimulationUserCoverageRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/security/getattacksimulationsimulationusercoverage/GetAttackSimulationSimulationUserCoverageRequestBuilder.java @@ -36,19 +36,21 @@ public GetAttackSimulationSimulationUserCoverageRequestBuilder(@jakarta.annotati super(requestAdapter, "{+baseurl}/reports/security/getAttackSimulationSimulationUserCoverage(){?%24count,%24filter,%24search,%24skip,%24top}", rawUrl); } /** - * Invoke function getAttackSimulationSimulationUserCoverage + * List training coverage for each tenant user in attack simulation and training campaigns. This function supports @odata.nextLink for pagination. * @return a {@link GetAttackSimulationSimulationUserCoverageGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetAttackSimulationSimulationUserCoverageGetResponse get() { return get(null); } /** - * Invoke function getAttackSimulationSimulationUserCoverage + * List training coverage for each tenant user in attack simulation and training campaigns. This function supports @odata.nextLink for pagination. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GetAttackSimulationSimulationUserCoverageGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetAttackSimulationSimulationUserCoverageGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public GetAttackSimulationSimulationUserCoverageGetResponse get(@jakarta.annotat return this.requestAdapter.send(requestInfo, errorMapping, GetAttackSimulationSimulationUserCoverageGetResponse::createFromDiscriminatorValue); } /** - * Invoke function getAttackSimulationSimulationUserCoverage + * List training coverage for each tenant user in attack simulation and training campaigns. This function supports @odata.nextLink for pagination. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getAttackSimulationSimulationUserCoverage + * List training coverage for each tenant user in attack simulation and training campaigns. This function supports @odata.nextLink for pagination. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public GetAttackSimulationSimulationUserCoverageRequestBuilder withUrl(@jakarta. return new GetAttackSimulationSimulationUserCoverageRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function getAttackSimulationSimulationUserCoverage + * List training coverage for each tenant user in attack simulation and training campaigns. This function supports @odata.nextLink for pagination. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/reports/security/getattacksimulationtrainingusercoverage/GetAttackSimulationTrainingUserCoverageRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/reports/security/getattacksimulationtrainingusercoverage/GetAttackSimulationTrainingUserCoverageRequestBuilder.java index 4a053ba456f..f7a3edec569 100644 --- a/src/main/java/com/microsoft/graph/generated/reports/security/getattacksimulationtrainingusercoverage/GetAttackSimulationTrainingUserCoverageRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/reports/security/getattacksimulationtrainingusercoverage/GetAttackSimulationTrainingUserCoverageRequestBuilder.java @@ -36,19 +36,21 @@ public GetAttackSimulationTrainingUserCoverageRequestBuilder(@jakarta.annotation super(requestAdapter, "{+baseurl}/reports/security/getAttackSimulationTrainingUserCoverage(){?%24count,%24filter,%24search,%24skip,%24top}", rawUrl); } /** - * Invoke function getAttackSimulationTrainingUserCoverage + * List training coverage for tenant users in attack simulation and training campaigns. This function supports @odata.nextLink for pagination. * @return a {@link GetAttackSimulationTrainingUserCoverageGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetAttackSimulationTrainingUserCoverageGetResponse get() { return get(null); } /** - * Invoke function getAttackSimulationTrainingUserCoverage + * List training coverage for tenant users in attack simulation and training campaigns. This function supports @odata.nextLink for pagination. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GetAttackSimulationTrainingUserCoverageGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetAttackSimulationTrainingUserCoverageGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public GetAttackSimulationTrainingUserCoverageGetResponse get(@jakarta.annotatio return this.requestAdapter.send(requestInfo, errorMapping, GetAttackSimulationTrainingUserCoverageGetResponse::createFromDiscriminatorValue); } /** - * Invoke function getAttackSimulationTrainingUserCoverage + * List training coverage for tenant users in attack simulation and training campaigns. This function supports @odata.nextLink for pagination. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getAttackSimulationTrainingUserCoverage + * List training coverage for tenant users in attack simulation and training campaigns. This function supports @odata.nextLink for pagination. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public GetAttackSimulationTrainingUserCoverageRequestBuilder withUrl(@jakarta.an return new GetAttackSimulationTrainingUserCoverageRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function getAttackSimulationTrainingUserCoverage + * List training coverage for tenant users in attack simulation and training campaigns. This function supports @odata.nextLink for pagination. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignments/RoleAssignmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignments/RoleAssignmentsRequestBuilder.java index 2e584f955ce..36fe766b60b 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignments/RoleAssignmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignments/RoleAssignmentsRequestBuilder.java @@ -60,21 +60,19 @@ public RoleAssignmentsRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/roleManagement/directory/roleAssignments{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of unifiedRoleAssignment objects for the RBAC provider. The following RBAC providers are currently supported:- directory (Microsoft Entra ID)- entitlement management (Microsoft Entra entitlement management) + * Resource to grant access to users or groups. * @return a {@link UnifiedRoleAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleAssignmentCollectionResponse get() { return get(null); } /** - * Get a list of unifiedRoleAssignment objects for the RBAC provider. The following RBAC providers are currently supported:- directory (Microsoft Entra ID)- entitlement management (Microsoft Entra entitlement management) + * Resource to grant access to users or groups. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleAssignmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public UnifiedRoleAssignmentCollectionResponse get(@jakarta.annotation.Nullable return this.requestAdapter.send(requestInfo, errorMapping, UnifiedRoleAssignmentCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new unifiedRoleAssignment object. + * Create new navigation property to roleAssignments for roleManagement * @param body The request body * @return a {@link UnifiedRoleAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleAssignment post(@jakarta.annotation.Nonnull final UnifiedRoleAssignment body) { return post(body, null); } /** - * Create a new unifiedRoleAssignment object. + * Create new navigation property to roleAssignments for roleManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleAssignment post(@jakarta.annotation.Nonnull final UnifiedRoleAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public UnifiedRoleAssignment post(@jakarta.annotation.Nonnull final UnifiedRoleA return this.requestAdapter.send(requestInfo, errorMapping, UnifiedRoleAssignment::createFromDiscriminatorValue); } /** - * Get a list of unifiedRoleAssignment objects for the RBAC provider. The following RBAC providers are currently supported:- directory (Microsoft Entra ID)- entitlement management (Microsoft Entra entitlement management) + * Resource to grant access to users or groups. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of unifiedRoleAssignment objects for the RBAC provider. The following RBAC providers are currently supported:- directory (Microsoft Entra ID)- entitlement management (Microsoft Entra entitlement management) + * Resource to grant access to users or groups. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new unifiedRoleAssignment object. + * Create new navigation property to roleAssignments for roleManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new unifiedRoleAssignment object. + * Create new navigation property to roleAssignments for roleManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public RoleAssignmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final S return new RoleAssignmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of unifiedRoleAssignment objects for the RBAC provider. The following RBAC providers are currently supported:- directory (Microsoft Entra ID)- entitlement management (Microsoft Entra entitlement management) + * Resource to grant access to users or groups. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignments/item/UnifiedRoleAssignmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignments/item/UnifiedRoleAssignmentItemRequestBuilder.java index 77f99ec9ab6..476e1bdeb05 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignments/item/UnifiedRoleAssignmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignments/item/UnifiedRoleAssignmentItemRequestBuilder.java @@ -73,18 +73,16 @@ public UnifiedRoleAssignmentItemRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/roleManagement/directory/roleAssignments/{unifiedRoleAssignment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a unifiedRoleAssignment object. + * Delete navigation property roleAssignments for roleManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a unifiedRoleAssignment object. + * Delete navigation property roleAssignments for roleManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -93,21 +91,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a unifiedRoleAssignment object. + * Resource to grant access to users or groups. * @return a {@link UnifiedRoleAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleAssignment get() { return get(null); } /** - * Retrieve the properties and relationships of a unifiedRoleAssignment object. + * Resource to grant access to users or groups. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleAssignment get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -142,7 +138,7 @@ public UnifiedRoleAssignment patch(@jakarta.annotation.Nonnull final UnifiedRole return this.requestAdapter.send(requestInfo, errorMapping, UnifiedRoleAssignment::createFromDiscriminatorValue); } /** - * Delete a unifiedRoleAssignment object. + * Delete navigation property roleAssignments for roleManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -150,7 +146,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a unifiedRoleAssignment object. + * Delete navigation property roleAssignments for roleManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -162,7 +158,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a unifiedRoleAssignment object. + * Resource to grant access to users or groups. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -170,7 +166,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a unifiedRoleAssignment object. + * Resource to grant access to users or groups. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -222,7 +218,7 @@ public UnifiedRoleAssignmentItemRequestBuilder withUrl(@jakarta.annotation.Nonnu public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a unifiedRoleAssignment object. + * Resource to grant access to users or groups. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignmentscheduleinstances/RoleAssignmentScheduleInstancesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignmentscheduleinstances/RoleAssignmentScheduleInstancesRequestBuilder.java index f479b5db9d6..957145b4982 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignmentscheduleinstances/RoleAssignmentScheduleInstancesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignmentscheduleinstances/RoleAssignmentScheduleInstancesRequestBuilder.java @@ -71,21 +71,19 @@ public FilterByCurrentUserWithOnRequestBuilder filterByCurrentUserWithOn(@jakart return new FilterByCurrentUserWithOnRequestBuilder(pathParameters, requestAdapter, on); } /** - * Get the instances of active role assignments in your tenant. The active assignments include those made through assignments and activation requests, and directly through the role assignments API. + * Instances for active role assignments. * @return a {@link UnifiedRoleAssignmentScheduleInstanceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleAssignmentScheduleInstanceCollectionResponse get() { return get(null); } /** - * Get the instances of active role assignments in your tenant. The active assignments include those made through assignments and activation requests, and directly through the role assignments API. + * Instances for active role assignments. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleAssignmentScheduleInstanceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleAssignmentScheduleInstanceCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +118,7 @@ public UnifiedRoleAssignmentScheduleInstance post(@jakarta.annotation.Nonnull fi return this.requestAdapter.send(requestInfo, errorMapping, UnifiedRoleAssignmentScheduleInstance::createFromDiscriminatorValue); } /** - * Get the instances of active role assignments in your tenant. The active assignments include those made through assignments and activation requests, and directly through the role assignments API. + * Instances for active role assignments. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +126,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the instances of active role assignments in your tenant. The active assignments include those made through assignments and activation requests, and directly through the role assignments API. + * Instances for active role assignments. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -174,7 +172,7 @@ public RoleAssignmentScheduleInstancesRequestBuilder withUrl(@jakarta.annotation return new RoleAssignmentScheduleInstancesRequestBuilder(rawUrl, requestAdapter); } /** - * Get the instances of active role assignments in your tenant. The active assignments include those made through assignments and activation requests, and directly through the role assignments API. + * Instances for active role assignments. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignmentscheduleinstances/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignmentscheduleinstances/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java index 4f59de08034..2fa7ee550a3 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignmentscheduleinstances/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignmentscheduleinstances/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java @@ -38,19 +38,21 @@ public FilterByCurrentUserWithOnRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/roleManagement/directory/roleAssignmentScheduleInstances/filterByCurrentUser(on='{on}'){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function filterByCurrentUser + * Get the instances of active role assignments for the calling principal. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get() { return get(null); } /** - * Invoke function filterByCurrentUser + * Get the instances of active role assignments for the calling principal. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, FilterByCurrentUserWithOnGetResponse::createFromDiscriminatorValue); } /** - * Invoke function filterByCurrentUser + * Get the instances of active role assignments for the calling principal. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function filterByCurrentUser + * Get the instances of active role assignments for the calling principal. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -90,7 +92,7 @@ public FilterByCurrentUserWithOnRequestBuilder withUrl(@jakarta.annotation.Nonnu return new FilterByCurrentUserWithOnRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function filterByCurrentUser + * Get the instances of active role assignments for the calling principal. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignmentscheduleinstances/item/UnifiedRoleAssignmentScheduleInstanceItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignmentscheduleinstances/item/UnifiedRoleAssignmentScheduleInstanceItemRequestBuilder.java index 9ab327e0366..af814f18d8a 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignmentscheduleinstances/item/UnifiedRoleAssignmentScheduleInstanceItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignmentscheduleinstances/item/UnifiedRoleAssignmentScheduleInstanceItemRequestBuilder.java @@ -100,21 +100,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the instance of an active role assignment. + * Instances for active role assignments. * @return a {@link UnifiedRoleAssignmentScheduleInstance} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleAssignmentScheduleInstance get() { return get(null); } /** - * Get the instance of an active role assignment. + * Instances for active role assignments. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleAssignmentScheduleInstance} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleAssignmentScheduleInstance get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -169,7 +167,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the instance of an active role assignment. + * Instances for active role assignments. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -177,7 +175,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the instance of an active role assignment. + * Instances for active role assignments. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -229,7 +227,7 @@ public UnifiedRoleAssignmentScheduleInstanceItemRequestBuilder withUrl(@jakarta. public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the instance of an active role assignment. + * Instances for active role assignments. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignmentschedulerequests/RoleAssignmentScheduleRequestsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignmentschedulerequests/RoleAssignmentScheduleRequestsRequestBuilder.java index a1173f953de..cc3b31c6b29 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignmentschedulerequests/RoleAssignmentScheduleRequestsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignmentschedulerequests/RoleAssignmentScheduleRequestsRequestBuilder.java @@ -71,21 +71,19 @@ public FilterByCurrentUserWithOnRequestBuilder filterByCurrentUserWithOn(@jakart return new FilterByCurrentUserWithOnRequestBuilder(pathParameters, requestAdapter, on); } /** - * Retrieve the requests for active role assignments to principals. The active assignments include those made through assignments and activation requests, and directly through the role assignments API. The role assignments can be permanently active with or without an expiry date, or temporarily active after user activation of eligible assignments. + * Requests for active role assignments to principals through PIM. * @return a {@link UnifiedRoleAssignmentScheduleRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleAssignmentScheduleRequestCollectionResponse get() { return get(null); } /** - * Retrieve the requests for active role assignments to principals. The active assignments include those made through assignments and activation requests, and directly through the role assignments API. The role assignments can be permanently active with or without an expiry date, or temporarily active after user activation of eligible assignments. + * Requests for active role assignments to principals through PIM. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleAssignmentScheduleRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleAssignmentScheduleRequestCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -95,23 +93,21 @@ public UnifiedRoleAssignmentScheduleRequestCollectionResponse get(@jakarta.annot return this.requestAdapter.send(requestInfo, errorMapping, UnifiedRoleAssignmentScheduleRequestCollectionResponse::createFromDiscriminatorValue); } /** - * In PIM, carry out the following operations through the unifiedRoleAssignmentScheduleRequest object: To call this API to update, renew, and extend assignments for yourself, you must have multifactor authentication (MFA) enforced, and running the query in a session in which they were challenged for MFA. See Enable per-user Microsoft Entra multifactor authentication to secure sign-in events. + * Create new navigation property to roleAssignmentScheduleRequests for roleManagement * @param body The request body * @return a {@link UnifiedRoleAssignmentScheduleRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleAssignmentScheduleRequest post(@jakarta.annotation.Nonnull final UnifiedRoleAssignmentScheduleRequest body) { return post(body, null); } /** - * In PIM, carry out the following operations through the unifiedRoleAssignmentScheduleRequest object: To call this API to update, renew, and extend assignments for yourself, you must have multifactor authentication (MFA) enforced, and running the query in a session in which they were challenged for MFA. See Enable per-user Microsoft Entra multifactor authentication to secure sign-in events. + * Create new navigation property to roleAssignmentScheduleRequests for roleManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleAssignmentScheduleRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleAssignmentScheduleRequest post(@jakarta.annotation.Nonnull final UnifiedRoleAssignmentScheduleRequest body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -122,7 +118,7 @@ public UnifiedRoleAssignmentScheduleRequest post(@jakarta.annotation.Nonnull fin return this.requestAdapter.send(requestInfo, errorMapping, UnifiedRoleAssignmentScheduleRequest::createFromDiscriminatorValue); } /** - * Retrieve the requests for active role assignments to principals. The active assignments include those made through assignments and activation requests, and directly through the role assignments API. The role assignments can be permanently active with or without an expiry date, or temporarily active after user activation of eligible assignments. + * Requests for active role assignments to principals through PIM. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -130,7 +126,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the requests for active role assignments to principals. The active assignments include those made through assignments and activation requests, and directly through the role assignments API. The role assignments can be permanently active with or without an expiry date, or temporarily active after user activation of eligible assignments. + * Requests for active role assignments to principals through PIM. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -142,7 +138,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * In PIM, carry out the following operations through the unifiedRoleAssignmentScheduleRequest object: To call this API to update, renew, and extend assignments for yourself, you must have multifactor authentication (MFA) enforced, and running the query in a session in which they were challenged for MFA. See Enable per-user Microsoft Entra multifactor authentication to secure sign-in events. + * Create new navigation property to roleAssignmentScheduleRequests for roleManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -151,7 +147,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * In PIM, carry out the following operations through the unifiedRoleAssignmentScheduleRequest object: To call this API to update, renew, and extend assignments for yourself, you must have multifactor authentication (MFA) enforced, and running the query in a session in which they were challenged for MFA. See Enable per-user Microsoft Entra multifactor authentication to secure sign-in events. + * Create new navigation property to roleAssignmentScheduleRequests for roleManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -176,7 +172,7 @@ public RoleAssignmentScheduleRequestsRequestBuilder withUrl(@jakarta.annotation. return new RoleAssignmentScheduleRequestsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the requests for active role assignments to principals. The active assignments include those made through assignments and activation requests, and directly through the role assignments API. The role assignments can be permanently active with or without an expiry date, or temporarily active after user activation of eligible assignments. + * Requests for active role assignments to principals through PIM. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignmentschedulerequests/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignmentschedulerequests/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java index c42599a8910..285c234b059 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignmentschedulerequests/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignmentschedulerequests/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java @@ -38,19 +38,21 @@ public FilterByCurrentUserWithOnRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/roleManagement/directory/roleAssignmentScheduleRequests/filterByCurrentUser(on='{on}'){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function filterByCurrentUser + * In PIM, retrieve the requests for active role assignments for a particular principal. The principal can be the creator or approver of the unifiedRoleAssignmentScheduleRequest object, or they can be the target of the assignment. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get() { return get(null); } /** - * Invoke function filterByCurrentUser + * In PIM, retrieve the requests for active role assignments for a particular principal. The principal can be the creator or approver of the unifiedRoleAssignmentScheduleRequest object, or they can be the target of the assignment. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, FilterByCurrentUserWithOnGetResponse::createFromDiscriminatorValue); } /** - * Invoke function filterByCurrentUser + * In PIM, retrieve the requests for active role assignments for a particular principal. The principal can be the creator or approver of the unifiedRoleAssignmentScheduleRequest object, or they can be the target of the assignment. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function filterByCurrentUser + * In PIM, retrieve the requests for active role assignments for a particular principal. The principal can be the creator or approver of the unifiedRoleAssignmentScheduleRequest object, or they can be the target of the assignment. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -90,7 +92,7 @@ public FilterByCurrentUserWithOnRequestBuilder withUrl(@jakarta.annotation.Nonnu return new FilterByCurrentUserWithOnRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function filterByCurrentUser + * In PIM, retrieve the requests for active role assignments for a particular principal. The principal can be the creator or approver of the unifiedRoleAssignmentScheduleRequest object, or they can be the target of the assignment. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignmentschedulerequests/item/UnifiedRoleAssignmentScheduleRequestItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignmentschedulerequests/item/UnifiedRoleAssignmentScheduleRequestItemRequestBuilder.java index 024ca6a1661..816cf98e692 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignmentschedulerequests/item/UnifiedRoleAssignmentScheduleRequestItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignmentschedulerequests/item/UnifiedRoleAssignmentScheduleRequestItemRequestBuilder.java @@ -118,21 +118,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * In PIM, read the details of a request for an active and persistent role assignment made through the unifiedRoleAssignmentScheduleRequest object. + * Requests for active role assignments to principals through PIM. * @return a {@link UnifiedRoleAssignmentScheduleRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleAssignmentScheduleRequest get() { return get(null); } /** - * In PIM, read the details of a request for an active and persistent role assignment made through the unifiedRoleAssignmentScheduleRequest object. + * Requests for active role assignments to principals through PIM. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleAssignmentScheduleRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleAssignmentScheduleRequest get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -187,7 +185,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * In PIM, read the details of a request for an active and persistent role assignment made through the unifiedRoleAssignmentScheduleRequest object. + * Requests for active role assignments to principals through PIM. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -195,7 +193,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * In PIM, read the details of a request for an active and persistent role assignment made through the unifiedRoleAssignmentScheduleRequest object. + * Requests for active role assignments to principals through PIM. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -247,7 +245,7 @@ public UnifiedRoleAssignmentScheduleRequestItemRequestBuilder withUrl(@jakarta.a public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * In PIM, read the details of a request for an active and persistent role assignment made through the unifiedRoleAssignmentScheduleRequest object. + * Requests for active role assignments to principals through PIM. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignmentschedules/RoleAssignmentSchedulesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignmentschedules/RoleAssignmentSchedulesRequestBuilder.java index 882b2d22ad7..48c2be512d2 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignmentschedules/RoleAssignmentSchedulesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignmentschedules/RoleAssignmentSchedulesRequestBuilder.java @@ -71,21 +71,19 @@ public FilterByCurrentUserWithOnRequestBuilder filterByCurrentUserWithOn(@jakart return new FilterByCurrentUserWithOnRequestBuilder(pathParameters, requestAdapter, on); } /** - * Get the schedules for active role assignment operations. + * Schedules for active role assignment operations. * @return a {@link UnifiedRoleAssignmentScheduleCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleAssignmentScheduleCollectionResponse get() { return get(null); } /** - * Get the schedules for active role assignment operations. + * Schedules for active role assignment operations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleAssignmentScheduleCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleAssignmentScheduleCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +118,7 @@ public UnifiedRoleAssignmentSchedule post(@jakarta.annotation.Nonnull final Unif return this.requestAdapter.send(requestInfo, errorMapping, UnifiedRoleAssignmentSchedule::createFromDiscriminatorValue); } /** - * Get the schedules for active role assignment operations. + * Schedules for active role assignment operations. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +126,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the schedules for active role assignment operations. + * Schedules for active role assignment operations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -174,7 +172,7 @@ public RoleAssignmentSchedulesRequestBuilder withUrl(@jakarta.annotation.Nonnull return new RoleAssignmentSchedulesRequestBuilder(rawUrl, requestAdapter); } /** - * Get the schedules for active role assignment operations. + * Schedules for active role assignment operations. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignmentschedules/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignmentschedules/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java index c9cc5c9a1dd..b7f494b29b1 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignmentschedules/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignmentschedules/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java @@ -38,19 +38,21 @@ public FilterByCurrentUserWithOnRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/roleManagement/directory/roleAssignmentSchedules/filterByCurrentUser(on='{on}'){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function filterByCurrentUser + * Retrieve the schedules for active role assignment operations for which the signed-in user is the principal. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get() { return get(null); } /** - * Invoke function filterByCurrentUser + * Retrieve the schedules for active role assignment operations for which the signed-in user is the principal. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, FilterByCurrentUserWithOnGetResponse::createFromDiscriminatorValue); } /** - * Invoke function filterByCurrentUser + * Retrieve the schedules for active role assignment operations for which the signed-in user is the principal. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function filterByCurrentUser + * Retrieve the schedules for active role assignment operations for which the signed-in user is the principal. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -90,7 +92,7 @@ public FilterByCurrentUserWithOnRequestBuilder withUrl(@jakarta.annotation.Nonnu return new FilterByCurrentUserWithOnRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function filterByCurrentUser + * Retrieve the schedules for active role assignment operations for which the signed-in user is the principal. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignmentschedules/item/UnifiedRoleAssignmentScheduleItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignmentschedules/item/UnifiedRoleAssignmentScheduleItemRequestBuilder.java index 6879251d522..ebac2199fb7 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignmentschedules/item/UnifiedRoleAssignmentScheduleItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleassignmentschedules/item/UnifiedRoleAssignmentScheduleItemRequestBuilder.java @@ -100,21 +100,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the schedule for an active role assignment operation. + * Schedules for active role assignment operations. * @return a {@link UnifiedRoleAssignmentSchedule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleAssignmentSchedule get() { return get(null); } /** - * Retrieve the schedule for an active role assignment operation. + * Schedules for active role assignment operations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleAssignmentSchedule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleAssignmentSchedule get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -169,7 +167,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the schedule for an active role assignment operation. + * Schedules for active role assignment operations. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -177,7 +175,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the schedule for an active role assignment operation. + * Schedules for active role assignment operations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -229,7 +227,7 @@ public UnifiedRoleAssignmentScheduleItemRequestBuilder withUrl(@jakarta.annotati public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the schedule for an active role assignment operation. + * Schedules for active role assignment operations. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roledefinitions/RoleDefinitionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roledefinitions/RoleDefinitionsRequestBuilder.java index 14dbeefa273..7cf4fa48a3e 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roledefinitions/RoleDefinitionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roledefinitions/RoleDefinitionsRequestBuilder.java @@ -60,21 +60,19 @@ public RoleDefinitionsRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/roleManagement/directory/roleDefinitions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of unifiedRoleDefinition objects for the provider. The following RBAC providers are currently supported:- directory (Microsoft Entra ID)- entitlement management (Microsoft Entra Entitlement Management) + * Resource representing the roles allowed by RBAC providers and the permissions assigned to the roles. * @return a {@link UnifiedRoleDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleDefinitionCollectionResponse get() { return get(null); } /** - * Get a list of unifiedRoleDefinition objects for the provider. The following RBAC providers are currently supported:- directory (Microsoft Entra ID)- entitlement management (Microsoft Entra Entitlement Management) + * Resource representing the roles allowed by RBAC providers and the permissions assigned to the roles. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleDefinitionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public UnifiedRoleDefinitionCollectionResponse get(@jakarta.annotation.Nullable return this.requestAdapter.send(requestInfo, errorMapping, UnifiedRoleDefinitionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new custom unifiedRoleDefinition object. This feature requires a Microsoft Entra ID P1 or P2 license. + * Create new navigation property to roleDefinitions for roleManagement * @param body The request body * @return a {@link UnifiedRoleDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleDefinition post(@jakarta.annotation.Nonnull final UnifiedRoleDefinition body) { return post(body, null); } /** - * Create a new custom unifiedRoleDefinition object. This feature requires a Microsoft Entra ID P1 or P2 license. + * Create new navigation property to roleDefinitions for roleManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleDefinition post(@jakarta.annotation.Nonnull final UnifiedRoleDefinition body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public UnifiedRoleDefinition post(@jakarta.annotation.Nonnull final UnifiedRoleD return this.requestAdapter.send(requestInfo, errorMapping, UnifiedRoleDefinition::createFromDiscriminatorValue); } /** - * Get a list of unifiedRoleDefinition objects for the provider. The following RBAC providers are currently supported:- directory (Microsoft Entra ID)- entitlement management (Microsoft Entra Entitlement Management) + * Resource representing the roles allowed by RBAC providers and the permissions assigned to the roles. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of unifiedRoleDefinition objects for the provider. The following RBAC providers are currently supported:- directory (Microsoft Entra ID)- entitlement management (Microsoft Entra Entitlement Management) + * Resource representing the roles allowed by RBAC providers and the permissions assigned to the roles. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new custom unifiedRoleDefinition object. This feature requires a Microsoft Entra ID P1 or P2 license. + * Create new navigation property to roleDefinitions for roleManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new custom unifiedRoleDefinition object. This feature requires a Microsoft Entra ID P1 or P2 license. + * Create new navigation property to roleDefinitions for roleManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public RoleDefinitionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final S return new RoleDefinitionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of unifiedRoleDefinition objects for the provider. The following RBAC providers are currently supported:- directory (Microsoft Entra ID)- entitlement management (Microsoft Entra Entitlement Management) + * Resource representing the roles allowed by RBAC providers and the permissions assigned to the roles. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roledefinitions/item/UnifiedRoleDefinitionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roledefinitions/item/UnifiedRoleDefinitionItemRequestBuilder.java index 266e264e5e8..1fb967b63cc 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roledefinitions/item/UnifiedRoleDefinitionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roledefinitions/item/UnifiedRoleDefinitionItemRequestBuilder.java @@ -46,18 +46,16 @@ public UnifiedRoleDefinitionItemRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a unifiedRoleDefinition object. You can't delete built-in roles. This feature requires a Microsoft Entra ID P1 or P2 license. + * Delete navigation property roleDefinitions for roleManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a unifiedRoleDefinition object. You can't delete built-in roles. This feature requires a Microsoft Entra ID P1 or P2 license. + * Delete navigation property roleDefinitions for roleManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a unifiedRoleDefinition object. The following role-based access control (RBAC) providers are currently supported: + * Resource representing the roles allowed by RBAC providers and the permissions assigned to the roles. * @return a {@link UnifiedRoleDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleDefinition get() { return get(null); } /** - * Read the properties and relationships of a unifiedRoleDefinition object. The following role-based access control (RBAC) providers are currently supported: + * Resource representing the roles allowed by RBAC providers and the permissions assigned to the roles. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleDefinition get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public UnifiedRoleDefinition get(@jakarta.annotation.Nullable final java.util.fu return this.requestAdapter.send(requestInfo, errorMapping, UnifiedRoleDefinition::createFromDiscriminatorValue); } /** - * Update the properties of a unifiedRoleDefinition object. You cannot update built-in roles. This feature requires a Microsoft Entra ID P1 or P2 license. + * Update the navigation property roleDefinitions in roleManagement * @param body The request body * @return a {@link UnifiedRoleDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleDefinition patch(@jakarta.annotation.Nonnull final UnifiedRoleDefinition body) { return patch(body, null); } /** - * Update the properties of a unifiedRoleDefinition object. You cannot update built-in roles. This feature requires a Microsoft Entra ID P1 or P2 license. + * Update the navigation property roleDefinitions in roleManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleDefinition patch(@jakarta.annotation.Nonnull final UnifiedRoleDefinition body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public UnifiedRoleDefinition patch(@jakarta.annotation.Nonnull final UnifiedRole return this.requestAdapter.send(requestInfo, errorMapping, UnifiedRoleDefinition::createFromDiscriminatorValue); } /** - * Delete a unifiedRoleDefinition object. You can't delete built-in roles. This feature requires a Microsoft Entra ID P1 or P2 license. + * Delete navigation property roleDefinitions for roleManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a unifiedRoleDefinition object. You can't delete built-in roles. This feature requires a Microsoft Entra ID P1 or P2 license. + * Delete navigation property roleDefinitions for roleManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a unifiedRoleDefinition object. The following role-based access control (RBAC) providers are currently supported: + * Resource representing the roles allowed by RBAC providers and the permissions assigned to the roles. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a unifiedRoleDefinition object. The following role-based access control (RBAC) providers are currently supported: + * Resource representing the roles allowed by RBAC providers and the permissions assigned to the roles. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a unifiedRoleDefinition object. You cannot update built-in roles. This feature requires a Microsoft Entra ID P1 or P2 license. + * Update the navigation property roleDefinitions in roleManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a unifiedRoleDefinition object. You cannot update built-in roles. This feature requires a Microsoft Entra ID P1 or P2 license. + * Update the navigation property roleDefinitions in roleManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public UnifiedRoleDefinitionItemRequestBuilder withUrl(@jakarta.annotation.Nonnu public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a unifiedRoleDefinition object. The following role-based access control (RBAC) providers are currently supported: + * Resource representing the roles allowed by RBAC providers and the permissions assigned to the roles. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleeligibilityscheduleinstances/RoleEligibilityScheduleInstancesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleeligibilityscheduleinstances/RoleEligibilityScheduleInstancesRequestBuilder.java index 53fcfaea634..7ed10e44d1f 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleeligibilityscheduleinstances/RoleEligibilityScheduleInstancesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleeligibilityscheduleinstances/RoleEligibilityScheduleInstancesRequestBuilder.java @@ -71,21 +71,19 @@ public FilterByCurrentUserWithOnRequestBuilder filterByCurrentUserWithOn(@jakart return new FilterByCurrentUserWithOnRequestBuilder(pathParameters, requestAdapter, on); } /** - * Get the instances of role eligibilities. + * Instances for role eligibility requests. * @return a {@link UnifiedRoleEligibilityScheduleInstanceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleEligibilityScheduleInstanceCollectionResponse get() { return get(null); } /** - * Get the instances of role eligibilities. + * Instances for role eligibility requests. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleEligibilityScheduleInstanceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleEligibilityScheduleInstanceCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +118,7 @@ public UnifiedRoleEligibilityScheduleInstance post(@jakarta.annotation.Nonnull f return this.requestAdapter.send(requestInfo, errorMapping, UnifiedRoleEligibilityScheduleInstance::createFromDiscriminatorValue); } /** - * Get the instances of role eligibilities. + * Instances for role eligibility requests. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +126,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the instances of role eligibilities. + * Instances for role eligibility requests. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -174,7 +172,7 @@ public RoleEligibilityScheduleInstancesRequestBuilder withUrl(@jakarta.annotatio return new RoleEligibilityScheduleInstancesRequestBuilder(rawUrl, requestAdapter); } /** - * Get the instances of role eligibilities. + * Instances for role eligibility requests. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleeligibilityscheduleinstances/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleeligibilityscheduleinstances/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java index 731d06f492e..3f7a2a6b695 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleeligibilityscheduleinstances/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleeligibilityscheduleinstances/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java @@ -38,19 +38,21 @@ public FilterByCurrentUserWithOnRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/roleManagement/directory/roleEligibilityScheduleInstances/filterByCurrentUser(on='{on}'){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function filterByCurrentUser + * Get the instances of eligible roles for the calling principal. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get() { return get(null); } /** - * Invoke function filterByCurrentUser + * Get the instances of eligible roles for the calling principal. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, FilterByCurrentUserWithOnGetResponse::createFromDiscriminatorValue); } /** - * Invoke function filterByCurrentUser + * Get the instances of eligible roles for the calling principal. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function filterByCurrentUser + * Get the instances of eligible roles for the calling principal. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -90,7 +92,7 @@ public FilterByCurrentUserWithOnRequestBuilder withUrl(@jakarta.annotation.Nonnu return new FilterByCurrentUserWithOnRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function filterByCurrentUser + * Get the instances of eligible roles for the calling principal. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleeligibilityscheduleinstances/item/UnifiedRoleEligibilityScheduleInstanceItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleeligibilityscheduleinstances/item/UnifiedRoleEligibilityScheduleInstanceItemRequestBuilder.java index 844e3681581..ddd5bf67738 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleeligibilityscheduleinstances/item/UnifiedRoleEligibilityScheduleInstanceItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleeligibilityscheduleinstances/item/UnifiedRoleEligibilityScheduleInstanceItemRequestBuilder.java @@ -91,21 +91,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the instance of a role eligibility. + * Instances for role eligibility requests. * @return a {@link UnifiedRoleEligibilityScheduleInstance} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleEligibilityScheduleInstance get() { return get(null); } /** - * Get the instance of a role eligibility. + * Instances for role eligibility requests. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleEligibilityScheduleInstance} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleEligibilityScheduleInstance get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -160,7 +158,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the instance of a role eligibility. + * Instances for role eligibility requests. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -168,7 +166,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the instance of a role eligibility. + * Instances for role eligibility requests. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -220,7 +218,7 @@ public UnifiedRoleEligibilityScheduleInstanceItemRequestBuilder withUrl(@jakarta public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the instance of a role eligibility. + * Instances for role eligibility requests. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleeligibilityschedulerequests/RoleEligibilityScheduleRequestsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleeligibilityschedulerequests/RoleEligibilityScheduleRequestsRequestBuilder.java index 7c21e599d13..cd5421b97c1 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleeligibilityschedulerequests/RoleEligibilityScheduleRequestsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleeligibilityschedulerequests/RoleEligibilityScheduleRequestsRequestBuilder.java @@ -71,21 +71,19 @@ public FilterByCurrentUserWithOnRequestBuilder filterByCurrentUserWithOn(@jakart return new FilterByCurrentUserWithOnRequestBuilder(pathParameters, requestAdapter, on); } /** - * In PIM, retrieve the requests for role eligibilities for principals made through the unifiedRoleEligibilityScheduleRequest object. + * Requests for role eligibilities for principals through PIM. * @return a {@link UnifiedRoleEligibilityScheduleRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleEligibilityScheduleRequestCollectionResponse get() { return get(null); } /** - * In PIM, retrieve the requests for role eligibilities for principals made through the unifiedRoleEligibilityScheduleRequest object. + * Requests for role eligibilities for principals through PIM. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleEligibilityScheduleRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleEligibilityScheduleRequestCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -95,23 +93,21 @@ public UnifiedRoleEligibilityScheduleRequestCollectionResponse get(@jakarta.anno return this.requestAdapter.send(requestInfo, errorMapping, UnifiedRoleEligibilityScheduleRequestCollectionResponse::createFromDiscriminatorValue); } /** - * In PIM, request for a role eligibility for a principal through the unifiedRoleEligibilityScheduleRequest object. This operation allows both admins and eligible users to add, revoke, or extend eligible assignments. + * Create new navigation property to roleEligibilityScheduleRequests for roleManagement * @param body The request body * @return a {@link UnifiedRoleEligibilityScheduleRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleEligibilityScheduleRequest post(@jakarta.annotation.Nonnull final UnifiedRoleEligibilityScheduleRequest body) { return post(body, null); } /** - * In PIM, request for a role eligibility for a principal through the unifiedRoleEligibilityScheduleRequest object. This operation allows both admins and eligible users to add, revoke, or extend eligible assignments. + * Create new navigation property to roleEligibilityScheduleRequests for roleManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleEligibilityScheduleRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleEligibilityScheduleRequest post(@jakarta.annotation.Nonnull final UnifiedRoleEligibilityScheduleRequest body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -122,7 +118,7 @@ public UnifiedRoleEligibilityScheduleRequest post(@jakarta.annotation.Nonnull fi return this.requestAdapter.send(requestInfo, errorMapping, UnifiedRoleEligibilityScheduleRequest::createFromDiscriminatorValue); } /** - * In PIM, retrieve the requests for role eligibilities for principals made through the unifiedRoleEligibilityScheduleRequest object. + * Requests for role eligibilities for principals through PIM. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -130,7 +126,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * In PIM, retrieve the requests for role eligibilities for principals made through the unifiedRoleEligibilityScheduleRequest object. + * Requests for role eligibilities for principals through PIM. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -142,7 +138,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * In PIM, request for a role eligibility for a principal through the unifiedRoleEligibilityScheduleRequest object. This operation allows both admins and eligible users to add, revoke, or extend eligible assignments. + * Create new navigation property to roleEligibilityScheduleRequests for roleManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -151,7 +147,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * In PIM, request for a role eligibility for a principal through the unifiedRoleEligibilityScheduleRequest object. This operation allows both admins and eligible users to add, revoke, or extend eligible assignments. + * Create new navigation property to roleEligibilityScheduleRequests for roleManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -176,7 +172,7 @@ public RoleEligibilityScheduleRequestsRequestBuilder withUrl(@jakarta.annotation return new RoleEligibilityScheduleRequestsRequestBuilder(rawUrl, requestAdapter); } /** - * In PIM, retrieve the requests for role eligibilities for principals made through the unifiedRoleEligibilityScheduleRequest object. + * Requests for role eligibilities for principals through PIM. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleeligibilityschedulerequests/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleeligibilityschedulerequests/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java index 3b1628ccabb..3320d31cda7 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleeligibilityschedulerequests/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleeligibilityschedulerequests/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java @@ -38,19 +38,21 @@ public FilterByCurrentUserWithOnRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/roleManagement/directory/roleEligibilityScheduleRequests/filterByCurrentUser(on='{on}'){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function filterByCurrentUser + * In PIM, retrieve the requests for role eligibilities for a particular principal. The principal can be the creator or approver of the unifiedRoleEligibilityScheduleRequest object, or they can be the target of the role eligibility. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get() { return get(null); } /** - * Invoke function filterByCurrentUser + * In PIM, retrieve the requests for role eligibilities for a particular principal. The principal can be the creator or approver of the unifiedRoleEligibilityScheduleRequest object, or they can be the target of the role eligibility. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, FilterByCurrentUserWithOnGetResponse::createFromDiscriminatorValue); } /** - * Invoke function filterByCurrentUser + * In PIM, retrieve the requests for role eligibilities for a particular principal. The principal can be the creator or approver of the unifiedRoleEligibilityScheduleRequest object, or they can be the target of the role eligibility. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function filterByCurrentUser + * In PIM, retrieve the requests for role eligibilities for a particular principal. The principal can be the creator or approver of the unifiedRoleEligibilityScheduleRequest object, or they can be the target of the role eligibility. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -90,7 +92,7 @@ public FilterByCurrentUserWithOnRequestBuilder withUrl(@jakarta.annotation.Nonnu return new FilterByCurrentUserWithOnRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function filterByCurrentUser + * In PIM, retrieve the requests for role eligibilities for a particular principal. The principal can be the creator or approver of the unifiedRoleEligibilityScheduleRequest object, or they can be the target of the role eligibility. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleeligibilityschedulerequests/item/UnifiedRoleEligibilityScheduleRequestItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleeligibilityschedulerequests/item/UnifiedRoleEligibilityScheduleRequestItemRequestBuilder.java index 19189ff5dc8..9b46e9d6d85 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleeligibilityschedulerequests/item/UnifiedRoleEligibilityScheduleRequestItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleeligibilityschedulerequests/item/UnifiedRoleEligibilityScheduleRequestItemRequestBuilder.java @@ -109,21 +109,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * In PIM, read the details of a request for for a role eligibility request made through the unifiedRoleEligibilityScheduleRequest object. + * Requests for role eligibilities for principals through PIM. * @return a {@link UnifiedRoleEligibilityScheduleRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleEligibilityScheduleRequest get() { return get(null); } /** - * In PIM, read the details of a request for for a role eligibility request made through the unifiedRoleEligibilityScheduleRequest object. + * Requests for role eligibilities for principals through PIM. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleEligibilityScheduleRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleEligibilityScheduleRequest get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -178,7 +176,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * In PIM, read the details of a request for for a role eligibility request made through the unifiedRoleEligibilityScheduleRequest object. + * Requests for role eligibilities for principals through PIM. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -186,7 +184,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * In PIM, read the details of a request for for a role eligibility request made through the unifiedRoleEligibilityScheduleRequest object. + * Requests for role eligibilities for principals through PIM. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -238,7 +236,7 @@ public UnifiedRoleEligibilityScheduleRequestItemRequestBuilder withUrl(@jakarta. public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * In PIM, read the details of a request for for a role eligibility request made through the unifiedRoleEligibilityScheduleRequest object. + * Requests for role eligibilities for principals through PIM. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleeligibilityschedules/RoleEligibilitySchedulesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleeligibilityschedules/RoleEligibilitySchedulesRequestBuilder.java index 93845e4efc0..b46e88b7353 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleeligibilityschedules/RoleEligibilitySchedulesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleeligibilityschedules/RoleEligibilitySchedulesRequestBuilder.java @@ -71,21 +71,19 @@ public FilterByCurrentUserWithOnRequestBuilder filterByCurrentUserWithOn(@jakart return new FilterByCurrentUserWithOnRequestBuilder(pathParameters, requestAdapter, on); } /** - * Get the unifiedRoleEligibilitySchedule resources from the roleEligibilitySchedules navigation property. + * Schedules for role eligibility operations. * @return a {@link UnifiedRoleEligibilityScheduleCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleEligibilityScheduleCollectionResponse get() { return get(null); } /** - * Get the unifiedRoleEligibilitySchedule resources from the roleEligibilitySchedules navigation property. + * Schedules for role eligibility operations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleEligibilityScheduleCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleEligibilityScheduleCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +118,7 @@ public UnifiedRoleEligibilitySchedule post(@jakarta.annotation.Nonnull final Uni return this.requestAdapter.send(requestInfo, errorMapping, UnifiedRoleEligibilitySchedule::createFromDiscriminatorValue); } /** - * Get the unifiedRoleEligibilitySchedule resources from the roleEligibilitySchedules navigation property. + * Schedules for role eligibility operations. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +126,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the unifiedRoleEligibilitySchedule resources from the roleEligibilitySchedules navigation property. + * Schedules for role eligibility operations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -174,7 +172,7 @@ public RoleEligibilitySchedulesRequestBuilder withUrl(@jakarta.annotation.Nonnul return new RoleEligibilitySchedulesRequestBuilder(rawUrl, requestAdapter); } /** - * Get the unifiedRoleEligibilitySchedule resources from the roleEligibilitySchedules navigation property. + * Schedules for role eligibility operations. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleeligibilityschedules/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleeligibilityschedules/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java index f2a9de2481d..964b4aa207a 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleeligibilityschedules/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleeligibilityschedules/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java @@ -38,19 +38,21 @@ public FilterByCurrentUserWithOnRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/roleManagement/directory/roleEligibilitySchedules/filterByCurrentUser(on='{on}'){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function filterByCurrentUser + * Retrieve the schedules for role eligibilities for which the signed-in user is the principal. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get() { return get(null); } /** - * Invoke function filterByCurrentUser + * Retrieve the schedules for role eligibilities for which the signed-in user is the principal. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, FilterByCurrentUserWithOnGetResponse::createFromDiscriminatorValue); } /** - * Invoke function filterByCurrentUser + * Retrieve the schedules for role eligibilities for which the signed-in user is the principal. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function filterByCurrentUser + * Retrieve the schedules for role eligibilities for which the signed-in user is the principal. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -90,7 +92,7 @@ public FilterByCurrentUserWithOnRequestBuilder withUrl(@jakarta.annotation.Nonnu return new FilterByCurrentUserWithOnRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function filterByCurrentUser + * Retrieve the schedules for role eligibilities for which the signed-in user is the principal. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleeligibilityschedules/item/UnifiedRoleEligibilityScheduleItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleeligibilityschedules/item/UnifiedRoleEligibilityScheduleItemRequestBuilder.java index a2155649d52..d8855b72c0f 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleeligibilityschedules/item/UnifiedRoleEligibilityScheduleItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/directory/roleeligibilityschedules/item/UnifiedRoleEligibilityScheduleItemRequestBuilder.java @@ -91,21 +91,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the schedule for a role eligibility operation. + * Schedules for role eligibility operations. * @return a {@link UnifiedRoleEligibilitySchedule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleEligibilitySchedule get() { return get(null); } /** - * Retrieve the schedule for a role eligibility operation. + * Schedules for role eligibility operations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleEligibilitySchedule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleEligibilitySchedule get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -160,7 +158,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the schedule for a role eligibility operation. + * Schedules for role eligibility operations. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -168,7 +166,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the schedule for a role eligibility operation. + * Schedules for role eligibility operations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -220,7 +218,7 @@ public UnifiedRoleEligibilityScheduleItemRequestBuilder withUrl(@jakarta.annotat public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the schedule for a role eligibility operation. + * Schedules for role eligibility operations. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignments/RoleAssignmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignments/RoleAssignmentsRequestBuilder.java index 549f380a407..8aa104ab9e7 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignments/RoleAssignmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignments/RoleAssignmentsRequestBuilder.java @@ -60,21 +60,19 @@ public RoleAssignmentsRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/roleManagement/entitlementManagement/roleAssignments{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of unifiedRoleAssignment objects for the RBAC provider. The following RBAC providers are currently supported:- directory (Microsoft Entra ID)- entitlement management (Microsoft Entra entitlement management) + * Resource to grant access to users or groups. * @return a {@link UnifiedRoleAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleAssignmentCollectionResponse get() { return get(null); } /** - * Get a list of unifiedRoleAssignment objects for the RBAC provider. The following RBAC providers are currently supported:- directory (Microsoft Entra ID)- entitlement management (Microsoft Entra entitlement management) + * Resource to grant access to users or groups. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleAssignmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public UnifiedRoleAssignmentCollectionResponse get(@jakarta.annotation.Nullable return this.requestAdapter.send(requestInfo, errorMapping, UnifiedRoleAssignmentCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new unifiedRoleAssignment object. + * Create new navigation property to roleAssignments for roleManagement * @param body The request body * @return a {@link UnifiedRoleAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleAssignment post(@jakarta.annotation.Nonnull final UnifiedRoleAssignment body) { return post(body, null); } /** - * Create a new unifiedRoleAssignment object. + * Create new navigation property to roleAssignments for roleManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleAssignment post(@jakarta.annotation.Nonnull final UnifiedRoleAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public UnifiedRoleAssignment post(@jakarta.annotation.Nonnull final UnifiedRoleA return this.requestAdapter.send(requestInfo, errorMapping, UnifiedRoleAssignment::createFromDiscriminatorValue); } /** - * Get a list of unifiedRoleAssignment objects for the RBAC provider. The following RBAC providers are currently supported:- directory (Microsoft Entra ID)- entitlement management (Microsoft Entra entitlement management) + * Resource to grant access to users or groups. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of unifiedRoleAssignment objects for the RBAC provider. The following RBAC providers are currently supported:- directory (Microsoft Entra ID)- entitlement management (Microsoft Entra entitlement management) + * Resource to grant access to users or groups. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new unifiedRoleAssignment object. + * Create new navigation property to roleAssignments for roleManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new unifiedRoleAssignment object. + * Create new navigation property to roleAssignments for roleManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public RoleAssignmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final S return new RoleAssignmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of unifiedRoleAssignment objects for the RBAC provider. The following RBAC providers are currently supported:- directory (Microsoft Entra ID)- entitlement management (Microsoft Entra entitlement management) + * Resource to grant access to users or groups. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignments/item/UnifiedRoleAssignmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignments/item/UnifiedRoleAssignmentItemRequestBuilder.java index 13b7c5843e4..5ebb1f39728 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignments/item/UnifiedRoleAssignmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignments/item/UnifiedRoleAssignmentItemRequestBuilder.java @@ -73,18 +73,16 @@ public UnifiedRoleAssignmentItemRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a unifiedRoleAssignment object. + * Delete navigation property roleAssignments for roleManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a unifiedRoleAssignment object. + * Delete navigation property roleAssignments for roleManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -93,21 +91,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a unifiedRoleAssignment object. + * Resource to grant access to users or groups. * @return a {@link UnifiedRoleAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleAssignment get() { return get(null); } /** - * Retrieve the properties and relationships of a unifiedRoleAssignment object. + * Resource to grant access to users or groups. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleAssignment get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -142,7 +138,7 @@ public UnifiedRoleAssignment patch(@jakarta.annotation.Nonnull final UnifiedRole return this.requestAdapter.send(requestInfo, errorMapping, UnifiedRoleAssignment::createFromDiscriminatorValue); } /** - * Delete a unifiedRoleAssignment object. + * Delete navigation property roleAssignments for roleManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -150,7 +146,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a unifiedRoleAssignment object. + * Delete navigation property roleAssignments for roleManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -162,7 +158,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a unifiedRoleAssignment object. + * Resource to grant access to users or groups. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -170,7 +166,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a unifiedRoleAssignment object. + * Resource to grant access to users or groups. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -222,7 +218,7 @@ public UnifiedRoleAssignmentItemRequestBuilder withUrl(@jakarta.annotation.Nonnu public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a unifiedRoleAssignment object. + * Resource to grant access to users or groups. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignmentscheduleinstances/RoleAssignmentScheduleInstancesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignmentscheduleinstances/RoleAssignmentScheduleInstancesRequestBuilder.java index 5ffa826674d..3b0b7858efe 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignmentscheduleinstances/RoleAssignmentScheduleInstancesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignmentscheduleinstances/RoleAssignmentScheduleInstancesRequestBuilder.java @@ -71,21 +71,19 @@ public FilterByCurrentUserWithOnRequestBuilder filterByCurrentUserWithOn(@jakart return new FilterByCurrentUserWithOnRequestBuilder(pathParameters, requestAdapter, on); } /** - * Get the instances of active role assignments in your tenant. The active assignments include those made through assignments and activation requests, and directly through the role assignments API. + * Instances for active role assignments. * @return a {@link UnifiedRoleAssignmentScheduleInstanceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleAssignmentScheduleInstanceCollectionResponse get() { return get(null); } /** - * Get the instances of active role assignments in your tenant. The active assignments include those made through assignments and activation requests, and directly through the role assignments API. + * Instances for active role assignments. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleAssignmentScheduleInstanceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleAssignmentScheduleInstanceCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +118,7 @@ public UnifiedRoleAssignmentScheduleInstance post(@jakarta.annotation.Nonnull fi return this.requestAdapter.send(requestInfo, errorMapping, UnifiedRoleAssignmentScheduleInstance::createFromDiscriminatorValue); } /** - * Get the instances of active role assignments in your tenant. The active assignments include those made through assignments and activation requests, and directly through the role assignments API. + * Instances for active role assignments. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +126,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the instances of active role assignments in your tenant. The active assignments include those made through assignments and activation requests, and directly through the role assignments API. + * Instances for active role assignments. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -174,7 +172,7 @@ public RoleAssignmentScheduleInstancesRequestBuilder withUrl(@jakarta.annotation return new RoleAssignmentScheduleInstancesRequestBuilder(rawUrl, requestAdapter); } /** - * Get the instances of active role assignments in your tenant. The active assignments include those made through assignments and activation requests, and directly through the role assignments API. + * Instances for active role assignments. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignmentscheduleinstances/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignmentscheduleinstances/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java index ba7c733ff5d..48da99f9da6 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignmentscheduleinstances/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignmentscheduleinstances/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java @@ -38,19 +38,21 @@ public FilterByCurrentUserWithOnRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/filterByCurrentUser(on='{on}'){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function filterByCurrentUser + * Get the instances of active role assignments for the calling principal. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get() { return get(null); } /** - * Invoke function filterByCurrentUser + * Get the instances of active role assignments for the calling principal. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, FilterByCurrentUserWithOnGetResponse::createFromDiscriminatorValue); } /** - * Invoke function filterByCurrentUser + * Get the instances of active role assignments for the calling principal. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function filterByCurrentUser + * Get the instances of active role assignments for the calling principal. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -90,7 +92,7 @@ public FilterByCurrentUserWithOnRequestBuilder withUrl(@jakarta.annotation.Nonnu return new FilterByCurrentUserWithOnRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function filterByCurrentUser + * Get the instances of active role assignments for the calling principal. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignmentscheduleinstances/item/UnifiedRoleAssignmentScheduleInstanceItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignmentscheduleinstances/item/UnifiedRoleAssignmentScheduleInstanceItemRequestBuilder.java index 638ba4f0b0c..c2cb6600c05 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignmentscheduleinstances/item/UnifiedRoleAssignmentScheduleInstanceItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignmentscheduleinstances/item/UnifiedRoleAssignmentScheduleInstanceItemRequestBuilder.java @@ -100,21 +100,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the instance of an active role assignment. + * Instances for active role assignments. * @return a {@link UnifiedRoleAssignmentScheduleInstance} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleAssignmentScheduleInstance get() { return get(null); } /** - * Get the instance of an active role assignment. + * Instances for active role assignments. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleAssignmentScheduleInstance} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleAssignmentScheduleInstance get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -169,7 +167,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the instance of an active role assignment. + * Instances for active role assignments. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -177,7 +175,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the instance of an active role assignment. + * Instances for active role assignments. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -229,7 +227,7 @@ public UnifiedRoleAssignmentScheduleInstanceItemRequestBuilder withUrl(@jakarta. public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the instance of an active role assignment. + * Instances for active role assignments. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignmentschedulerequests/RoleAssignmentScheduleRequestsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignmentschedulerequests/RoleAssignmentScheduleRequestsRequestBuilder.java index a8f299670a0..f1ea5893dd4 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignmentschedulerequests/RoleAssignmentScheduleRequestsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignmentschedulerequests/RoleAssignmentScheduleRequestsRequestBuilder.java @@ -71,21 +71,19 @@ public FilterByCurrentUserWithOnRequestBuilder filterByCurrentUserWithOn(@jakart return new FilterByCurrentUserWithOnRequestBuilder(pathParameters, requestAdapter, on); } /** - * Retrieve the requests for active role assignments to principals. The active assignments include those made through assignments and activation requests, and directly through the role assignments API. The role assignments can be permanently active with or without an expiry date, or temporarily active after user activation of eligible assignments. + * Requests for active role assignments to principals through PIM. * @return a {@link UnifiedRoleAssignmentScheduleRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleAssignmentScheduleRequestCollectionResponse get() { return get(null); } /** - * Retrieve the requests for active role assignments to principals. The active assignments include those made through assignments and activation requests, and directly through the role assignments API. The role assignments can be permanently active with or without an expiry date, or temporarily active after user activation of eligible assignments. + * Requests for active role assignments to principals through PIM. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleAssignmentScheduleRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleAssignmentScheduleRequestCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -95,23 +93,21 @@ public UnifiedRoleAssignmentScheduleRequestCollectionResponse get(@jakarta.annot return this.requestAdapter.send(requestInfo, errorMapping, UnifiedRoleAssignmentScheduleRequestCollectionResponse::createFromDiscriminatorValue); } /** - * In PIM, carry out the following operations through the unifiedRoleAssignmentScheduleRequest object: To call this API to update, renew, and extend assignments for yourself, you must have multifactor authentication (MFA) enforced, and running the query in a session in which they were challenged for MFA. See Enable per-user Microsoft Entra multifactor authentication to secure sign-in events. + * Create new navigation property to roleAssignmentScheduleRequests for roleManagement * @param body The request body * @return a {@link UnifiedRoleAssignmentScheduleRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleAssignmentScheduleRequest post(@jakarta.annotation.Nonnull final UnifiedRoleAssignmentScheduleRequest body) { return post(body, null); } /** - * In PIM, carry out the following operations through the unifiedRoleAssignmentScheduleRequest object: To call this API to update, renew, and extend assignments for yourself, you must have multifactor authentication (MFA) enforced, and running the query in a session in which they were challenged for MFA. See Enable per-user Microsoft Entra multifactor authentication to secure sign-in events. + * Create new navigation property to roleAssignmentScheduleRequests for roleManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleAssignmentScheduleRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleAssignmentScheduleRequest post(@jakarta.annotation.Nonnull final UnifiedRoleAssignmentScheduleRequest body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -122,7 +118,7 @@ public UnifiedRoleAssignmentScheduleRequest post(@jakarta.annotation.Nonnull fin return this.requestAdapter.send(requestInfo, errorMapping, UnifiedRoleAssignmentScheduleRequest::createFromDiscriminatorValue); } /** - * Retrieve the requests for active role assignments to principals. The active assignments include those made through assignments and activation requests, and directly through the role assignments API. The role assignments can be permanently active with or without an expiry date, or temporarily active after user activation of eligible assignments. + * Requests for active role assignments to principals through PIM. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -130,7 +126,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the requests for active role assignments to principals. The active assignments include those made through assignments and activation requests, and directly through the role assignments API. The role assignments can be permanently active with or without an expiry date, or temporarily active after user activation of eligible assignments. + * Requests for active role assignments to principals through PIM. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -142,7 +138,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * In PIM, carry out the following operations through the unifiedRoleAssignmentScheduleRequest object: To call this API to update, renew, and extend assignments for yourself, you must have multifactor authentication (MFA) enforced, and running the query in a session in which they were challenged for MFA. See Enable per-user Microsoft Entra multifactor authentication to secure sign-in events. + * Create new navigation property to roleAssignmentScheduleRequests for roleManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -151,7 +147,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * In PIM, carry out the following operations through the unifiedRoleAssignmentScheduleRequest object: To call this API to update, renew, and extend assignments for yourself, you must have multifactor authentication (MFA) enforced, and running the query in a session in which they were challenged for MFA. See Enable per-user Microsoft Entra multifactor authentication to secure sign-in events. + * Create new navigation property to roleAssignmentScheduleRequests for roleManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -176,7 +172,7 @@ public RoleAssignmentScheduleRequestsRequestBuilder withUrl(@jakarta.annotation. return new RoleAssignmentScheduleRequestsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the requests for active role assignments to principals. The active assignments include those made through assignments and activation requests, and directly through the role assignments API. The role assignments can be permanently active with or without an expiry date, or temporarily active after user activation of eligible assignments. + * Requests for active role assignments to principals through PIM. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignmentschedulerequests/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignmentschedulerequests/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java index a7c5190ff30..c9624149e67 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignmentschedulerequests/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignmentschedulerequests/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java @@ -38,19 +38,21 @@ public FilterByCurrentUserWithOnRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/filterByCurrentUser(on='{on}'){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function filterByCurrentUser + * In PIM, retrieve the requests for active role assignments for a particular principal. The principal can be the creator or approver of the unifiedRoleAssignmentScheduleRequest object, or they can be the target of the assignment. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get() { return get(null); } /** - * Invoke function filterByCurrentUser + * In PIM, retrieve the requests for active role assignments for a particular principal. The principal can be the creator or approver of the unifiedRoleAssignmentScheduleRequest object, or they can be the target of the assignment. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, FilterByCurrentUserWithOnGetResponse::createFromDiscriminatorValue); } /** - * Invoke function filterByCurrentUser + * In PIM, retrieve the requests for active role assignments for a particular principal. The principal can be the creator or approver of the unifiedRoleAssignmentScheduleRequest object, or they can be the target of the assignment. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function filterByCurrentUser + * In PIM, retrieve the requests for active role assignments for a particular principal. The principal can be the creator or approver of the unifiedRoleAssignmentScheduleRequest object, or they can be the target of the assignment. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -90,7 +92,7 @@ public FilterByCurrentUserWithOnRequestBuilder withUrl(@jakarta.annotation.Nonnu return new FilterByCurrentUserWithOnRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function filterByCurrentUser + * In PIM, retrieve the requests for active role assignments for a particular principal. The principal can be the creator or approver of the unifiedRoleAssignmentScheduleRequest object, or they can be the target of the assignment. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignmentschedulerequests/item/UnifiedRoleAssignmentScheduleRequestItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignmentschedulerequests/item/UnifiedRoleAssignmentScheduleRequestItemRequestBuilder.java index 20e8219b362..a964dd71804 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignmentschedulerequests/item/UnifiedRoleAssignmentScheduleRequestItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignmentschedulerequests/item/UnifiedRoleAssignmentScheduleRequestItemRequestBuilder.java @@ -118,21 +118,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * In PIM, read the details of a request for an active and persistent role assignment made through the unifiedRoleAssignmentScheduleRequest object. + * Requests for active role assignments to principals through PIM. * @return a {@link UnifiedRoleAssignmentScheduleRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleAssignmentScheduleRequest get() { return get(null); } /** - * In PIM, read the details of a request for an active and persistent role assignment made through the unifiedRoleAssignmentScheduleRequest object. + * Requests for active role assignments to principals through PIM. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleAssignmentScheduleRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleAssignmentScheduleRequest get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -187,7 +185,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * In PIM, read the details of a request for an active and persistent role assignment made through the unifiedRoleAssignmentScheduleRequest object. + * Requests for active role assignments to principals through PIM. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -195,7 +193,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * In PIM, read the details of a request for an active and persistent role assignment made through the unifiedRoleAssignmentScheduleRequest object. + * Requests for active role assignments to principals through PIM. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -247,7 +245,7 @@ public UnifiedRoleAssignmentScheduleRequestItemRequestBuilder withUrl(@jakarta.a public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * In PIM, read the details of a request for an active and persistent role assignment made through the unifiedRoleAssignmentScheduleRequest object. + * Requests for active role assignments to principals through PIM. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignmentschedules/RoleAssignmentSchedulesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignmentschedules/RoleAssignmentSchedulesRequestBuilder.java index 99bd6f28940..ab39cac1d1a 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignmentschedules/RoleAssignmentSchedulesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignmentschedules/RoleAssignmentSchedulesRequestBuilder.java @@ -71,21 +71,19 @@ public FilterByCurrentUserWithOnRequestBuilder filterByCurrentUserWithOn(@jakart return new FilterByCurrentUserWithOnRequestBuilder(pathParameters, requestAdapter, on); } /** - * Get the schedules for active role assignment operations. + * Schedules for active role assignment operations. * @return a {@link UnifiedRoleAssignmentScheduleCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleAssignmentScheduleCollectionResponse get() { return get(null); } /** - * Get the schedules for active role assignment operations. + * Schedules for active role assignment operations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleAssignmentScheduleCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleAssignmentScheduleCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +118,7 @@ public UnifiedRoleAssignmentSchedule post(@jakarta.annotation.Nonnull final Unif return this.requestAdapter.send(requestInfo, errorMapping, UnifiedRoleAssignmentSchedule::createFromDiscriminatorValue); } /** - * Get the schedules for active role assignment operations. + * Schedules for active role assignment operations. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +126,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the schedules for active role assignment operations. + * Schedules for active role assignment operations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -174,7 +172,7 @@ public RoleAssignmentSchedulesRequestBuilder withUrl(@jakarta.annotation.Nonnull return new RoleAssignmentSchedulesRequestBuilder(rawUrl, requestAdapter); } /** - * Get the schedules for active role assignment operations. + * Schedules for active role assignment operations. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignmentschedules/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignmentschedules/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java index 1914d6c7173..08d94d089c2 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignmentschedules/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignmentschedules/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java @@ -38,19 +38,21 @@ public FilterByCurrentUserWithOnRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/roleManagement/entitlementManagement/roleAssignmentSchedules/filterByCurrentUser(on='{on}'){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function filterByCurrentUser + * Retrieve the schedules for active role assignment operations for which the signed-in user is the principal. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get() { return get(null); } /** - * Invoke function filterByCurrentUser + * Retrieve the schedules for active role assignment operations for which the signed-in user is the principal. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, FilterByCurrentUserWithOnGetResponse::createFromDiscriminatorValue); } /** - * Invoke function filterByCurrentUser + * Retrieve the schedules for active role assignment operations for which the signed-in user is the principal. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function filterByCurrentUser + * Retrieve the schedules for active role assignment operations for which the signed-in user is the principal. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -90,7 +92,7 @@ public FilterByCurrentUserWithOnRequestBuilder withUrl(@jakarta.annotation.Nonnu return new FilterByCurrentUserWithOnRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function filterByCurrentUser + * Retrieve the schedules for active role assignment operations for which the signed-in user is the principal. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignmentschedules/item/UnifiedRoleAssignmentScheduleItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignmentschedules/item/UnifiedRoleAssignmentScheduleItemRequestBuilder.java index 39dee398e99..205f1f93e9e 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignmentschedules/item/UnifiedRoleAssignmentScheduleItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleassignmentschedules/item/UnifiedRoleAssignmentScheduleItemRequestBuilder.java @@ -100,21 +100,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the schedule for an active role assignment operation. + * Schedules for active role assignment operations. * @return a {@link UnifiedRoleAssignmentSchedule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleAssignmentSchedule get() { return get(null); } /** - * Retrieve the schedule for an active role assignment operation. + * Schedules for active role assignment operations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleAssignmentSchedule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleAssignmentSchedule get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -169,7 +167,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the schedule for an active role assignment operation. + * Schedules for active role assignment operations. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -177,7 +175,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the schedule for an active role assignment operation. + * Schedules for active role assignment operations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -229,7 +227,7 @@ public UnifiedRoleAssignmentScheduleItemRequestBuilder withUrl(@jakarta.annotati public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the schedule for an active role assignment operation. + * Schedules for active role assignment operations. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roledefinitions/RoleDefinitionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roledefinitions/RoleDefinitionsRequestBuilder.java index c7d72c778d4..29664bcf852 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roledefinitions/RoleDefinitionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roledefinitions/RoleDefinitionsRequestBuilder.java @@ -60,21 +60,19 @@ public RoleDefinitionsRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/roleManagement/entitlementManagement/roleDefinitions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of unifiedRoleDefinition objects for the provider. The following RBAC providers are currently supported:- directory (Microsoft Entra ID)- entitlement management (Microsoft Entra Entitlement Management) + * Resource representing the roles allowed by RBAC providers and the permissions assigned to the roles. * @return a {@link UnifiedRoleDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleDefinitionCollectionResponse get() { return get(null); } /** - * Get a list of unifiedRoleDefinition objects for the provider. The following RBAC providers are currently supported:- directory (Microsoft Entra ID)- entitlement management (Microsoft Entra Entitlement Management) + * Resource representing the roles allowed by RBAC providers and the permissions assigned to the roles. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleDefinitionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public UnifiedRoleDefinitionCollectionResponse get(@jakarta.annotation.Nullable return this.requestAdapter.send(requestInfo, errorMapping, UnifiedRoleDefinitionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new custom unifiedRoleDefinition object. This feature requires a Microsoft Entra ID P1 or P2 license. + * Create new navigation property to roleDefinitions for roleManagement * @param body The request body * @return a {@link UnifiedRoleDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleDefinition post(@jakarta.annotation.Nonnull final UnifiedRoleDefinition body) { return post(body, null); } /** - * Create a new custom unifiedRoleDefinition object. This feature requires a Microsoft Entra ID P1 or P2 license. + * Create new navigation property to roleDefinitions for roleManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleDefinition post(@jakarta.annotation.Nonnull final UnifiedRoleDefinition body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public UnifiedRoleDefinition post(@jakarta.annotation.Nonnull final UnifiedRoleD return this.requestAdapter.send(requestInfo, errorMapping, UnifiedRoleDefinition::createFromDiscriminatorValue); } /** - * Get a list of unifiedRoleDefinition objects for the provider. The following RBAC providers are currently supported:- directory (Microsoft Entra ID)- entitlement management (Microsoft Entra Entitlement Management) + * Resource representing the roles allowed by RBAC providers and the permissions assigned to the roles. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of unifiedRoleDefinition objects for the provider. The following RBAC providers are currently supported:- directory (Microsoft Entra ID)- entitlement management (Microsoft Entra Entitlement Management) + * Resource representing the roles allowed by RBAC providers and the permissions assigned to the roles. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new custom unifiedRoleDefinition object. This feature requires a Microsoft Entra ID P1 or P2 license. + * Create new navigation property to roleDefinitions for roleManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new custom unifiedRoleDefinition object. This feature requires a Microsoft Entra ID P1 or P2 license. + * Create new navigation property to roleDefinitions for roleManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public RoleDefinitionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final S return new RoleDefinitionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of unifiedRoleDefinition objects for the provider. The following RBAC providers are currently supported:- directory (Microsoft Entra ID)- entitlement management (Microsoft Entra Entitlement Management) + * Resource representing the roles allowed by RBAC providers and the permissions assigned to the roles. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roledefinitions/item/UnifiedRoleDefinitionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roledefinitions/item/UnifiedRoleDefinitionItemRequestBuilder.java index 9b188174d2a..9ac69a31da7 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roledefinitions/item/UnifiedRoleDefinitionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roledefinitions/item/UnifiedRoleDefinitionItemRequestBuilder.java @@ -46,18 +46,16 @@ public UnifiedRoleDefinitionItemRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a unifiedRoleDefinition object. You can't delete built-in roles. This feature requires a Microsoft Entra ID P1 or P2 license. + * Delete navigation property roleDefinitions for roleManagement * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a unifiedRoleDefinition object. You can't delete built-in roles. This feature requires a Microsoft Entra ID P1 or P2 license. + * Delete navigation property roleDefinitions for roleManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a unifiedRoleDefinition object. The following role-based access control (RBAC) providers are currently supported: + * Resource representing the roles allowed by RBAC providers and the permissions assigned to the roles. * @return a {@link UnifiedRoleDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleDefinition get() { return get(null); } /** - * Read the properties and relationships of a unifiedRoleDefinition object. The following role-based access control (RBAC) providers are currently supported: + * Resource representing the roles allowed by RBAC providers and the permissions assigned to the roles. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleDefinition get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public UnifiedRoleDefinition get(@jakarta.annotation.Nullable final java.util.fu return this.requestAdapter.send(requestInfo, errorMapping, UnifiedRoleDefinition::createFromDiscriminatorValue); } /** - * Update the properties of a unifiedRoleDefinition object. You cannot update built-in roles. This feature requires a Microsoft Entra ID P1 or P2 license. + * Update the navigation property roleDefinitions in roleManagement * @param body The request body * @return a {@link UnifiedRoleDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleDefinition patch(@jakarta.annotation.Nonnull final UnifiedRoleDefinition body) { return patch(body, null); } /** - * Update the properties of a unifiedRoleDefinition object. You cannot update built-in roles. This feature requires a Microsoft Entra ID P1 or P2 license. + * Update the navigation property roleDefinitions in roleManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleDefinition patch(@jakarta.annotation.Nonnull final UnifiedRoleDefinition body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public UnifiedRoleDefinition patch(@jakarta.annotation.Nonnull final UnifiedRole return this.requestAdapter.send(requestInfo, errorMapping, UnifiedRoleDefinition::createFromDiscriminatorValue); } /** - * Delete a unifiedRoleDefinition object. You can't delete built-in roles. This feature requires a Microsoft Entra ID P1 or P2 license. + * Delete navigation property roleDefinitions for roleManagement * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a unifiedRoleDefinition object. You can't delete built-in roles. This feature requires a Microsoft Entra ID P1 or P2 license. + * Delete navigation property roleDefinitions for roleManagement * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a unifiedRoleDefinition object. The following role-based access control (RBAC) providers are currently supported: + * Resource representing the roles allowed by RBAC providers and the permissions assigned to the roles. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a unifiedRoleDefinition object. The following role-based access control (RBAC) providers are currently supported: + * Resource representing the roles allowed by RBAC providers and the permissions assigned to the roles. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a unifiedRoleDefinition object. You cannot update built-in roles. This feature requires a Microsoft Entra ID P1 or P2 license. + * Update the navigation property roleDefinitions in roleManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a unifiedRoleDefinition object. You cannot update built-in roles. This feature requires a Microsoft Entra ID P1 or P2 license. + * Update the navigation property roleDefinitions in roleManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public UnifiedRoleDefinitionItemRequestBuilder withUrl(@jakarta.annotation.Nonnu public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a unifiedRoleDefinition object. The following role-based access control (RBAC) providers are currently supported: + * Resource representing the roles allowed by RBAC providers and the permissions assigned to the roles. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleeligibilityscheduleinstances/RoleEligibilityScheduleInstancesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleeligibilityscheduleinstances/RoleEligibilityScheduleInstancesRequestBuilder.java index 6e396a99e48..45b9408ee0f 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleeligibilityscheduleinstances/RoleEligibilityScheduleInstancesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleeligibilityscheduleinstances/RoleEligibilityScheduleInstancesRequestBuilder.java @@ -71,21 +71,19 @@ public FilterByCurrentUserWithOnRequestBuilder filterByCurrentUserWithOn(@jakart return new FilterByCurrentUserWithOnRequestBuilder(pathParameters, requestAdapter, on); } /** - * Get the instances of role eligibilities. + * Instances for role eligibility requests. * @return a {@link UnifiedRoleEligibilityScheduleInstanceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleEligibilityScheduleInstanceCollectionResponse get() { return get(null); } /** - * Get the instances of role eligibilities. + * Instances for role eligibility requests. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleEligibilityScheduleInstanceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleEligibilityScheduleInstanceCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +118,7 @@ public UnifiedRoleEligibilityScheduleInstance post(@jakarta.annotation.Nonnull f return this.requestAdapter.send(requestInfo, errorMapping, UnifiedRoleEligibilityScheduleInstance::createFromDiscriminatorValue); } /** - * Get the instances of role eligibilities. + * Instances for role eligibility requests. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +126,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the instances of role eligibilities. + * Instances for role eligibility requests. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -174,7 +172,7 @@ public RoleEligibilityScheduleInstancesRequestBuilder withUrl(@jakarta.annotatio return new RoleEligibilityScheduleInstancesRequestBuilder(rawUrl, requestAdapter); } /** - * Get the instances of role eligibilities. + * Instances for role eligibility requests. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleeligibilityscheduleinstances/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleeligibilityscheduleinstances/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java index f8903d8e647..e07aff36271 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleeligibilityscheduleinstances/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleeligibilityscheduleinstances/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java @@ -38,19 +38,21 @@ public FilterByCurrentUserWithOnRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/filterByCurrentUser(on='{on}'){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function filterByCurrentUser + * Get the instances of eligible roles for the calling principal. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get() { return get(null); } /** - * Invoke function filterByCurrentUser + * Get the instances of eligible roles for the calling principal. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, FilterByCurrentUserWithOnGetResponse::createFromDiscriminatorValue); } /** - * Invoke function filterByCurrentUser + * Get the instances of eligible roles for the calling principal. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function filterByCurrentUser + * Get the instances of eligible roles for the calling principal. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -90,7 +92,7 @@ public FilterByCurrentUserWithOnRequestBuilder withUrl(@jakarta.annotation.Nonnu return new FilterByCurrentUserWithOnRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function filterByCurrentUser + * Get the instances of eligible roles for the calling principal. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleeligibilityscheduleinstances/item/UnifiedRoleEligibilityScheduleInstanceItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleeligibilityscheduleinstances/item/UnifiedRoleEligibilityScheduleInstanceItemRequestBuilder.java index e974847295e..3e6c5991274 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleeligibilityscheduleinstances/item/UnifiedRoleEligibilityScheduleInstanceItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleeligibilityscheduleinstances/item/UnifiedRoleEligibilityScheduleInstanceItemRequestBuilder.java @@ -91,21 +91,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the instance of a role eligibility. + * Instances for role eligibility requests. * @return a {@link UnifiedRoleEligibilityScheduleInstance} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleEligibilityScheduleInstance get() { return get(null); } /** - * Get the instance of a role eligibility. + * Instances for role eligibility requests. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleEligibilityScheduleInstance} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleEligibilityScheduleInstance get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -160,7 +158,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the instance of a role eligibility. + * Instances for role eligibility requests. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -168,7 +166,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the instance of a role eligibility. + * Instances for role eligibility requests. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -220,7 +218,7 @@ public UnifiedRoleEligibilityScheduleInstanceItemRequestBuilder withUrl(@jakarta public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the instance of a role eligibility. + * Instances for role eligibility requests. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleeligibilityschedulerequests/RoleEligibilityScheduleRequestsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleeligibilityschedulerequests/RoleEligibilityScheduleRequestsRequestBuilder.java index 0bfb04b7ab1..e356f17a23c 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleeligibilityschedulerequests/RoleEligibilityScheduleRequestsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleeligibilityschedulerequests/RoleEligibilityScheduleRequestsRequestBuilder.java @@ -71,21 +71,19 @@ public FilterByCurrentUserWithOnRequestBuilder filterByCurrentUserWithOn(@jakart return new FilterByCurrentUserWithOnRequestBuilder(pathParameters, requestAdapter, on); } /** - * In PIM, retrieve the requests for role eligibilities for principals made through the unifiedRoleEligibilityScheduleRequest object. + * Requests for role eligibilities for principals through PIM. * @return a {@link UnifiedRoleEligibilityScheduleRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleEligibilityScheduleRequestCollectionResponse get() { return get(null); } /** - * In PIM, retrieve the requests for role eligibilities for principals made through the unifiedRoleEligibilityScheduleRequest object. + * Requests for role eligibilities for principals through PIM. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleEligibilityScheduleRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleEligibilityScheduleRequestCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -95,23 +93,21 @@ public UnifiedRoleEligibilityScheduleRequestCollectionResponse get(@jakarta.anno return this.requestAdapter.send(requestInfo, errorMapping, UnifiedRoleEligibilityScheduleRequestCollectionResponse::createFromDiscriminatorValue); } /** - * In PIM, request for a role eligibility for a principal through the unifiedRoleEligibilityScheduleRequest object. This operation allows both admins and eligible users to add, revoke, or extend eligible assignments. + * Create new navigation property to roleEligibilityScheduleRequests for roleManagement * @param body The request body * @return a {@link UnifiedRoleEligibilityScheduleRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleEligibilityScheduleRequest post(@jakarta.annotation.Nonnull final UnifiedRoleEligibilityScheduleRequest body) { return post(body, null); } /** - * In PIM, request for a role eligibility for a principal through the unifiedRoleEligibilityScheduleRequest object. This operation allows both admins and eligible users to add, revoke, or extend eligible assignments. + * Create new navigation property to roleEligibilityScheduleRequests for roleManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleEligibilityScheduleRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleEligibilityScheduleRequest post(@jakarta.annotation.Nonnull final UnifiedRoleEligibilityScheduleRequest body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -122,7 +118,7 @@ public UnifiedRoleEligibilityScheduleRequest post(@jakarta.annotation.Nonnull fi return this.requestAdapter.send(requestInfo, errorMapping, UnifiedRoleEligibilityScheduleRequest::createFromDiscriminatorValue); } /** - * In PIM, retrieve the requests for role eligibilities for principals made through the unifiedRoleEligibilityScheduleRequest object. + * Requests for role eligibilities for principals through PIM. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -130,7 +126,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * In PIM, retrieve the requests for role eligibilities for principals made through the unifiedRoleEligibilityScheduleRequest object. + * Requests for role eligibilities for principals through PIM. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -142,7 +138,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * In PIM, request for a role eligibility for a principal through the unifiedRoleEligibilityScheduleRequest object. This operation allows both admins and eligible users to add, revoke, or extend eligible assignments. + * Create new navigation property to roleEligibilityScheduleRequests for roleManagement * @param body The request body * @return a {@link RequestInformation} */ @@ -151,7 +147,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * In PIM, request for a role eligibility for a principal through the unifiedRoleEligibilityScheduleRequest object. This operation allows both admins and eligible users to add, revoke, or extend eligible assignments. + * Create new navigation property to roleEligibilityScheduleRequests for roleManagement * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -176,7 +172,7 @@ public RoleEligibilityScheduleRequestsRequestBuilder withUrl(@jakarta.annotation return new RoleEligibilityScheduleRequestsRequestBuilder(rawUrl, requestAdapter); } /** - * In PIM, retrieve the requests for role eligibilities for principals made through the unifiedRoleEligibilityScheduleRequest object. + * Requests for role eligibilities for principals through PIM. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleeligibilityschedulerequests/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleeligibilityschedulerequests/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java index 4f912c538b0..6069fd758b6 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleeligibilityschedulerequests/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleeligibilityschedulerequests/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java @@ -38,19 +38,21 @@ public FilterByCurrentUserWithOnRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/filterByCurrentUser(on='{on}'){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function filterByCurrentUser + * In PIM, retrieve the requests for role eligibilities for a particular principal. The principal can be the creator or approver of the unifiedRoleEligibilityScheduleRequest object, or they can be the target of the role eligibility. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get() { return get(null); } /** - * Invoke function filterByCurrentUser + * In PIM, retrieve the requests for role eligibilities for a particular principal. The principal can be the creator or approver of the unifiedRoleEligibilityScheduleRequest object, or they can be the target of the role eligibility. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, FilterByCurrentUserWithOnGetResponse::createFromDiscriminatorValue); } /** - * Invoke function filterByCurrentUser + * In PIM, retrieve the requests for role eligibilities for a particular principal. The principal can be the creator or approver of the unifiedRoleEligibilityScheduleRequest object, or they can be the target of the role eligibility. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function filterByCurrentUser + * In PIM, retrieve the requests for role eligibilities for a particular principal. The principal can be the creator or approver of the unifiedRoleEligibilityScheduleRequest object, or they can be the target of the role eligibility. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -90,7 +92,7 @@ public FilterByCurrentUserWithOnRequestBuilder withUrl(@jakarta.annotation.Nonnu return new FilterByCurrentUserWithOnRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function filterByCurrentUser + * In PIM, retrieve the requests for role eligibilities for a particular principal. The principal can be the creator or approver of the unifiedRoleEligibilityScheduleRequest object, or they can be the target of the role eligibility. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleeligibilityschedulerequests/item/UnifiedRoleEligibilityScheduleRequestItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleeligibilityschedulerequests/item/UnifiedRoleEligibilityScheduleRequestItemRequestBuilder.java index 46efb5eafad..d949ebc61f8 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleeligibilityschedulerequests/item/UnifiedRoleEligibilityScheduleRequestItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleeligibilityschedulerequests/item/UnifiedRoleEligibilityScheduleRequestItemRequestBuilder.java @@ -109,21 +109,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * In PIM, read the details of a request for for a role eligibility request made through the unifiedRoleEligibilityScheduleRequest object. + * Requests for role eligibilities for principals through PIM. * @return a {@link UnifiedRoleEligibilityScheduleRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleEligibilityScheduleRequest get() { return get(null); } /** - * In PIM, read the details of a request for for a role eligibility request made through the unifiedRoleEligibilityScheduleRequest object. + * Requests for role eligibilities for principals through PIM. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleEligibilityScheduleRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleEligibilityScheduleRequest get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -178,7 +176,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * In PIM, read the details of a request for for a role eligibility request made through the unifiedRoleEligibilityScheduleRequest object. + * Requests for role eligibilities for principals through PIM. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -186,7 +184,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * In PIM, read the details of a request for for a role eligibility request made through the unifiedRoleEligibilityScheduleRequest object. + * Requests for role eligibilities for principals through PIM. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -238,7 +236,7 @@ public UnifiedRoleEligibilityScheduleRequestItemRequestBuilder withUrl(@jakarta. public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * In PIM, read the details of a request for for a role eligibility request made through the unifiedRoleEligibilityScheduleRequest object. + * Requests for role eligibilities for principals through PIM. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleeligibilityschedules/RoleEligibilitySchedulesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleeligibilityschedules/RoleEligibilitySchedulesRequestBuilder.java index b3a2e329a1c..a5e4fcfe500 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleeligibilityschedules/RoleEligibilitySchedulesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleeligibilityschedules/RoleEligibilitySchedulesRequestBuilder.java @@ -71,21 +71,19 @@ public FilterByCurrentUserWithOnRequestBuilder filterByCurrentUserWithOn(@jakart return new FilterByCurrentUserWithOnRequestBuilder(pathParameters, requestAdapter, on); } /** - * Get the unifiedRoleEligibilitySchedule resources from the roleEligibilitySchedules navigation property. + * Schedules for role eligibility operations. * @return a {@link UnifiedRoleEligibilityScheduleCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleEligibilityScheduleCollectionResponse get() { return get(null); } /** - * Get the unifiedRoleEligibilitySchedule resources from the roleEligibilitySchedules navigation property. + * Schedules for role eligibility operations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleEligibilityScheduleCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleEligibilityScheduleCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +118,7 @@ public UnifiedRoleEligibilitySchedule post(@jakarta.annotation.Nonnull final Uni return this.requestAdapter.send(requestInfo, errorMapping, UnifiedRoleEligibilitySchedule::createFromDiscriminatorValue); } /** - * Get the unifiedRoleEligibilitySchedule resources from the roleEligibilitySchedules navigation property. + * Schedules for role eligibility operations. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +126,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the unifiedRoleEligibilitySchedule resources from the roleEligibilitySchedules navigation property. + * Schedules for role eligibility operations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -174,7 +172,7 @@ public RoleEligibilitySchedulesRequestBuilder withUrl(@jakarta.annotation.Nonnul return new RoleEligibilitySchedulesRequestBuilder(rawUrl, requestAdapter); } /** - * Get the unifiedRoleEligibilitySchedule resources from the roleEligibilitySchedules navigation property. + * Schedules for role eligibility operations. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleeligibilityschedules/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleeligibilityschedules/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java index e97e03dc42d..533976a6304 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleeligibilityschedules/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleeligibilityschedules/filterbycurrentuserwithon/FilterByCurrentUserWithOnRequestBuilder.java @@ -38,19 +38,21 @@ public FilterByCurrentUserWithOnRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/roleManagement/entitlementManagement/roleEligibilitySchedules/filterByCurrentUser(on='{on}'){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function filterByCurrentUser + * Retrieve the schedules for role eligibilities for which the signed-in user is the principal. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get() { return get(null); } /** - * Invoke function filterByCurrentUser + * Retrieve the schedules for role eligibilities for which the signed-in user is the principal. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FilterByCurrentUserWithOnGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public FilterByCurrentUserWithOnGetResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, FilterByCurrentUserWithOnGetResponse::createFromDiscriminatorValue); } /** - * Invoke function filterByCurrentUser + * Retrieve the schedules for role eligibilities for which the signed-in user is the principal. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function filterByCurrentUser + * Retrieve the schedules for role eligibilities for which the signed-in user is the principal. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -90,7 +92,7 @@ public FilterByCurrentUserWithOnRequestBuilder withUrl(@jakarta.annotation.Nonnu return new FilterByCurrentUserWithOnRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function filterByCurrentUser + * Retrieve the schedules for role eligibilities for which the signed-in user is the principal. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleeligibilityschedules/item/UnifiedRoleEligibilityScheduleItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleeligibilityschedules/item/UnifiedRoleEligibilityScheduleItemRequestBuilder.java index 4bff572e39f..17e2aec6dc7 100644 --- a/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleeligibilityschedules/item/UnifiedRoleEligibilityScheduleItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/rolemanagement/entitlementmanagement/roleeligibilityschedules/item/UnifiedRoleEligibilityScheduleItemRequestBuilder.java @@ -91,21 +91,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the schedule for a role eligibility operation. + * Schedules for role eligibility operations. * @return a {@link UnifiedRoleEligibilitySchedule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleEligibilitySchedule get() { return get(null); } /** - * Retrieve the schedule for a role eligibility operation. + * Schedules for role eligibility operations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedRoleEligibilitySchedule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedRoleEligibilitySchedule get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -160,7 +158,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the schedule for a role eligibility operation. + * Schedules for role eligibility operations. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -168,7 +166,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the schedule for a role eligibility operation. + * Schedules for role eligibility operations. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -220,7 +218,7 @@ public UnifiedRoleEligibilityScheduleItemRequestBuilder withUrl(@jakarta.annotat public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the schedule for a role eligibility operation. + * Schedules for role eligibility operations. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/search/acronyms/AcronymsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/search/acronyms/AcronymsRequestBuilder.java index 20a212aeb61..e4ca3ca7235 100644 --- a/src/main/java/com/microsoft/graph/generated/search/acronyms/AcronymsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/search/acronyms/AcronymsRequestBuilder.java @@ -60,21 +60,19 @@ public AcronymsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/search/acronyms{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the acronym objects and their properties. + * Administrative answer in Microsoft Search results to define common acronyms in an organization. * @return a {@link AcronymCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AcronymCollectionResponse get() { return get(null); } /** - * Get a list of the acronym objects and their properties. + * Administrative answer in Microsoft Search results to define common acronyms in an organization. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AcronymCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AcronymCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public AcronymCollectionResponse get(@jakarta.annotation.Nullable final java.uti return this.requestAdapter.send(requestInfo, errorMapping, AcronymCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new acronym object. + * Create new navigation property to acronyms for search * @param body The request body * @return a {@link Acronym} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Acronym post(@jakarta.annotation.Nonnull final Acronym body) { return post(body, null); } /** - * Create a new acronym object. + * Create new navigation property to acronyms for search * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Acronym} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Acronym post(@jakarta.annotation.Nonnull final Acronym body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public Acronym post(@jakarta.annotation.Nonnull final Acronym body, @jakarta.ann return this.requestAdapter.send(requestInfo, errorMapping, Acronym::createFromDiscriminatorValue); } /** - * Get a list of the acronym objects and their properties. + * Administrative answer in Microsoft Search results to define common acronyms in an organization. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the acronym objects and their properties. + * Administrative answer in Microsoft Search results to define common acronyms in an organization. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new acronym object. + * Create new navigation property to acronyms for search * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new acronym object. + * Create new navigation property to acronyms for search * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public AcronymsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new AcronymsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the acronym objects and their properties. + * Administrative answer in Microsoft Search results to define common acronyms in an organization. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/search/acronyms/item/AcronymItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/search/acronyms/item/AcronymItemRequestBuilder.java index 688adb64351..f30b58e0411 100644 --- a/src/main/java/com/microsoft/graph/generated/search/acronyms/item/AcronymItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/search/acronyms/item/AcronymItemRequestBuilder.java @@ -37,18 +37,16 @@ public AcronymItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/search/acronyms/{acronym%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an acronym object. + * Delete navigation property acronyms for search * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an acronym object. + * Delete navigation property acronyms for search * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of an acronym object. + * Administrative answer in Microsoft Search results to define common acronyms in an organization. * @return a {@link Acronym} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Acronym get() { return get(null); } /** - * Read the properties and relationships of an acronym object. + * Administrative answer in Microsoft Search results to define common acronyms in an organization. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Acronym} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Acronym get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public Acronym get(@jakarta.annotation.Nullable final java.util.function.Consume return this.requestAdapter.send(requestInfo, errorMapping, Acronym::createFromDiscriminatorValue); } /** - * Update the properties of an acronym object. + * Update the navigation property acronyms in search * @param body The request body * @return a {@link Acronym} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Acronym patch(@jakarta.annotation.Nonnull final Acronym body) { return patch(body, null); } /** - * Update the properties of an acronym object. + * Update the navigation property acronyms in search * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Acronym} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Acronym patch(@jakarta.annotation.Nonnull final Acronym body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public Acronym patch(@jakarta.annotation.Nonnull final Acronym body, @jakarta.an return this.requestAdapter.send(requestInfo, errorMapping, Acronym::createFromDiscriminatorValue); } /** - * Delete an acronym object. + * Delete navigation property acronyms for search * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an acronym object. + * Delete navigation property acronyms for search * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of an acronym object. + * Administrative answer in Microsoft Search results to define common acronyms in an organization. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of an acronym object. + * Administrative answer in Microsoft Search results to define common acronyms in an organization. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an acronym object. + * Update the navigation property acronyms in search * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an acronym object. + * Update the navigation property acronyms in search * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public AcronymItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of an acronym object. + * Administrative answer in Microsoft Search results to define common acronyms in an organization. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/search/bookmarks/BookmarksRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/search/bookmarks/BookmarksRequestBuilder.java index 7623db94aa6..082d3b3153e 100644 --- a/src/main/java/com/microsoft/graph/generated/search/bookmarks/BookmarksRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/search/bookmarks/BookmarksRequestBuilder.java @@ -60,21 +60,19 @@ public BookmarksRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/search/bookmarks{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of bookmark objects and their properties. + * Administrative answer in Microsoft Search results for common search queries in an organization. * @return a {@link BookmarkCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookmarkCollectionResponse get() { return get(null); } /** - * Get a list of bookmark objects and their properties. + * Administrative answer in Microsoft Search results for common search queries in an organization. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BookmarkCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookmarkCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public BookmarkCollectionResponse get(@jakarta.annotation.Nullable final java.ut return this.requestAdapter.send(requestInfo, errorMapping, BookmarkCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new bookmark object. + * Create new navigation property to bookmarks for search * @param body The request body * @return a {@link Bookmark} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Bookmark post(@jakarta.annotation.Nonnull final Bookmark body) { return post(body, null); } /** - * Create a new bookmark object. + * Create new navigation property to bookmarks for search * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Bookmark} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Bookmark post(@jakarta.annotation.Nonnull final Bookmark body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public Bookmark post(@jakarta.annotation.Nonnull final Bookmark body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, Bookmark::createFromDiscriminatorValue); } /** - * Get a list of bookmark objects and their properties. + * Administrative answer in Microsoft Search results for common search queries in an organization. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of bookmark objects and their properties. + * Administrative answer in Microsoft Search results for common search queries in an organization. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new bookmark object. + * Create new navigation property to bookmarks for search * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new bookmark object. + * Create new navigation property to bookmarks for search * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public BookmarksRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new BookmarksRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of bookmark objects and their properties. + * Administrative answer in Microsoft Search results for common search queries in an organization. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/search/bookmarks/item/BookmarkItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/search/bookmarks/item/BookmarkItemRequestBuilder.java index ee4cf1f895a..61f7f6f2428 100644 --- a/src/main/java/com/microsoft/graph/generated/search/bookmarks/item/BookmarkItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/search/bookmarks/item/BookmarkItemRequestBuilder.java @@ -37,18 +37,16 @@ public BookmarkItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/search/bookmarks/{bookmark%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a bookmark object. + * Delete navigation property bookmarks for search * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a bookmark object. + * Delete navigation property bookmarks for search * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a bookmark object. + * Administrative answer in Microsoft Search results for common search queries in an organization. * @return a {@link Bookmark} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Bookmark get() { return get(null); } /** - * Read the properties and relationships of a bookmark object. + * Administrative answer in Microsoft Search results for common search queries in an organization. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Bookmark} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Bookmark get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public Bookmark get(@jakarta.annotation.Nullable final java.util.function.Consum return this.requestAdapter.send(requestInfo, errorMapping, Bookmark::createFromDiscriminatorValue); } /** - * Update the properties of a bookmark object. + * Update the navigation property bookmarks in search * @param body The request body * @return a {@link Bookmark} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Bookmark patch(@jakarta.annotation.Nonnull final Bookmark body) { return patch(body, null); } /** - * Update the properties of a bookmark object. + * Update the navigation property bookmarks in search * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Bookmark} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Bookmark patch(@jakarta.annotation.Nonnull final Bookmark body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public Bookmark patch(@jakarta.annotation.Nonnull final Bookmark body, @jakarta. return this.requestAdapter.send(requestInfo, errorMapping, Bookmark::createFromDiscriminatorValue); } /** - * Delete a bookmark object. + * Delete navigation property bookmarks for search * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a bookmark object. + * Delete navigation property bookmarks for search * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a bookmark object. + * Administrative answer in Microsoft Search results for common search queries in an organization. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a bookmark object. + * Administrative answer in Microsoft Search results for common search queries in an organization. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a bookmark object. + * Update the navigation property bookmarks in search * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a bookmark object. + * Update the navigation property bookmarks in search * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public BookmarkItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a bookmark object. + * Administrative answer in Microsoft Search results for common search queries in an organization. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/search/qnas/QnasRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/search/qnas/QnasRequestBuilder.java index be7603385f4..957086696e9 100644 --- a/src/main/java/com/microsoft/graph/generated/search/qnas/QnasRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/search/qnas/QnasRequestBuilder.java @@ -60,21 +60,19 @@ public QnasRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka super(requestAdapter, "{+baseurl}/search/qnas{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the qna objects and their properties. + * Administrative answer in Microsoft Search results that provide answers for specific search keywords in an organization. * @return a {@link QnaCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public QnaCollectionResponse get() { return get(null); } /** - * Get a list of the qna objects and their properties. + * Administrative answer in Microsoft Search results that provide answers for specific search keywords in an organization. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link QnaCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public QnaCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public QnaCollectionResponse get(@jakarta.annotation.Nullable final java.util.fu return this.requestAdapter.send(requestInfo, errorMapping, QnaCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new qna object. + * Create new navigation property to qnas for search * @param body The request body * @return a {@link Qna} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Qna post(@jakarta.annotation.Nonnull final Qna body) { return post(body, null); } /** - * Create a new qna object. + * Create new navigation property to qnas for search * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Qna} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Qna post(@jakarta.annotation.Nonnull final Qna body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public Qna post(@jakarta.annotation.Nonnull final Qna body, @jakarta.annotation. return this.requestAdapter.send(requestInfo, errorMapping, Qna::createFromDiscriminatorValue); } /** - * Get a list of the qna objects and their properties. + * Administrative answer in Microsoft Search results that provide answers for specific search keywords in an organization. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the qna objects and their properties. + * Administrative answer in Microsoft Search results that provide answers for specific search keywords in an organization. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new qna object. + * Create new navigation property to qnas for search * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new qna object. + * Create new navigation property to qnas for search * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public QnasRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr return new QnasRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the qna objects and their properties. + * Administrative answer in Microsoft Search results that provide answers for specific search keywords in an organization. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/search/qnas/item/QnaItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/search/qnas/item/QnaItemRequestBuilder.java index 5d0c916d8ad..ef705e0034e 100644 --- a/src/main/java/com/microsoft/graph/generated/search/qnas/item/QnaItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/search/qnas/item/QnaItemRequestBuilder.java @@ -37,18 +37,16 @@ public QnaItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/search/qnas/{qna%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a qna object. + * Delete navigation property qnas for search * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a qna object. + * Delete navigation property qnas for search * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a qna object. + * Administrative answer in Microsoft Search results that provide answers for specific search keywords in an organization. * @return a {@link Qna} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Qna get() { return get(null); } /** - * Read the properties and relationships of a qna object. + * Administrative answer in Microsoft Search results that provide answers for specific search keywords in an organization. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Qna} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Qna get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public Qna get(@jakarta.annotation.Nullable final java.util.function.ConsumerFind more info here */ @jakarta.annotation.Nullable public Qna patch(@jakarta.annotation.Nonnull final Qna body) { return patch(body, null); } /** - * Update the properties of a qna object. + * Update the navigation property qnas in search * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Qna} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Qna patch(@jakarta.annotation.Nonnull final Qna body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public Qna patch(@jakarta.annotation.Nonnull final Qna body, @jakarta.annotation return this.requestAdapter.send(requestInfo, errorMapping, Qna::createFromDiscriminatorValue); } /** - * Delete a qna object. + * Delete navigation property qnas for search * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a qna object. + * Delete navigation property qnas for search * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a qna object. + * Administrative answer in Microsoft Search results that provide answers for specific search keywords in an organization. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a qna object. + * Administrative answer in Microsoft Search results that provide answers for specific search keywords in an organization. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a qna object. + * Update the navigation property qnas in search * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a qna object. + * Update the navigation property qnas in search * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public QnaItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a qna object. + * Administrative answer in Microsoft Search results that provide answers for specific search keywords in an organization. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/alerts/AlertsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/alerts/AlertsRequestBuilder.java index f69cd2a868c..58885561fc4 100644 --- a/src/main/java/com/microsoft/graph/generated/security/alerts/AlertsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/alerts/AlertsRequestBuilder.java @@ -60,21 +60,19 @@ public AlertsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/security/alerts{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of alert objects. + * Get alerts from security * @return a {@link AlertCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AlertCollectionResponse get() { return get(null); } /** - * Retrieve a list of alert objects. + * Get alerts from security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AlertCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AlertCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Alert post(@jakarta.annotation.Nonnull final Alert body, @jakarta.annotat return this.requestAdapter.send(requestInfo, errorMapping, Alert::createFromDiscriminatorValue); } /** - * Retrieve a list of alert objects. + * Get alerts from security * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of alert objects. + * Get alerts from security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public AlertsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw return new AlertsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of alert objects. + * Get alerts from security */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/alerts/item/AlertItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/alerts/item/AlertItemRequestBuilder.java index 041ee750ec2..1608a95cbff 100644 --- a/src/main/java/com/microsoft/graph/generated/security/alerts/item/AlertItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/alerts/item/AlertItemRequestBuilder.java @@ -37,21 +37,19 @@ public AlertItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/security/alerts/{alert%2Did}{?%24expand,%24select}", rawUrl); } /** - * Retrieve the properties and relationships of an alert object. + * Get alerts from security * @return a {@link Alert} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Alert get() { return get(null); } /** - * Retrieve the properties and relationships of an alert object. + * Get alerts from security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Alert} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Alert get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -61,23 +59,21 @@ public Alert get(@jakarta.annotation.Nullable final java.util.function.Consumer< return this.requestAdapter.send(requestInfo, errorMapping, Alert::createFromDiscriminatorValue); } /** - * Update an editable alert property within any integrated solution to keep alert status and assignments in sync across solutions. This method updates any solution that has a record of the referenced alert ID. + * Update the navigation property alerts in security * @param body The request body * @return a {@link Alert} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Alert patch(@jakarta.annotation.Nonnull final Alert body) { return patch(body, null); } /** - * Update an editable alert property within any integrated solution to keep alert status and assignments in sync across solutions. This method updates any solution that has a record of the referenced alert ID. + * Update the navigation property alerts in security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Alert} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Alert patch(@jakarta.annotation.Nonnull final Alert body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -88,7 +84,7 @@ public Alert patch(@jakarta.annotation.Nonnull final Alert body, @jakarta.annota return this.requestAdapter.send(requestInfo, errorMapping, Alert::createFromDiscriminatorValue); } /** - * Retrieve the properties and relationships of an alert object. + * Get alerts from security * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -96,7 +92,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of an alert object. + * Get alerts from security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -108,7 +104,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update an editable alert property within any integrated solution to keep alert status and assignments in sync across solutions. This method updates any solution that has a record of the referenced alert ID. + * Update the navigation property alerts in security * @param body The request body * @return a {@link RequestInformation} */ @@ -117,7 +113,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update an editable alert property within any integrated solution to keep alert status and assignments in sync across solutions. This method updates any solution that has a record of the referenced alert ID. + * Update the navigation property alerts in security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -142,7 +138,7 @@ public AlertItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new AlertItemRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the properties and relationships of an alert object. + * Get alerts from security */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/alerts_v2/AlertsV2RequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/alerts_v2/AlertsV2RequestBuilder.java index 5665818a320..4c52a16b4b8 100644 --- a/src/main/java/com/microsoft/graph/generated/security/alerts_v2/AlertsV2RequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/alerts_v2/AlertsV2RequestBuilder.java @@ -60,21 +60,19 @@ public AlertsV2RequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/security/alerts_v2{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of alert resources created to track suspicious activities in an organization. This operation lets you filter and sort through alerts to create an informed cyber security response. It exposes a collection of alerts that were flagged in your network, within the time range you specified in your environment retention policy. The most recent alerts are displayed at the top of the list. + * A collection of alerts in Microsoft 365 Defender. * @return a {@link AlertCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AlertCollectionResponse get() { return get(null); } /** - * Get a list of alert resources created to track suspicious activities in an organization. This operation lets you filter and sort through alerts to create an informed cyber security response. It exposes a collection of alerts that were flagged in your network, within the time range you specified in your environment retention policy. The most recent alerts are displayed at the top of the list. + * A collection of alerts in Microsoft 365 Defender. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AlertCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AlertCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Alert post(@jakarta.annotation.Nonnull final Alert body, @jakarta.annotat return this.requestAdapter.send(requestInfo, errorMapping, Alert::createFromDiscriminatorValue); } /** - * Get a list of alert resources created to track suspicious activities in an organization. This operation lets you filter and sort through alerts to create an informed cyber security response. It exposes a collection of alerts that were flagged in your network, within the time range you specified in your environment retention policy. The most recent alerts are displayed at the top of the list. + * A collection of alerts in Microsoft 365 Defender. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of alert resources created to track suspicious activities in an organization. This operation lets you filter and sort through alerts to create an informed cyber security response. It exposes a collection of alerts that were flagged in your network, within the time range you specified in your environment retention policy. The most recent alerts are displayed at the top of the list. + * A collection of alerts in Microsoft 365 Defender. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public AlertsV2RequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new AlertsV2RequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of alert resources created to track suspicious activities in an organization. This operation lets you filter and sort through alerts to create an informed cyber security response. It exposes a collection of alerts that were flagged in your network, within the time range you specified in your environment retention policy. The most recent alerts are displayed at the top of the list. + * A collection of alerts in Microsoft 365 Defender. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/alerts_v2/item/AlertItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/alerts_v2/item/AlertItemRequestBuilder.java index c39d2b69a7b..bafb0a136ef 100644 --- a/src/main/java/com/microsoft/graph/generated/security/alerts_v2/item/AlertItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/alerts_v2/item/AlertItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the properties and relationships of an alert object. + * A collection of alerts in Microsoft 365 Defender. * @return a {@link Alert} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Alert get() { return get(null); } /** - * Get the properties and relationships of an alert object. + * A collection of alerts in Microsoft 365 Defender. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Alert} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Alert get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -88,23 +86,21 @@ public Alert get(@jakarta.annotation.Nullable final java.util.function.Consumer< return this.requestAdapter.send(requestInfo, errorMapping, Alert::createFromDiscriminatorValue); } /** - * Update the properties of an alert object in an organization based on the specified alert id property. + * Update the navigation property alerts_v2 in security * @param body The request body * @return a {@link Alert} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Alert patch(@jakarta.annotation.Nonnull final Alert body) { return patch(body, null); } /** - * Update the properties of an alert object in an organization based on the specified alert id property. + * Update the navigation property alerts_v2 in security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Alert} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Alert patch(@jakarta.annotation.Nonnull final Alert body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the properties and relationships of an alert object. + * A collection of alerts in Microsoft 365 Defender. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the properties and relationships of an alert object. + * A collection of alerts in Microsoft 365 Defender. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an alert object in an organization based on the specified alert id property. + * Update the navigation property alerts_v2 in security * @param body The request body * @return a {@link RequestInformation} */ @@ -164,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an alert object in an organization based on the specified alert id property. + * Update the navigation property alerts_v2 in security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -195,7 +191,7 @@ public AlertItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the properties and relationships of an alert object. + * A collection of alerts in Microsoft 365 Defender. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/attacksimulation/endusernotifications/EndUserNotificationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/attacksimulation/endusernotifications/EndUserNotificationsRequestBuilder.java index f15173d5b43..1fe92346b32 100644 --- a/src/main/java/com/microsoft/graph/generated/security/attacksimulation/endusernotifications/EndUserNotificationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/attacksimulation/endusernotifications/EndUserNotificationsRequestBuilder.java @@ -60,21 +60,19 @@ public EndUserNotificationsRequestBuilder(@jakarta.annotation.Nonnull final Stri super(requestAdapter, "{+baseurl}/security/attackSimulation/endUserNotifications{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of endUserNotification objects and their properties. + * Represents an end user's notification for an attack simulation training. * @return a {@link EndUserNotificationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EndUserNotificationCollectionResponse get() { return get(null); } /** - * Get a list of endUserNotification objects and their properties. + * Represents an end user's notification for an attack simulation training. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EndUserNotificationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EndUserNotificationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public EndUserNotification post(@jakarta.annotation.Nonnull final EndUserNotific return this.requestAdapter.send(requestInfo, errorMapping, EndUserNotification::createFromDiscriminatorValue); } /** - * Get a list of endUserNotification objects and their properties. + * Represents an end user's notification for an attack simulation training. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of endUserNotification objects and their properties. + * Represents an end user's notification for an attack simulation training. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public EndUserNotificationsRequestBuilder withUrl(@jakarta.annotation.Nonnull fi return new EndUserNotificationsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of endUserNotification objects and their properties. + * Represents an end user's notification for an attack simulation training. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/attacksimulation/landingpages/LandingPagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/attacksimulation/landingpages/LandingPagesRequestBuilder.java index c5b21a3d7b3..dc9a570820d 100644 --- a/src/main/java/com/microsoft/graph/generated/security/attacksimulation/landingpages/LandingPagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/attacksimulation/landingpages/LandingPagesRequestBuilder.java @@ -60,21 +60,19 @@ public LandingPagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/security/attackSimulation/landingPages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the landingPage objects and their properties. + * Represents an attack simulation training landing page. * @return a {@link LandingPageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LandingPageCollectionResponse get() { return get(null); } /** - * Get a list of the landingPage objects and their properties. + * Represents an attack simulation training landing page. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link LandingPageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LandingPageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public LandingPage post(@jakarta.annotation.Nonnull final LandingPage body, @jak return this.requestAdapter.send(requestInfo, errorMapping, LandingPage::createFromDiscriminatorValue); } /** - * Get a list of the landingPage objects and their properties. + * Represents an attack simulation training landing page. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the landingPage objects and their properties. + * Represents an attack simulation training landing page. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public LandingPagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri return new LandingPagesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the landingPage objects and their properties. + * Represents an attack simulation training landing page. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/attacksimulation/loginpages/LoginPagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/attacksimulation/loginpages/LoginPagesRequestBuilder.java index a69050b3246..312ea548f8e 100644 --- a/src/main/java/com/microsoft/graph/generated/security/attacksimulation/loginpages/LoginPagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/attacksimulation/loginpages/LoginPagesRequestBuilder.java @@ -60,21 +60,19 @@ public LoginPagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/security/attackSimulation/loginPages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the loginPage objects and their properties. + * Represents an attack simulation training login page. * @return a {@link LoginPageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LoginPageCollectionResponse get() { return get(null); } /** - * Get a list of the loginPage objects and their properties. + * Represents an attack simulation training login page. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link LoginPageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LoginPageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public LoginPage post(@jakarta.annotation.Nonnull final LoginPage body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, LoginPage::createFromDiscriminatorValue); } /** - * Get a list of the loginPage objects and their properties. + * Represents an attack simulation training login page. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the loginPage objects and their properties. + * Represents an attack simulation training login page. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public LoginPagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new LoginPagesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the loginPage objects and their properties. + * Represents an attack simulation training login page. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/attacksimulation/operations/OperationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/attacksimulation/operations/OperationsRequestBuilder.java index e8727c2f430..16d2b46f161 100644 --- a/src/main/java/com/microsoft/graph/generated/security/attacksimulation/operations/OperationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/attacksimulation/operations/OperationsRequestBuilder.java @@ -60,7 +60,7 @@ public OperationsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/security/attackSimulation/operations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get an attack simulation operation to track a long-running operation request for a tenant. + * Represents an attack simulation training operation. * @return a {@link AttackSimulationOperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public AttackSimulationOperationCollectionResponse get() { return get(null); } /** - * Get an attack simulation operation to track a long-running operation request for a tenant. + * Represents an attack simulation training operation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttackSimulationOperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public AttackSimulationOperation post(@jakarta.annotation.Nonnull final AttackSi return this.requestAdapter.send(requestInfo, errorMapping, AttackSimulationOperation::createFromDiscriminatorValue); } /** - * Get an attack simulation operation to track a long-running operation request for a tenant. + * Represents an attack simulation training operation. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an attack simulation operation to track a long-running operation request for a tenant. + * Represents an attack simulation training operation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public OperationsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new OperationsRequestBuilder(rawUrl, requestAdapter); } /** - * Get an attack simulation operation to track a long-running operation request for a tenant. + * Represents an attack simulation training operation. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/attacksimulation/operations/item/AttackSimulationOperationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/attacksimulation/operations/item/AttackSimulationOperationItemRequestBuilder.java index 77d8d47875c..7d648c267ce 100644 --- a/src/main/java/com/microsoft/graph/generated/security/attacksimulation/operations/item/AttackSimulationOperationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/attacksimulation/operations/item/AttackSimulationOperationItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get an attack simulation operation to track a long-running operation request for a tenant. + * Represents an attack simulation training operation. * @return a {@link AttackSimulationOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttackSimulationOperation get() { return get(null); } /** - * Get an attack simulation operation to track a long-running operation request for a tenant. + * Represents an attack simulation training operation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttackSimulationOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttackSimulationOperation get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get an attack simulation operation to track a long-running operation request for a tenant. + * Represents an attack simulation training operation. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an attack simulation operation to track a long-running operation request for a tenant. + * Represents an attack simulation training operation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public AttackSimulationOperationItemRequestBuilder withUrl(@jakarta.annotation.N public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get an attack simulation operation to track a long-running operation request for a tenant. + * Represents an attack simulation training operation. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/attacksimulation/payloads/PayloadsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/attacksimulation/payloads/PayloadsRequestBuilder.java index b03558299d8..8d05f443d26 100644 --- a/src/main/java/com/microsoft/graph/generated/security/attacksimulation/payloads/PayloadsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/attacksimulation/payloads/PayloadsRequestBuilder.java @@ -60,21 +60,19 @@ public PayloadsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/security/attackSimulation/payloads{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of payloads for attack simulation campaigns. This operation expects the mandatory parameter source to filter and query the respective data source. + * Represents an attack simulation training campaign payload in a tenant. * @return a {@link PayloadCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PayloadCollectionResponse get() { return get(null); } /** - * Get a list of payloads for attack simulation campaigns. This operation expects the mandatory parameter source to filter and query the respective data source. + * Represents an attack simulation training campaign payload in a tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PayloadCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PayloadCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Payload post(@jakarta.annotation.Nonnull final Payload body, @jakarta.ann return this.requestAdapter.send(requestInfo, errorMapping, Payload::createFromDiscriminatorValue); } /** - * Get a list of payloads for attack simulation campaigns. This operation expects the mandatory parameter source to filter and query the respective data source. + * Represents an attack simulation training campaign payload in a tenant. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of payloads for attack simulation campaigns. This operation expects the mandatory parameter source to filter and query the respective data source. + * Represents an attack simulation training campaign payload in a tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public PayloadsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new PayloadsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of payloads for attack simulation campaigns. This operation expects the mandatory parameter source to filter and query the respective data source. + * Represents an attack simulation training campaign payload in a tenant. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/attacksimulation/simulationautomations/SimulationAutomationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/attacksimulation/simulationautomations/SimulationAutomationsRequestBuilder.java index c660ee5fefa..112456cd654 100644 --- a/src/main/java/com/microsoft/graph/generated/security/attacksimulation/simulationautomations/SimulationAutomationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/attacksimulation/simulationautomations/SimulationAutomationsRequestBuilder.java @@ -60,21 +60,19 @@ public SimulationAutomationsRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/security/attackSimulation/simulationAutomations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of attack simulation automations for a tenant. + * Represents simulation automation created to run on a tenant. * @return a {@link SimulationAutomationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SimulationAutomationCollectionResponse get() { return get(null); } /** - * Get a list of attack simulation automations for a tenant. + * Represents simulation automation created to run on a tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SimulationAutomationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SimulationAutomationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public SimulationAutomation post(@jakarta.annotation.Nonnull final SimulationAut return this.requestAdapter.send(requestInfo, errorMapping, SimulationAutomation::createFromDiscriminatorValue); } /** - * Get a list of attack simulation automations for a tenant. + * Represents simulation automation created to run on a tenant. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of attack simulation automations for a tenant. + * Represents simulation automation created to run on a tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public SimulationAutomationsRequestBuilder withUrl(@jakarta.annotation.Nonnull f return new SimulationAutomationsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of attack simulation automations for a tenant. + * Represents simulation automation created to run on a tenant. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/attacksimulation/simulationautomations/item/SimulationAutomationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/attacksimulation/simulationautomations/item/SimulationAutomationItemRequestBuilder.java index 8eb15aa17a5..1a00dcb633a 100644 --- a/src/main/java/com/microsoft/graph/generated/security/attacksimulation/simulationautomations/item/SimulationAutomationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/attacksimulation/simulationautomations/item/SimulationAutomationItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get an attack simulation automation for a tenant. + * Represents simulation automation created to run on a tenant. * @return a {@link SimulationAutomation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SimulationAutomation get() { return get(null); } /** - * Get an attack simulation automation for a tenant. + * Represents simulation automation created to run on a tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SimulationAutomation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SimulationAutomation get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get an attack simulation automation for a tenant. + * Represents simulation automation created to run on a tenant. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an attack simulation automation for a tenant. + * Represents simulation automation created to run on a tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public SimulationAutomationItemRequestBuilder withUrl(@jakarta.annotation.Nonnul public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get an attack simulation automation for a tenant. + * Represents simulation automation created to run on a tenant. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/attacksimulation/simulationautomations/item/runs/RunsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/attacksimulation/simulationautomations/item/runs/RunsRequestBuilder.java index 9b3df6d0d15..03007450e32 100644 --- a/src/main/java/com/microsoft/graph/generated/security/attacksimulation/simulationautomations/item/runs/RunsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/attacksimulation/simulationautomations/item/runs/RunsRequestBuilder.java @@ -60,21 +60,19 @@ public RunsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka super(requestAdapter, "{+baseurl}/security/attackSimulation/simulationAutomations/{simulationAutomation%2Did}/runs{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the attack simulation automation runs for a tenant. + * A collection of simulation automation runs. * @return a {@link SimulationAutomationRunCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SimulationAutomationRunCollectionResponse get() { return get(null); } /** - * Get a list of the attack simulation automation runs for a tenant. + * A collection of simulation automation runs. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SimulationAutomationRunCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SimulationAutomationRunCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public SimulationAutomationRun post(@jakarta.annotation.Nonnull final Simulation return this.requestAdapter.send(requestInfo, errorMapping, SimulationAutomationRun::createFromDiscriminatorValue); } /** - * Get a list of the attack simulation automation runs for a tenant. + * A collection of simulation automation runs. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the attack simulation automation runs for a tenant. + * A collection of simulation automation runs. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public RunsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr return new RunsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the attack simulation automation runs for a tenant. + * A collection of simulation automation runs. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/attacksimulation/simulations/SimulationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/attacksimulation/simulations/SimulationsRequestBuilder.java index 20b1e53bffc..c0215018bc3 100644 --- a/src/main/java/com/microsoft/graph/generated/security/attacksimulation/simulations/SimulationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/attacksimulation/simulations/SimulationsRequestBuilder.java @@ -60,21 +60,19 @@ public SimulationsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/security/attackSimulation/simulations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of attack simulation campaigns for a tenant. + * Represents an attack simulation training campaign in a tenant. * @return a {@link SimulationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SimulationCollectionResponse get() { return get(null); } /** - * Get a list of attack simulation campaigns for a tenant. + * Represents an attack simulation training campaign in a tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SimulationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SimulationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public SimulationCollectionResponse get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, SimulationCollectionResponse::createFromDiscriminatorValue); } /** - * Create an attack simulation campaign for a tenant. + * Create new navigation property to simulations for security * @param body The request body * @return a {@link Simulation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Simulation post(@jakarta.annotation.Nonnull final Simulation body) { return post(body, null); } /** - * Create an attack simulation campaign for a tenant. + * Create new navigation property to simulations for security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Simulation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Simulation post(@jakarta.annotation.Nonnull final Simulation body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public Simulation post(@jakarta.annotation.Nonnull final Simulation body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, Simulation::createFromDiscriminatorValue); } /** - * Get a list of attack simulation campaigns for a tenant. + * Represents an attack simulation training campaign in a tenant. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of attack simulation campaigns for a tenant. + * Represents an attack simulation training campaign in a tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an attack simulation campaign for a tenant. + * Create new navigation property to simulations for security * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an attack simulation campaign for a tenant. + * Create new navigation property to simulations for security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public SimulationsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new SimulationsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of attack simulation campaigns for a tenant. + * Represents an attack simulation training campaign in a tenant. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/attacksimulation/simulations/item/SimulationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/attacksimulation/simulations/item/SimulationItemRequestBuilder.java index eab90346ee7..1b584084f32 100644 --- a/src/main/java/com/microsoft/graph/generated/security/attacksimulation/simulations/item/SimulationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/attacksimulation/simulations/item/SimulationItemRequestBuilder.java @@ -64,18 +64,16 @@ public SimulationItemRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/security/attackSimulation/simulations/{simulation%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an attack simulation campaign for a tenant. + * Delete navigation property simulations for security * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an attack simulation campaign for a tenant. + * Delete navigation property simulations for security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -84,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get an attack simulation campaign for a tenant. + * Represents an attack simulation training campaign in a tenant. * @return a {@link Simulation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Simulation get() { return get(null); } /** - * Get an attack simulation campaign for a tenant. + * Represents an attack simulation training campaign in a tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Simulation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Simulation get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,23 +104,21 @@ public Simulation get(@jakarta.annotation.Nullable final java.util.function.Cons return this.requestAdapter.send(requestInfo, errorMapping, Simulation::createFromDiscriminatorValue); } /** - * Update an attack simulation campaign for a tenant. + * Update the navigation property simulations in security * @param body The request body * @return a {@link Simulation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Simulation patch(@jakarta.annotation.Nonnull final Simulation body) { return patch(body, null); } /** - * Update an attack simulation campaign for a tenant. + * Update the navigation property simulations in security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Simulation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Simulation patch(@jakarta.annotation.Nonnull final Simulation body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +129,7 @@ public Simulation patch(@jakarta.annotation.Nonnull final Simulation body, @jaka return this.requestAdapter.send(requestInfo, errorMapping, Simulation::createFromDiscriminatorValue); } /** - * Delete an attack simulation campaign for a tenant. + * Delete navigation property simulations for security * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +137,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an attack simulation campaign for a tenant. + * Delete navigation property simulations for security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get an attack simulation campaign for a tenant. + * Represents an attack simulation training campaign in a tenant. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -163,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an attack simulation campaign for a tenant. + * Represents an attack simulation training campaign in a tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -175,7 +169,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update an attack simulation campaign for a tenant. + * Update the navigation property simulations in security * @param body The request body * @return a {@link RequestInformation} */ @@ -184,7 +178,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update an attack simulation campaign for a tenant. + * Update the navigation property simulations in security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -215,7 +209,7 @@ public SimulationItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final St public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get an attack simulation campaign for a tenant. + * Represents an attack simulation training campaign in a tenant. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/attacksimulation/trainings/TrainingsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/attacksimulation/trainings/TrainingsRequestBuilder.java index abae356cd98..f657bdaba89 100644 --- a/src/main/java/com/microsoft/graph/generated/security/attacksimulation/trainings/TrainingsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/attacksimulation/trainings/TrainingsRequestBuilder.java @@ -60,21 +60,19 @@ public TrainingsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/security/attackSimulation/trainings{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the training objects and their properties. + * Represents details about attack simulation trainings. * @return a {@link TrainingCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TrainingCollectionResponse get() { return get(null); } /** - * Get a list of the training objects and their properties. + * Represents details about attack simulation trainings. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TrainingCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TrainingCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Training post(@jakarta.annotation.Nonnull final Training body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, Training::createFromDiscriminatorValue); } /** - * Get a list of the training objects and their properties. + * Represents details about attack simulation trainings. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the training objects and their properties. + * Represents details about attack simulation trainings. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public TrainingsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new TrainingsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the training objects and their properties. + * Represents details about attack simulation trainings. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/EdiscoveryCasesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/EdiscoveryCasesRequestBuilder.java index b21685c7bde..127bc0058e1 100644 --- a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/EdiscoveryCasesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/EdiscoveryCasesRequestBuilder.java @@ -60,21 +60,19 @@ public EdiscoveryCasesRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/security/cases/ediscoveryCases{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the ediscoveryCase objects and their properties. + * Get ediscoveryCases from security * @return a {@link EdiscoveryCaseCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryCaseCollectionResponse get() { return get(null); } /** - * Get a list of the ediscoveryCase objects and their properties. + * Get ediscoveryCases from security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EdiscoveryCaseCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryCaseCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public EdiscoveryCaseCollectionResponse get(@jakarta.annotation.Nullable final j return this.requestAdapter.send(requestInfo, errorMapping, EdiscoveryCaseCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new ediscoveryCase object. + * Create new navigation property to ediscoveryCases for security * @param body The request body * @return a {@link EdiscoveryCase} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryCase post(@jakarta.annotation.Nonnull final EdiscoveryCase body) { return post(body, null); } /** - * Create a new ediscoveryCase object. + * Create new navigation property to ediscoveryCases for security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EdiscoveryCase} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryCase post(@jakarta.annotation.Nonnull final EdiscoveryCase body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public EdiscoveryCase post(@jakarta.annotation.Nonnull final EdiscoveryCase body return this.requestAdapter.send(requestInfo, errorMapping, EdiscoveryCase::createFromDiscriminatorValue); } /** - * Get a list of the ediscoveryCase objects and their properties. + * Get ediscoveryCases from security * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the ediscoveryCase objects and their properties. + * Get ediscoveryCases from security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new ediscoveryCase object. + * Create new navigation property to ediscoveryCases for security * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new ediscoveryCase object. + * Create new navigation property to ediscoveryCases for security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public EdiscoveryCasesRequestBuilder withUrl(@jakarta.annotation.Nonnull final S return new EdiscoveryCasesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the ediscoveryCase objects and their properties. + * Get ediscoveryCases from security */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/EdiscoveryCaseItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/EdiscoveryCaseItemRequestBuilder.java index 56873fcc98c..1292f8b660d 100644 --- a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/EdiscoveryCaseItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/EdiscoveryCaseItemRequestBuilder.java @@ -118,18 +118,16 @@ public EdiscoveryCaseItemRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/security/cases/ediscoveryCases/{ediscoveryCase%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an ediscoveryCase object. + * Delete navigation property ediscoveryCases for security * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an ediscoveryCase object. + * Delete navigation property ediscoveryCases for security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -138,21 +136,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of an ediscoveryCase object. + * Get ediscoveryCases from security * @return a {@link EdiscoveryCase} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryCase get() { return get(null); } /** - * Read the properties and relationships of an ediscoveryCase object. + * Get ediscoveryCases from security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EdiscoveryCase} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryCase get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -162,23 +158,21 @@ public EdiscoveryCase get(@jakarta.annotation.Nullable final java.util.function. return this.requestAdapter.send(requestInfo, errorMapping, EdiscoveryCase::createFromDiscriminatorValue); } /** - * Update the properties of an ediscoveryCase object. + * Update the navigation property ediscoveryCases in security * @param body The request body * @return a {@link EdiscoveryCase} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryCase patch(@jakarta.annotation.Nonnull final EdiscoveryCase body) { return patch(body, null); } /** - * Update the properties of an ediscoveryCase object. + * Update the navigation property ediscoveryCases in security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EdiscoveryCase} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryCase patch(@jakarta.annotation.Nonnull final EdiscoveryCase body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -189,7 +183,7 @@ public EdiscoveryCase patch(@jakarta.annotation.Nonnull final EdiscoveryCase bod return this.requestAdapter.send(requestInfo, errorMapping, EdiscoveryCase::createFromDiscriminatorValue); } /** - * Delete an ediscoveryCase object. + * Delete navigation property ediscoveryCases for security * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -197,7 +191,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an ediscoveryCase object. + * Delete navigation property ediscoveryCases for security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -209,7 +203,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of an ediscoveryCase object. + * Get ediscoveryCases from security * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -217,7 +211,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of an ediscoveryCase object. + * Get ediscoveryCases from security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -229,7 +223,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an ediscoveryCase object. + * Update the navigation property ediscoveryCases in security * @param body The request body * @return a {@link RequestInformation} */ @@ -238,7 +232,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an ediscoveryCase object. + * Update the navigation property ediscoveryCases in security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -269,7 +263,7 @@ public EdiscoveryCaseItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fina public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of an ediscoveryCase object. + * Get ediscoveryCases from security */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/custodians/CustodiansRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/custodians/CustodiansRequestBuilder.java index 28895d2ff32..8bf5fc544e2 100644 --- a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/custodians/CustodiansRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/custodians/CustodiansRequestBuilder.java @@ -78,21 +78,19 @@ public CustodiansRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/security/cases/ediscoveryCases/{ediscoveryCase%2Did}/custodians{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the custodian objects and their properties. + * Returns a list of case ediscoveryCustodian objects for this case. * @return a {@link EdiscoveryCustodianCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryCustodianCollectionResponse get() { return get(null); } /** - * Get a list of the custodian objects and their properties. + * Returns a list of case ediscoveryCustodian objects for this case. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EdiscoveryCustodianCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryCustodianCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -102,23 +100,21 @@ public EdiscoveryCustodianCollectionResponse get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, EdiscoveryCustodianCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new ediscoveryCustodian object.After the custodian object is created, you will need to create the custodian's userSource to reference their mailbox and OneDrive for Business site. + * Create new navigation property to custodians for security * @param body The request body * @return a {@link EdiscoveryCustodian} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryCustodian post(@jakarta.annotation.Nonnull final EdiscoveryCustodian body) { return post(body, null); } /** - * Create a new ediscoveryCustodian object.After the custodian object is created, you will need to create the custodian's userSource to reference their mailbox and OneDrive for Business site. + * Create new navigation property to custodians for security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EdiscoveryCustodian} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryCustodian post(@jakarta.annotation.Nonnull final EdiscoveryCustodian body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -129,7 +125,7 @@ public EdiscoveryCustodian post(@jakarta.annotation.Nonnull final EdiscoveryCust return this.requestAdapter.send(requestInfo, errorMapping, EdiscoveryCustodian::createFromDiscriminatorValue); } /** - * Get a list of the custodian objects and their properties. + * Returns a list of case ediscoveryCustodian objects for this case. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -137,7 +133,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the custodian objects and their properties. + * Returns a list of case ediscoveryCustodian objects for this case. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new ediscoveryCustodian object.After the custodian object is created, you will need to create the custodian's userSource to reference their mailbox and OneDrive for Business site. + * Create new navigation property to custodians for security * @param body The request body * @return a {@link RequestInformation} */ @@ -158,7 +154,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new ediscoveryCustodian object.After the custodian object is created, you will need to create the custodian's userSource to reference their mailbox and OneDrive for Business site. + * Create new navigation property to custodians for security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -183,7 +179,7 @@ public CustodiansRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new CustodiansRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the custodian objects and their properties. + * Returns a list of case ediscoveryCustodian objects for this case. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/custodians/item/EdiscoveryCustodianItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/custodians/item/EdiscoveryCustodianItemRequestBuilder.java index 9b98c933e2a..87bd2ebd806 100644 --- a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/custodians/item/EdiscoveryCustodianItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/custodians/item/EdiscoveryCustodianItemRequestBuilder.java @@ -136,21 +136,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of an ediscoveryCustodian object. + * Returns a list of case ediscoveryCustodian objects for this case. * @return a {@link EdiscoveryCustodian} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryCustodian get() { return get(null); } /** - * Read the properties and relationships of an ediscoveryCustodian object. + * Returns a list of case ediscoveryCustodian objects for this case. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EdiscoveryCustodian} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryCustodian get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -205,7 +203,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of an ediscoveryCustodian object. + * Returns a list of case ediscoveryCustodian objects for this case. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -213,7 +211,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of an ediscoveryCustodian object. + * Returns a list of case ediscoveryCustodian objects for this case. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -265,7 +263,7 @@ public EdiscoveryCustodianItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of an ediscoveryCustodian object. + * Returns a list of case ediscoveryCustodian objects for this case. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/custodians/item/lastindexoperation/LastIndexOperationRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/custodians/item/lastindexoperation/LastIndexOperationRequestBuilder.java index 18b8ac9c757..e279c2c4b8e 100644 --- a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/custodians/item/lastindexoperation/LastIndexOperationRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/custodians/item/lastindexoperation/LastIndexOperationRequestBuilder.java @@ -37,21 +37,19 @@ public LastIndexOperationRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/security/cases/ediscoveryCases/{ediscoveryCase%2Did}/custodians/{ediscoveryCustodian%2Did}/lastIndexOperation{?%24expand,%24select}", rawUrl); } /** - * Get a list of the ediscoveryIndexOperations associated with an ediscoveryCustodian. + * Operation entity that represents the latest indexing for the custodian. * @return a {@link EdiscoveryIndexOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryIndexOperation get() { return get(null); } /** - * Get a list of the ediscoveryIndexOperations associated with an ediscoveryCustodian. + * Operation entity that represents the latest indexing for the custodian. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EdiscoveryIndexOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryIndexOperation get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -61,7 +59,7 @@ public EdiscoveryIndexOperation get(@jakarta.annotation.Nullable final java.util return this.requestAdapter.send(requestInfo, errorMapping, EdiscoveryIndexOperation::createFromDiscriminatorValue); } /** - * Get a list of the ediscoveryIndexOperations associated with an ediscoveryCustodian. + * Operation entity that represents the latest indexing for the custodian. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -69,7 +67,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the ediscoveryIndexOperations associated with an ediscoveryCustodian. + * Operation entity that represents the latest indexing for the custodian. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -91,7 +89,7 @@ public LastIndexOperationRequestBuilder withUrl(@jakarta.annotation.Nonnull fina return new LastIndexOperationRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the ediscoveryIndexOperations associated with an ediscoveryCustodian. + * Operation entity that represents the latest indexing for the custodian. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/custodians/item/sitesources/SiteSourcesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/custodians/item/sitesources/SiteSourcesRequestBuilder.java index 392288d977c..80823d43e9d 100644 --- a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/custodians/item/sitesources/SiteSourcesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/custodians/item/sitesources/SiteSourcesRequestBuilder.java @@ -60,21 +60,19 @@ public SiteSourcesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/security/cases/ediscoveryCases/{ediscoveryCase%2Did}/custodians/{ediscoveryCustodian%2Did}/siteSources{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the siteSource objects associated with an ediscoveryCustodian. + * Data source entity for SharePoint sites associated with the custodian. * @return a {@link SiteSourceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SiteSourceCollectionResponse get() { return get(null); } /** - * Get a list of the siteSource objects associated with an ediscoveryCustodian. + * Data source entity for SharePoint sites associated with the custodian. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SiteSourceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SiteSourceCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public SiteSourceCollectionResponse get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, SiteSourceCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new siteSource object associated with an eDiscovery custodian. + * Create new navigation property to siteSources for security * @param body The request body * @return a {@link SiteSource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SiteSource post(@jakarta.annotation.Nonnull final SiteSource body) { return post(body, null); } /** - * Create a new siteSource object associated with an eDiscovery custodian. + * Create new navigation property to siteSources for security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SiteSource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SiteSource post(@jakarta.annotation.Nonnull final SiteSource body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public SiteSource post(@jakarta.annotation.Nonnull final SiteSource body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, SiteSource::createFromDiscriminatorValue); } /** - * Get a list of the siteSource objects associated with an ediscoveryCustodian. + * Data source entity for SharePoint sites associated with the custodian. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the siteSource objects associated with an ediscoveryCustodian. + * Data source entity for SharePoint sites associated with the custodian. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new siteSource object associated with an eDiscovery custodian. + * Create new navigation property to siteSources for security * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new siteSource object associated with an eDiscovery custodian. + * Create new navigation property to siteSources for security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public SiteSourcesRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new SiteSourcesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the siteSource objects associated with an ediscoveryCustodian. + * Data source entity for SharePoint sites associated with the custodian. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/custodians/item/unifiedgroupsources/UnifiedGroupSourcesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/custodians/item/unifiedgroupsources/UnifiedGroupSourcesRequestBuilder.java index bdd94046fad..92f5f6115ea 100644 --- a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/custodians/item/unifiedgroupsources/UnifiedGroupSourcesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/custodians/item/unifiedgroupsources/UnifiedGroupSourcesRequestBuilder.java @@ -60,21 +60,19 @@ public UnifiedGroupSourcesRequestBuilder(@jakarta.annotation.Nonnull final Strin super(requestAdapter, "{+baseurl}/security/cases/ediscoveryCases/{ediscoveryCase%2Did}/custodians/{ediscoveryCustodian%2Did}/unifiedGroupSources{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the unifiedGroupSource objects associated with an ediscoveryCustodian. + * Data source entity for groups associated with the custodian. * @return a {@link UnifiedGroupSourceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedGroupSourceCollectionResponse get() { return get(null); } /** - * Get a list of the unifiedGroupSource objects associated with an ediscoveryCustodian. + * Data source entity for groups associated with the custodian. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedGroupSourceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedGroupSourceCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public UnifiedGroupSourceCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, UnifiedGroupSourceCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new unifiedGroupSource object associated with an eDiscovery custodian. + * Create new navigation property to unifiedGroupSources for security * @param body The request body * @return a {@link UnifiedGroupSource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedGroupSource post(@jakarta.annotation.Nonnull final UnifiedGroupSource body) { return post(body, null); } /** - * Create a new unifiedGroupSource object associated with an eDiscovery custodian. + * Create new navigation property to unifiedGroupSources for security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UnifiedGroupSource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UnifiedGroupSource post(@jakarta.annotation.Nonnull final UnifiedGroupSource body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public UnifiedGroupSource post(@jakarta.annotation.Nonnull final UnifiedGroupSou return this.requestAdapter.send(requestInfo, errorMapping, UnifiedGroupSource::createFromDiscriminatorValue); } /** - * Get a list of the unifiedGroupSource objects associated with an ediscoveryCustodian. + * Data source entity for groups associated with the custodian. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the unifiedGroupSource objects associated with an ediscoveryCustodian. + * Data source entity for groups associated with the custodian. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new unifiedGroupSource object associated with an eDiscovery custodian. + * Create new navigation property to unifiedGroupSources for security * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new unifiedGroupSource object associated with an eDiscovery custodian. + * Create new navigation property to unifiedGroupSources for security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public UnifiedGroupSourcesRequestBuilder withUrl(@jakarta.annotation.Nonnull fin return new UnifiedGroupSourcesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the unifiedGroupSource objects associated with an ediscoveryCustodian. + * Data source entity for groups associated with the custodian. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/custodians/item/usersources/UserSourcesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/custodians/item/usersources/UserSourcesRequestBuilder.java index 2adc80c7f2e..c1cb8fed908 100644 --- a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/custodians/item/usersources/UserSourcesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/custodians/item/usersources/UserSourcesRequestBuilder.java @@ -60,21 +60,19 @@ public UserSourcesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/security/cases/ediscoveryCases/{ediscoveryCase%2Did}/custodians/{ediscoveryCustodian%2Did}/userSources{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the userSource objects associated with an ediscoveryCustodian. + * Data source entity for a the custodian. This is the container for a custodian's mailbox and OneDrive for Business site. * @return a {@link UserSourceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserSourceCollectionResponse get() { return get(null); } /** - * Get a list of the userSource objects associated with an ediscoveryCustodian. + * Data source entity for a the custodian. This is the container for a custodian's mailbox and OneDrive for Business site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UserSourceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserSourceCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public UserSourceCollectionResponse get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, UserSourceCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new userSource object associated with an eDiscovery custodian. + * Create new navigation property to userSources for security * @param body The request body * @return a {@link UserSource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserSource post(@jakarta.annotation.Nonnull final UserSource body) { return post(body, null); } /** - * Create a new userSource object associated with an eDiscovery custodian. + * Create new navigation property to userSources for security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UserSource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserSource post(@jakarta.annotation.Nonnull final UserSource body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public UserSource post(@jakarta.annotation.Nonnull final UserSource body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, UserSource::createFromDiscriminatorValue); } /** - * Get a list of the userSource objects associated with an ediscoveryCustodian. + * Data source entity for a the custodian. This is the container for a custodian's mailbox and OneDrive for Business site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the userSource objects associated with an ediscoveryCustodian. + * Data source entity for a the custodian. This is the container for a custodian's mailbox and OneDrive for Business site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new userSource object associated with an eDiscovery custodian. + * Create new navigation property to userSources for security * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new userSource object associated with an eDiscovery custodian. + * Create new navigation property to userSources for security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public UserSourcesRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new UserSourcesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the userSource objects associated with an ediscoveryCustodian. + * Data source entity for a the custodian. This is the container for a custodian's mailbox and OneDrive for Business site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/noncustodialdatasources/NoncustodialDataSourcesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/noncustodialdatasources/NoncustodialDataSourcesRequestBuilder.java index 404967dad8e..9e1d631714f 100644 --- a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/noncustodialdatasources/NoncustodialDataSourcesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/noncustodialdatasources/NoncustodialDataSourcesRequestBuilder.java @@ -100,23 +100,21 @@ public EdiscoveryNoncustodialDataSourceCollectionResponse get(@jakarta.annotatio return this.requestAdapter.send(requestInfo, errorMapping, EdiscoveryNoncustodialDataSourceCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new ediscoveryNoncustodialDataSource object. + * Create new navigation property to noncustodialDataSources for security * @param body The request body * @return a {@link EdiscoveryNoncustodialDataSource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryNoncustodialDataSource post(@jakarta.annotation.Nonnull final EdiscoveryNoncustodialDataSource body) { return post(body, null); } /** - * Create a new ediscoveryNoncustodialDataSource object. + * Create new navigation property to noncustodialDataSources for security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EdiscoveryNoncustodialDataSource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryNoncustodialDataSource post(@jakarta.annotation.Nonnull final EdiscoveryNoncustodialDataSource body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -147,7 +145,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new ediscoveryNoncustodialDataSource object. + * Create new navigation property to noncustodialDataSources for security * @param body The request body * @return a {@link RequestInformation} */ @@ -156,7 +154,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new ediscoveryNoncustodialDataSource object. + * Create new navigation property to noncustodialDataSources for security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/operations/OperationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/operations/OperationsRequestBuilder.java index a50c6621ae1..62995b19288 100644 --- a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/operations/OperationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/operations/OperationsRequestBuilder.java @@ -60,21 +60,19 @@ public OperationsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/security/cases/ediscoveryCases/{ediscoveryCase%2Did}/operations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the caseOperation objects and their properties. + * Returns a list of case caseOperation objects for this case. * @return a {@link CaseOperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CaseOperationCollectionResponse get() { return get(null); } /** - * Get a list of the caseOperation objects and their properties. + * Returns a list of case caseOperation objects for this case. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CaseOperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CaseOperationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public CaseOperation post(@jakarta.annotation.Nonnull final CaseOperation body, return this.requestAdapter.send(requestInfo, errorMapping, CaseOperation::createFromDiscriminatorValue); } /** - * Get a list of the caseOperation objects and their properties. + * Returns a list of case caseOperation objects for this case. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the caseOperation objects and their properties. + * Returns a list of case caseOperation objects for this case. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public OperationsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new OperationsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the caseOperation objects and their properties. + * Returns a list of case caseOperation objects for this case. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/operations/item/CaseOperationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/operations/item/CaseOperationItemRequestBuilder.java index 3854f062e4f..583aa23ed8d 100644 --- a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/operations/item/CaseOperationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/operations/item/CaseOperationItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a caseOperation object. + * Returns a list of case caseOperation objects for this case. * @return a {@link CaseOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CaseOperation get() { return get(null); } /** - * Read the properties and relationships of a caseOperation object. + * Returns a list of case caseOperation objects for this case. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CaseOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CaseOperation get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a caseOperation object. + * Returns a list of case caseOperation objects for this case. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a caseOperation object. + * Returns a list of case caseOperation objects for this case. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public CaseOperationItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a caseOperation object. + * Returns a list of case caseOperation objects for this case. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/reviewsets/ReviewSetsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/reviewsets/ReviewSetsRequestBuilder.java index b61338bd09d..b64fe289088 100644 --- a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/reviewsets/ReviewSetsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/reviewsets/ReviewSetsRequestBuilder.java @@ -60,21 +60,19 @@ public ReviewSetsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/security/cases/ediscoveryCases/{ediscoveryCase%2Did}/reviewSets{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of ediscoveryReviewSet objects associated with an eDiscovery case. + * Returns a list of eDiscoveryReviewSet objects in the case. * @return a {@link EdiscoveryReviewSetCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryReviewSetCollectionResponse get() { return get(null); } /** - * Get a list of ediscoveryReviewSet objects associated with an eDiscovery case. + * Returns a list of eDiscoveryReviewSet objects in the case. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EdiscoveryReviewSetCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryReviewSetCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public EdiscoveryReviewSetCollectionResponse get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, EdiscoveryReviewSetCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new ediscoveryReviewSet object. + * Create new navigation property to reviewSets for security * @param body The request body * @return a {@link EdiscoveryReviewSet} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryReviewSet post(@jakarta.annotation.Nonnull final EdiscoveryReviewSet body) { return post(body, null); } /** - * Create a new ediscoveryReviewSet object. + * Create new navigation property to reviewSets for security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EdiscoveryReviewSet} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryReviewSet post(@jakarta.annotation.Nonnull final EdiscoveryReviewSet body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public EdiscoveryReviewSet post(@jakarta.annotation.Nonnull final EdiscoveryRevi return this.requestAdapter.send(requestInfo, errorMapping, EdiscoveryReviewSet::createFromDiscriminatorValue); } /** - * Get a list of ediscoveryReviewSet objects associated with an eDiscovery case. + * Returns a list of eDiscoveryReviewSet objects in the case. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of ediscoveryReviewSet objects associated with an eDiscovery case. + * Returns a list of eDiscoveryReviewSet objects in the case. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new ediscoveryReviewSet object. + * Create new navigation property to reviewSets for security * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new ediscoveryReviewSet object. + * Create new navigation property to reviewSets for security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ReviewSetsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ReviewSetsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of ediscoveryReviewSet objects associated with an eDiscovery case. + * Returns a list of eDiscoveryReviewSet objects in the case. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/reviewsets/item/EdiscoveryReviewSetItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/reviewsets/item/EdiscoveryReviewSetItemRequestBuilder.java index a91f1199382..ab71388b4f2 100644 --- a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/reviewsets/item/EdiscoveryReviewSetItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/reviewsets/item/EdiscoveryReviewSetItemRequestBuilder.java @@ -82,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of an ediscoveryReviewSet object. + * Returns a list of eDiscoveryReviewSet objects in the case. * @return a {@link EdiscoveryReviewSet} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryReviewSet get() { return get(null); } /** - * Read the properties and relationships of an ediscoveryReviewSet object. + * Returns a list of eDiscoveryReviewSet objects in the case. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EdiscoveryReviewSet} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryReviewSet get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -151,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of an ediscoveryReviewSet object. + * Returns a list of eDiscoveryReviewSet objects in the case. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -159,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of an ediscoveryReviewSet object. + * Returns a list of eDiscoveryReviewSet objects in the case. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -211,7 +209,7 @@ public EdiscoveryReviewSetItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of an ediscoveryReviewSet object. + * Returns a list of eDiscoveryReviewSet objects in the case. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/reviewsets/item/queries/QueriesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/reviewsets/item/queries/QueriesRequestBuilder.java index 418eb520050..5458f7efb96 100644 --- a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/reviewsets/item/queries/QueriesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/reviewsets/item/queries/QueriesRequestBuilder.java @@ -60,21 +60,19 @@ public QueriesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/security/cases/ediscoveryCases/{ediscoveryCase%2Did}/reviewSets/{ediscoveryReviewSet%2Did}/queries{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of queries associated with an eDiscovery review set. + * Represents queries within the review set. * @return a {@link EdiscoveryReviewSetQueryCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryReviewSetQueryCollectionResponse get() { return get(null); } /** - * Get the list of queries associated with an eDiscovery review set. + * Represents queries within the review set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EdiscoveryReviewSetQueryCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryReviewSetQueryCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public EdiscoveryReviewSetQueryCollectionResponse get(@jakarta.annotation.Nullab return this.requestAdapter.send(requestInfo, errorMapping, EdiscoveryReviewSetQueryCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new ediscoveryReviewSetQuery object. + * Create new navigation property to queries for security * @param body The request body * @return a {@link EdiscoveryReviewSetQuery} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryReviewSetQuery post(@jakarta.annotation.Nonnull final EdiscoveryReviewSetQuery body) { return post(body, null); } /** - * Create a new ediscoveryReviewSetQuery object. + * Create new navigation property to queries for security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EdiscoveryReviewSetQuery} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryReviewSetQuery post(@jakarta.annotation.Nonnull final EdiscoveryReviewSetQuery body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public EdiscoveryReviewSetQuery post(@jakarta.annotation.Nonnull final Ediscover return this.requestAdapter.send(requestInfo, errorMapping, EdiscoveryReviewSetQuery::createFromDiscriminatorValue); } /** - * Get the list of queries associated with an eDiscovery review set. + * Represents queries within the review set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of queries associated with an eDiscovery review set. + * Represents queries within the review set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new ediscoveryReviewSetQuery object. + * Create new navigation property to queries for security * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new ediscoveryReviewSetQuery object. + * Create new navigation property to queries for security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public QueriesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new QueriesRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of queries associated with an eDiscovery review set. + * Represents queries within the review set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/reviewsets/item/queries/item/EdiscoveryReviewSetQueryItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/reviewsets/item/queries/item/EdiscoveryReviewSetQueryItemRequestBuilder.java index 409b6d9803a..6482c700b4e 100644 --- a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/reviewsets/item/queries/item/EdiscoveryReviewSetQueryItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/reviewsets/item/queries/item/EdiscoveryReviewSetQueryItemRequestBuilder.java @@ -55,18 +55,16 @@ public EdiscoveryReviewSetQueryItemRequestBuilder(@jakarta.annotation.Nonnull fi super(requestAdapter, "{+baseurl}/security/cases/ediscoveryCases/{ediscoveryCase%2Did}/reviewSets/{ediscoveryReviewSet%2Did}/queries/{ediscoveryReviewSetQuery%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an ediscoveryReviewSetQuery object. + * Delete navigation property queries for security * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an ediscoveryReviewSetQuery object. + * Delete navigation property queries for security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -75,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of an ediscoveryReviewSetQuery object. + * Represents queries within the review set. * @return a {@link EdiscoveryReviewSetQuery} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryReviewSetQuery get() { return get(null); } /** - * Read the properties and relationships of an ediscoveryReviewSetQuery object. + * Represents queries within the review set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EdiscoveryReviewSetQuery} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryReviewSetQuery get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -99,23 +95,21 @@ public EdiscoveryReviewSetQuery get(@jakarta.annotation.Nullable final java.util return this.requestAdapter.send(requestInfo, errorMapping, EdiscoveryReviewSetQuery::createFromDiscriminatorValue); } /** - * Update the properties of an ediscoveryReviewSetQuery object. + * Update the navigation property queries in security * @param body The request body * @return a {@link EdiscoveryReviewSetQuery} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryReviewSetQuery patch(@jakarta.annotation.Nonnull final EdiscoveryReviewSetQuery body) { return patch(body, null); } /** - * Update the properties of an ediscoveryReviewSetQuery object. + * Update the navigation property queries in security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EdiscoveryReviewSetQuery} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryReviewSetQuery patch(@jakarta.annotation.Nonnull final EdiscoveryReviewSetQuery body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +120,7 @@ public EdiscoveryReviewSetQuery patch(@jakarta.annotation.Nonnull final Ediscove return this.requestAdapter.send(requestInfo, errorMapping, EdiscoveryReviewSetQuery::createFromDiscriminatorValue); } /** - * Delete an ediscoveryReviewSetQuery object. + * Delete navigation property queries for security * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +128,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an ediscoveryReviewSetQuery object. + * Delete navigation property queries for security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of an ediscoveryReviewSetQuery object. + * Represents queries within the review set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -154,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of an ediscoveryReviewSetQuery object. + * Represents queries within the review set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an ediscoveryReviewSetQuery object. + * Update the navigation property queries in security * @param body The request body * @return a {@link RequestInformation} */ @@ -175,7 +169,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an ediscoveryReviewSetQuery object. + * Update the navigation property queries in security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -206,7 +200,7 @@ public EdiscoveryReviewSetQueryItemRequestBuilder withUrl(@jakarta.annotation.No public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of an ediscoveryReviewSetQuery object. + * Represents queries within the review set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/searches/SearchesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/searches/SearchesRequestBuilder.java index 08a3861a61f..a2b684c4e81 100644 --- a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/searches/SearchesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/searches/SearchesRequestBuilder.java @@ -60,21 +60,19 @@ public SearchesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/security/cases/ediscoveryCases/{ediscoveryCase%2Did}/searches{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of ediscoverySearch resources from an eDiscoveryCase object. + * Returns a list of eDiscoverySearch objects associated with this case. * @return a {@link EdiscoverySearchCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoverySearchCollectionResponse get() { return get(null); } /** - * Get the list of ediscoverySearch resources from an eDiscoveryCase object. + * Returns a list of eDiscoverySearch objects associated with this case. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EdiscoverySearchCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoverySearchCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public EdiscoverySearchCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, EdiscoverySearchCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new ediscoverySearch object. + * Create new navigation property to searches for security * @param body The request body * @return a {@link EdiscoverySearch} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoverySearch post(@jakarta.annotation.Nonnull final EdiscoverySearch body) { return post(body, null); } /** - * Create a new ediscoverySearch object. + * Create new navigation property to searches for security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EdiscoverySearch} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoverySearch post(@jakarta.annotation.Nonnull final EdiscoverySearch body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public EdiscoverySearch post(@jakarta.annotation.Nonnull final EdiscoverySearch return this.requestAdapter.send(requestInfo, errorMapping, EdiscoverySearch::createFromDiscriminatorValue); } /** - * Get the list of ediscoverySearch resources from an eDiscoveryCase object. + * Returns a list of eDiscoverySearch objects associated with this case. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of ediscoverySearch resources from an eDiscoveryCase object. + * Returns a list of eDiscoverySearch objects associated with this case. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new ediscoverySearch object. + * Create new navigation property to searches for security * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new ediscoverySearch object. + * Create new navigation property to searches for security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public SearchesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new SearchesRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of ediscoverySearch resources from an eDiscoveryCase object. + * Returns a list of eDiscoverySearch objects associated with this case. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/searches/item/EdiscoverySearchItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/searches/item/EdiscoverySearchItemRequestBuilder.java index e1f398a49ca..dcaa7b043e5 100644 --- a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/searches/item/EdiscoverySearchItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/searches/item/EdiscoverySearchItemRequestBuilder.java @@ -100,18 +100,16 @@ public EdiscoverySearchItemRequestBuilder(@jakarta.annotation.Nonnull final Stri super(requestAdapter, "{+baseurl}/security/cases/ediscoveryCases/{ediscoveryCase%2Did}/searches/{ediscoverySearch%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an ediscoverySearch object. + * Delete navigation property searches for security * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an ediscoverySearch object. + * Delete navigation property searches for security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -120,21 +118,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of an ediscoverySearch object. + * Returns a list of eDiscoverySearch objects associated with this case. * @return a {@link EdiscoverySearch} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoverySearch get() { return get(null); } /** - * Read the properties and relationships of an ediscoverySearch object. + * Returns a list of eDiscoverySearch objects associated with this case. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EdiscoverySearch} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoverySearch get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -144,23 +140,21 @@ public EdiscoverySearch get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, EdiscoverySearch::createFromDiscriminatorValue); } /** - * Update the properties of an ediscoverySearch object. + * Update the navigation property searches in security * @param body The request body * @return a {@link EdiscoverySearch} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoverySearch patch(@jakarta.annotation.Nonnull final EdiscoverySearch body) { return patch(body, null); } /** - * Update the properties of an ediscoverySearch object. + * Update the navigation property searches in security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EdiscoverySearch} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoverySearch patch(@jakarta.annotation.Nonnull final EdiscoverySearch body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -171,7 +165,7 @@ public EdiscoverySearch patch(@jakarta.annotation.Nonnull final EdiscoverySearch return this.requestAdapter.send(requestInfo, errorMapping, EdiscoverySearch::createFromDiscriminatorValue); } /** - * Delete an ediscoverySearch object. + * Delete navigation property searches for security * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -179,7 +173,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an ediscoverySearch object. + * Delete navigation property searches for security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -191,7 +185,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of an ediscoverySearch object. + * Returns a list of eDiscoverySearch objects associated with this case. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -199,7 +193,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of an ediscoverySearch object. + * Returns a list of eDiscoverySearch objects associated with this case. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -211,7 +205,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an ediscoverySearch object. + * Update the navigation property searches in security * @param body The request body * @return a {@link RequestInformation} */ @@ -220,7 +214,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an ediscoverySearch object. + * Update the navigation property searches in security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -251,7 +245,7 @@ public EdiscoverySearchItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fi public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of an ediscoverySearch object. + * Returns a list of eDiscoverySearch objects associated with this case. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/searches/item/additionalsources/AdditionalSourcesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/searches/item/additionalsources/AdditionalSourcesRequestBuilder.java index d8898af765a..8141b948cc8 100644 --- a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/searches/item/additionalsources/AdditionalSourcesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/searches/item/additionalsources/AdditionalSourcesRequestBuilder.java @@ -60,21 +60,19 @@ public AdditionalSourcesRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/security/cases/ediscoveryCases/{ediscoveryCase%2Did}/searches/{ediscoverySearch%2Did}/additionalSources{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of additional sources associated with an eDiscovery search. + * Adds an additional source to the eDiscovery search. * @return a {@link DataSourceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DataSourceCollectionResponse get() { return get(null); } /** - * Get the list of additional sources associated with an eDiscovery search. + * Adds an additional source to the eDiscovery search. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DataSourceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DataSourceCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public DataSourceCollectionResponse get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, DataSourceCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new additional source associated with an eDiscovery search. + * Create new navigation property to additionalSources for security * @param body The request body * @return a {@link DataSource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DataSource post(@jakarta.annotation.Nonnull final DataSource body) { return post(body, null); } /** - * Create a new additional source associated with an eDiscovery search. + * Create new navigation property to additionalSources for security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DataSource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DataSource post(@jakarta.annotation.Nonnull final DataSource body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public DataSource post(@jakarta.annotation.Nonnull final DataSource body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, DataSource::createFromDiscriminatorValue); } /** - * Get the list of additional sources associated with an eDiscovery search. + * Adds an additional source to the eDiscovery search. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of additional sources associated with an eDiscovery search. + * Adds an additional source to the eDiscovery search. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new additional source associated with an eDiscovery search. + * Create new navigation property to additionalSources for security * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new additional source associated with an eDiscovery search. + * Create new navigation property to additionalSources for security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public AdditionalSourcesRequestBuilder withUrl(@jakarta.annotation.Nonnull final return new AdditionalSourcesRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of additional sources associated with an eDiscovery search. + * Adds an additional source to the eDiscovery search. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/searches/item/custodiansources/CustodianSourcesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/searches/item/custodiansources/CustodianSourcesRequestBuilder.java index 8d291728b4c..f111be94d61 100644 --- a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/searches/item/custodiansources/CustodianSourcesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/searches/item/custodiansources/CustodianSourcesRequestBuilder.java @@ -59,21 +59,19 @@ public CustodianSourcesRequestBuilder(@jakarta.annotation.Nonnull final String r super(requestAdapter, "{+baseurl}/security/cases/ediscoveryCases/{ediscoveryCase%2Did}/searches/{ediscoverySearch%2Did}/custodianSources{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of custodial data sources associated with an eDiscovery search. + * Custodian sources that are included in the eDiscovery search. * @return a {@link DataSourceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DataSourceCollectionResponse get() { return get(null); } /** - * Get the list of custodial data sources associated with an eDiscovery search. + * Custodian sources that are included in the eDiscovery search. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DataSourceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DataSourceCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public DataSourceCollectionResponse get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, DataSourceCollectionResponse::createFromDiscriminatorValue); } /** - * Get the list of custodial data sources associated with an eDiscovery search. + * Custodian sources that are included in the eDiscovery search. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of custodial data sources associated with an eDiscovery search. + * Custodian sources that are included in the eDiscovery search. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public CustodianSourcesRequestBuilder withUrl(@jakarta.annotation.Nonnull final return new CustodianSourcesRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of custodial data sources associated with an eDiscovery search. + * Custodian sources that are included in the eDiscovery search. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/searches/item/lastestimatestatisticsoperation/LastEstimateStatisticsOperationRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/searches/item/lastestimatestatisticsoperation/LastEstimateStatisticsOperationRequestBuilder.java index 82e84040550..4ca852ef2bb 100644 --- a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/searches/item/lastestimatestatisticsoperation/LastEstimateStatisticsOperationRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/searches/item/lastestimatestatisticsoperation/LastEstimateStatisticsOperationRequestBuilder.java @@ -37,21 +37,19 @@ public LastEstimateStatisticsOperationRequestBuilder(@jakarta.annotation.Nonnull super(requestAdapter, "{+baseurl}/security/cases/ediscoveryCases/{ediscoveryCase%2Did}/searches/{ediscoverySearch%2Did}/lastEstimateStatisticsOperation{?%24expand,%24select}", rawUrl); } /** - * Get the last ediscoveryEstimateOperation objects and their properties. + * The last estimate operation associated with the eDiscovery search. * @return a {@link EdiscoveryEstimateOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryEstimateOperation get() { return get(null); } /** - * Get the last ediscoveryEstimateOperation objects and their properties. + * The last estimate operation associated with the eDiscovery search. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EdiscoveryEstimateOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryEstimateOperation get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -61,7 +59,7 @@ public EdiscoveryEstimateOperation get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, EdiscoveryEstimateOperation::createFromDiscriminatorValue); } /** - * Get the last ediscoveryEstimateOperation objects and their properties. + * The last estimate operation associated with the eDiscovery search. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -69,7 +67,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the last ediscoveryEstimateOperation objects and their properties. + * The last estimate operation associated with the eDiscovery search. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -91,7 +89,7 @@ public LastEstimateStatisticsOperationRequestBuilder withUrl(@jakarta.annotation return new LastEstimateStatisticsOperationRequestBuilder(rawUrl, requestAdapter); } /** - * Get the last ediscoveryEstimateOperation objects and their properties. + * The last estimate operation associated with the eDiscovery search. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/settings/SettingsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/settings/SettingsRequestBuilder.java index 54d0bf4be88..0917167f58f 100644 --- a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/settings/SettingsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/settings/SettingsRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of an ediscoveryCaseSettings object. + * Returns a list of eDIscoverySettings objects in the case. * @return a {@link EdiscoveryCaseSettings} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryCaseSettings get() { return get(null); } /** - * Read the properties and relationships of an ediscoveryCaseSettings object. + * Returns a list of eDIscoverySettings objects in the case. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EdiscoveryCaseSettings} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryCaseSettings get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -88,23 +86,21 @@ public EdiscoveryCaseSettings get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, EdiscoveryCaseSettings::createFromDiscriminatorValue); } /** - * Update the properties of an ediscoveryCaseSettings object. + * Update the navigation property settings in security * @param body The request body * @return a {@link EdiscoveryCaseSettings} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryCaseSettings patch(@jakarta.annotation.Nonnull final EdiscoveryCaseSettings body) { return patch(body, null); } /** - * Update the properties of an ediscoveryCaseSettings object. + * Update the navigation property settings in security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EdiscoveryCaseSettings} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryCaseSettings patch(@jakarta.annotation.Nonnull final EdiscoveryCaseSettings body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of an ediscoveryCaseSettings object. + * Returns a list of eDIscoverySettings objects in the case. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of an ediscoveryCaseSettings object. + * Returns a list of eDIscoverySettings objects in the case. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an ediscoveryCaseSettings object. + * Update the navigation property settings in security * @param body The request body * @return a {@link RequestInformation} */ @@ -164,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an ediscoveryCaseSettings object. + * Update the navigation property settings in security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -195,7 +191,7 @@ public SettingsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of an ediscoveryCaseSettings object. + * Returns a list of eDIscoverySettings objects in the case. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/tags/TagsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/tags/TagsRequestBuilder.java index 46d689e4bd0..8538f1d76a4 100644 --- a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/tags/TagsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/tags/TagsRequestBuilder.java @@ -69,21 +69,19 @@ public TagsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka super(requestAdapter, "{+baseurl}/security/cases/ediscoveryCases/{ediscoveryCase%2Did}/tags{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of eDiscoveryReviewTag objects and their properties. + * Returns a list of ediscoveryReviewTag objects associated to this case. * @return a {@link EdiscoveryReviewTagCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryReviewTagCollectionResponse get() { return get(null); } /** - * Get a list of eDiscoveryReviewTag objects and their properties. + * Returns a list of ediscoveryReviewTag objects associated to this case. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EdiscoveryReviewTagCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryReviewTagCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public EdiscoveryReviewTagCollectionResponse get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, EdiscoveryReviewTagCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new ediscoveryReviewTag object. + * Create new navigation property to tags for security * @param body The request body * @return a {@link EdiscoveryReviewTag} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryReviewTag post(@jakarta.annotation.Nonnull final EdiscoveryReviewTag body) { return post(body, null); } /** - * Create a new ediscoveryReviewTag object. + * Create new navigation property to tags for security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EdiscoveryReviewTag} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryReviewTag post(@jakarta.annotation.Nonnull final EdiscoveryReviewTag body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public EdiscoveryReviewTag post(@jakarta.annotation.Nonnull final EdiscoveryRevi return this.requestAdapter.send(requestInfo, errorMapping, EdiscoveryReviewTag::createFromDiscriminatorValue); } /** - * Get a list of eDiscoveryReviewTag objects and their properties. + * Returns a list of ediscoveryReviewTag objects associated to this case. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of eDiscoveryReviewTag objects and their properties. + * Returns a list of ediscoveryReviewTag objects associated to this case. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new ediscoveryReviewTag object. + * Create new navigation property to tags for security * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new ediscoveryReviewTag object. + * Create new navigation property to tags for security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public TagsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr return new TagsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of eDiscoveryReviewTag objects and their properties. + * Returns a list of ediscoveryReviewTag objects associated to this case. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/tags/item/EdiscoveryReviewTagItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/tags/item/EdiscoveryReviewTagItemRequestBuilder.java index fe5ffcc6cf0..affd5b7ff6c 100644 --- a/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/tags/item/EdiscoveryReviewTagItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/cases/ediscoverycases/item/tags/item/EdiscoveryReviewTagItemRequestBuilder.java @@ -55,18 +55,16 @@ public EdiscoveryReviewTagItemRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/security/cases/ediscoveryCases/{ediscoveryCase%2Did}/tags/{ediscoveryReviewTag%2Did}{?%24expand,%24select}", rawUrl); } /** - * Remove an ediscoveryReviewTag object. + * Delete navigation property tags for security * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove an ediscoveryReviewTag object. + * Delete navigation property tags for security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -75,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of an ediscoveryReviewTag object. + * Returns a list of ediscoveryReviewTag objects associated to this case. * @return a {@link EdiscoveryReviewTag} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryReviewTag get() { return get(null); } /** - * Read the properties and relationships of an ediscoveryReviewTag object. + * Returns a list of ediscoveryReviewTag objects associated to this case. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EdiscoveryReviewTag} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryReviewTag get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -99,23 +95,21 @@ public EdiscoveryReviewTag get(@jakarta.annotation.Nullable final java.util.func return this.requestAdapter.send(requestInfo, errorMapping, EdiscoveryReviewTag::createFromDiscriminatorValue); } /** - * Update the properties of an ediscoveryReviewTag object. + * Update the navigation property tags in security * @param body The request body * @return a {@link EdiscoveryReviewTag} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryReviewTag patch(@jakarta.annotation.Nonnull final EdiscoveryReviewTag body) { return patch(body, null); } /** - * Update the properties of an ediscoveryReviewTag object. + * Update the navigation property tags in security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EdiscoveryReviewTag} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EdiscoveryReviewTag patch(@jakarta.annotation.Nonnull final EdiscoveryReviewTag body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +120,7 @@ public EdiscoveryReviewTag patch(@jakarta.annotation.Nonnull final EdiscoveryRev return this.requestAdapter.send(requestInfo, errorMapping, EdiscoveryReviewTag::createFromDiscriminatorValue); } /** - * Remove an ediscoveryReviewTag object. + * Delete navigation property tags for security * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +128,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove an ediscoveryReviewTag object. + * Delete navigation property tags for security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of an ediscoveryReviewTag object. + * Returns a list of ediscoveryReviewTag objects associated to this case. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -154,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of an ediscoveryReviewTag object. + * Returns a list of ediscoveryReviewTag objects associated to this case. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an ediscoveryReviewTag object. + * Update the navigation property tags in security * @param body The request body * @return a {@link RequestInformation} */ @@ -175,7 +169,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an ediscoveryReviewTag object. + * Update the navigation property tags in security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -206,7 +200,7 @@ public EdiscoveryReviewTagItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of an ediscoveryReviewTag object. + * Returns a list of ediscoveryReviewTag objects associated to this case. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/incidents/IncidentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/incidents/IncidentsRequestBuilder.java index 886405f2fe0..53fd0bda5e7 100644 --- a/src/main/java/com/microsoft/graph/generated/security/incidents/IncidentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/incidents/IncidentsRequestBuilder.java @@ -60,21 +60,19 @@ public IncidentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/security/incidents{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of incident objects that Microsoft 365 Defender created to track attacks in an organization. Attacks are typically inflicted on different types of entities, such as devices, users, and mailboxes, resulting in multiple alert objects. Microsoft 365 Defender correlates alerts with the same attack techniques or the same attacker into an incident. This operation allows you to filter and sort through incidents to create an informed cyber security response. It exposes a collection of incidents that were flagged in your network, within the time range you specified in your environment retention policy. The most recent incidents are displayed at the top of the list. + * A collection of incidents in Microsoft 365 Defender, each of which is a set of correlated alerts and associated metadata that reflects the story of an attack. * @return a {@link IncidentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IncidentCollectionResponse get() { return get(null); } /** - * Get a list of incident objects that Microsoft 365 Defender created to track attacks in an organization. Attacks are typically inflicted on different types of entities, such as devices, users, and mailboxes, resulting in multiple alert objects. Microsoft 365 Defender correlates alerts with the same attack techniques or the same attacker into an incident. This operation allows you to filter and sort through incidents to create an informed cyber security response. It exposes a collection of incidents that were flagged in your network, within the time range you specified in your environment retention policy. The most recent incidents are displayed at the top of the list. + * A collection of incidents in Microsoft 365 Defender, each of which is a set of correlated alerts and associated metadata that reflects the story of an attack. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link IncidentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IncidentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Incident post(@jakarta.annotation.Nonnull final Incident body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, Incident::createFromDiscriminatorValue); } /** - * Get a list of incident objects that Microsoft 365 Defender created to track attacks in an organization. Attacks are typically inflicted on different types of entities, such as devices, users, and mailboxes, resulting in multiple alert objects. Microsoft 365 Defender correlates alerts with the same attack techniques or the same attacker into an incident. This operation allows you to filter and sort through incidents to create an informed cyber security response. It exposes a collection of incidents that were flagged in your network, within the time range you specified in your environment retention policy. The most recent incidents are displayed at the top of the list. + * A collection of incidents in Microsoft 365 Defender, each of which is a set of correlated alerts and associated metadata that reflects the story of an attack. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of incident objects that Microsoft 365 Defender created to track attacks in an organization. Attacks are typically inflicted on different types of entities, such as devices, users, and mailboxes, resulting in multiple alert objects. Microsoft 365 Defender correlates alerts with the same attack techniques or the same attacker into an incident. This operation allows you to filter and sort through incidents to create an informed cyber security response. It exposes a collection of incidents that were flagged in your network, within the time range you specified in your environment retention policy. The most recent incidents are displayed at the top of the list. + * A collection of incidents in Microsoft 365 Defender, each of which is a set of correlated alerts and associated metadata that reflects the story of an attack. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public IncidentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new IncidentsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of incident objects that Microsoft 365 Defender created to track attacks in an organization. Attacks are typically inflicted on different types of entities, such as devices, users, and mailboxes, resulting in multiple alert objects. Microsoft 365 Defender correlates alerts with the same attack techniques or the same attacker into an incident. This operation allows you to filter and sort through incidents to create an informed cyber security response. It exposes a collection of incidents that were flagged in your network, within the time range you specified in your environment retention policy. The most recent incidents are displayed at the top of the list. + * A collection of incidents in Microsoft 365 Defender, each of which is a set of correlated alerts and associated metadata that reflects the story of an attack. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/incidents/item/IncidentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/incidents/item/IncidentItemRequestBuilder.java index fc1a073b90d..f278e1787ae 100644 --- a/src/main/java/com/microsoft/graph/generated/security/incidents/item/IncidentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/incidents/item/IncidentItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of an incident object. Attacks are typically inflicted on different types of entities, such as devices, users, and mailboxes, resulting in multiple alert objects. Microsoft 365 Defender correlates alerts with the same attack techniques or the same attacker into an incident. + * A collection of incidents in Microsoft 365 Defender, each of which is a set of correlated alerts and associated metadata that reflects the story of an attack. * @return a {@link Incident} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Incident get() { return get(null); } /** - * Retrieve the properties and relationships of an incident object. Attacks are typically inflicted on different types of entities, such as devices, users, and mailboxes, resulting in multiple alert objects. Microsoft 365 Defender correlates alerts with the same attack techniques or the same attacker into an incident. + * A collection of incidents in Microsoft 365 Defender, each of which is a set of correlated alerts and associated metadata that reflects the story of an attack. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Incident} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Incident get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -88,23 +86,21 @@ public Incident get(@jakarta.annotation.Nullable final java.util.function.Consum return this.requestAdapter.send(requestInfo, errorMapping, Incident::createFromDiscriminatorValue); } /** - * Update the properties of an incident object. + * Update the navigation property incidents in security * @param body The request body * @return a {@link Incident} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Incident patch(@jakarta.annotation.Nonnull final Incident body) { return patch(body, null); } /** - * Update the properties of an incident object. + * Update the navigation property incidents in security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Incident} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Incident patch(@jakarta.annotation.Nonnull final Incident body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of an incident object. Attacks are typically inflicted on different types of entities, such as devices, users, and mailboxes, resulting in multiple alert objects. Microsoft 365 Defender correlates alerts with the same attack techniques or the same attacker into an incident. + * A collection of incidents in Microsoft 365 Defender, each of which is a set of correlated alerts and associated metadata that reflects the story of an attack. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of an incident object. Attacks are typically inflicted on different types of entities, such as devices, users, and mailboxes, resulting in multiple alert objects. Microsoft 365 Defender correlates alerts with the same attack techniques or the same attacker into an incident. + * A collection of incidents in Microsoft 365 Defender, each of which is a set of correlated alerts and associated metadata that reflects the story of an attack. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an incident object. + * Update the navigation property incidents in security * @param body The request body * @return a {@link RequestInformation} */ @@ -164,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an incident object. + * Update the navigation property incidents in security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -195,7 +191,7 @@ public IncidentItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of an incident object. Attacks are typically inflicted on different types of entities, such as devices, users, and mailboxes, resulting in multiple alert objects. Microsoft 365 Defender correlates alerts with the same attack techniques or the same attacker into an incident. + * A collection of incidents in Microsoft 365 Defender, each of which is a set of correlated alerts and associated metadata that reflects the story of an attack. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/labels/authorities/AuthoritiesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/labels/authorities/AuthoritiesRequestBuilder.java index d74a2a9441e..ad855b2f840 100644 --- a/src/main/java/com/microsoft/graph/generated/security/labels/authorities/AuthoritiesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/labels/authorities/AuthoritiesRequestBuilder.java @@ -60,21 +60,19 @@ public AuthoritiesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/security/labels/authorities{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the authorityTemplate objects and their properties. + * Specifies the underlying authority that describes the type of content to be retained and its retention schedule. * @return a {@link AuthorityTemplateCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthorityTemplateCollectionResponse get() { return get(null); } /** - * Get a list of the authorityTemplate objects and their properties. + * Specifies the underlying authority that describes the type of content to be retained and its retention schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AuthorityTemplateCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthorityTemplateCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public AuthorityTemplateCollectionResponse get(@jakarta.annotation.Nullable fina return this.requestAdapter.send(requestInfo, errorMapping, AuthorityTemplateCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new authorityTemplate object. + * Create new navigation property to authorities for security * @param body The request body * @return a {@link AuthorityTemplate} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthorityTemplate post(@jakarta.annotation.Nonnull final AuthorityTemplate body) { return post(body, null); } /** - * Create a new authorityTemplate object. + * Create new navigation property to authorities for security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AuthorityTemplate} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthorityTemplate post(@jakarta.annotation.Nonnull final AuthorityTemplate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public AuthorityTemplate post(@jakarta.annotation.Nonnull final AuthorityTemplat return this.requestAdapter.send(requestInfo, errorMapping, AuthorityTemplate::createFromDiscriminatorValue); } /** - * Get a list of the authorityTemplate objects and their properties. + * Specifies the underlying authority that describes the type of content to be retained and its retention schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the authorityTemplate objects and their properties. + * Specifies the underlying authority that describes the type of content to be retained and its retention schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new authorityTemplate object. + * Create new navigation property to authorities for security * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new authorityTemplate object. + * Create new navigation property to authorities for security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public AuthoritiesRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AuthoritiesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the authorityTemplate objects and their properties. + * Specifies the underlying authority that describes the type of content to be retained and its retention schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/labels/authorities/item/AuthorityTemplateItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/labels/authorities/item/AuthorityTemplateItemRequestBuilder.java index c49c457c8f7..1d059e3a88e 100644 --- a/src/main/java/com/microsoft/graph/generated/security/labels/authorities/item/AuthorityTemplateItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/labels/authorities/item/AuthorityTemplateItemRequestBuilder.java @@ -37,18 +37,16 @@ public AuthorityTemplateItemRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/security/labels/authorities/{authorityTemplate%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a authorityTemplate object. + * Delete navigation property authorities for security * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a authorityTemplate object. + * Delete navigation property authorities for security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a authorityTemplate object. + * Specifies the underlying authority that describes the type of content to be retained and its retention schedule. * @return a {@link AuthorityTemplate} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthorityTemplate get() { return get(null); } /** - * Read the properties and relationships of a authorityTemplate object. + * Specifies the underlying authority that describes the type of content to be retained and its retention schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AuthorityTemplate} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthorityTemplate get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -106,7 +102,7 @@ public AuthorityTemplate patch(@jakarta.annotation.Nonnull final AuthorityTempla return this.requestAdapter.send(requestInfo, errorMapping, AuthorityTemplate::createFromDiscriminatorValue); } /** - * Delete a authorityTemplate object. + * Delete navigation property authorities for security * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -114,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a authorityTemplate object. + * Delete navigation property authorities for security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a authorityTemplate object. + * Specifies the underlying authority that describes the type of content to be retained and its retention schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a authorityTemplate object. + * Specifies the underlying authority that describes the type of content to be retained and its retention schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public AuthorityTemplateItemRequestBuilder withUrl(@jakarta.annotation.Nonnull f public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a authorityTemplate object. + * Specifies the underlying authority that describes the type of content to be retained and its retention schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/labels/categories/CategoriesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/labels/categories/CategoriesRequestBuilder.java index b6c8e9523d7..681a42a0767 100644 --- a/src/main/java/com/microsoft/graph/generated/security/labels/categories/CategoriesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/labels/categories/CategoriesRequestBuilder.java @@ -60,21 +60,19 @@ public CategoriesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/security/labels/categories{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the categoryTemplate objects and their properties. + * Specifies a group of similar types of content in a particular department. * @return a {@link CategoryTemplateCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CategoryTemplateCollectionResponse get() { return get(null); } /** - * Get a list of the categoryTemplate objects and their properties. + * Specifies a group of similar types of content in a particular department. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CategoryTemplateCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CategoryTemplateCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public CategoryTemplateCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, CategoryTemplateCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new categoryTemplate object. + * Create new navigation property to categories for security * @param body The request body * @return a {@link CategoryTemplate} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CategoryTemplate post(@jakarta.annotation.Nonnull final CategoryTemplate body) { return post(body, null); } /** - * Create a new categoryTemplate object. + * Create new navigation property to categories for security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CategoryTemplate} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CategoryTemplate post(@jakarta.annotation.Nonnull final CategoryTemplate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public CategoryTemplate post(@jakarta.annotation.Nonnull final CategoryTemplate return this.requestAdapter.send(requestInfo, errorMapping, CategoryTemplate::createFromDiscriminatorValue); } /** - * Get a list of the categoryTemplate objects and their properties. + * Specifies a group of similar types of content in a particular department. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the categoryTemplate objects and their properties. + * Specifies a group of similar types of content in a particular department. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new categoryTemplate object. + * Create new navigation property to categories for security * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new categoryTemplate object. + * Create new navigation property to categories for security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public CategoriesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new CategoriesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the categoryTemplate objects and their properties. + * Specifies a group of similar types of content in a particular department. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/labels/categories/item/CategoryTemplateItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/labels/categories/item/CategoryTemplateItemRequestBuilder.java index 2f8a88c6b90..5eec2a6b98b 100644 --- a/src/main/java/com/microsoft/graph/generated/security/labels/categories/item/CategoryTemplateItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/labels/categories/item/CategoryTemplateItemRequestBuilder.java @@ -46,18 +46,16 @@ public CategoryTemplateItemRequestBuilder(@jakarta.annotation.Nonnull final Stri super(requestAdapter, "{+baseurl}/security/labels/categories/{categoryTemplate%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a categoryTemplate object. + * Delete navigation property categories for security * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a categoryTemplate object. + * Delete navigation property categories for security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a categoryTemplate object. + * Specifies a group of similar types of content in a particular department. * @return a {@link CategoryTemplate} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CategoryTemplate get() { return get(null); } /** - * Read the properties and relationships of a categoryTemplate object. + * Specifies a group of similar types of content in a particular department. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CategoryTemplate} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CategoryTemplate get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -115,7 +111,7 @@ public CategoryTemplate patch(@jakarta.annotation.Nonnull final CategoryTemplate return this.requestAdapter.send(requestInfo, errorMapping, CategoryTemplate::createFromDiscriminatorValue); } /** - * Delete a categoryTemplate object. + * Delete navigation property categories for security * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -123,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a categoryTemplate object. + * Delete navigation property categories for security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -135,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a categoryTemplate object. + * Specifies a group of similar types of content in a particular department. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a categoryTemplate object. + * Specifies a group of similar types of content in a particular department. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -195,7 +191,7 @@ public CategoryTemplateItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fi public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a categoryTemplate object. + * Specifies a group of similar types of content in a particular department. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/labels/citations/CitationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/labels/citations/CitationsRequestBuilder.java index d6a06e4d913..236d9a8faba 100644 --- a/src/main/java/com/microsoft/graph/generated/security/labels/citations/CitationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/labels/citations/CitationsRequestBuilder.java @@ -60,21 +60,19 @@ public CitationsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/security/labels/citations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the citationTemplate objects and their properties. + * The specific rule or regulation created by a jurisdiction used to determine whether certain labels and content should be retained or deleted. * @return a {@link CitationTemplateCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CitationTemplateCollectionResponse get() { return get(null); } /** - * Get a list of the citationTemplate objects and their properties. + * The specific rule or regulation created by a jurisdiction used to determine whether certain labels and content should be retained or deleted. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CitationTemplateCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CitationTemplateCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public CitationTemplateCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, CitationTemplateCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new citationTemplate object. + * Create new navigation property to citations for security * @param body The request body * @return a {@link CitationTemplate} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CitationTemplate post(@jakarta.annotation.Nonnull final CitationTemplate body) { return post(body, null); } /** - * Create a new citationTemplate object. + * Create new navigation property to citations for security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CitationTemplate} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CitationTemplate post(@jakarta.annotation.Nonnull final CitationTemplate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public CitationTemplate post(@jakarta.annotation.Nonnull final CitationTemplate return this.requestAdapter.send(requestInfo, errorMapping, CitationTemplate::createFromDiscriminatorValue); } /** - * Get a list of the citationTemplate objects and their properties. + * The specific rule or regulation created by a jurisdiction used to determine whether certain labels and content should be retained or deleted. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the citationTemplate objects and their properties. + * The specific rule or regulation created by a jurisdiction used to determine whether certain labels and content should be retained or deleted. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new citationTemplate object. + * Create new navigation property to citations for security * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new citationTemplate object. + * Create new navigation property to citations for security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public CitationsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new CitationsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the citationTemplate objects and their properties. + * The specific rule or regulation created by a jurisdiction used to determine whether certain labels and content should be retained or deleted. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/labels/citations/item/CitationTemplateItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/labels/citations/item/CitationTemplateItemRequestBuilder.java index e5f6b5d2d7a..e3d76e93f95 100644 --- a/src/main/java/com/microsoft/graph/generated/security/labels/citations/item/CitationTemplateItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/labels/citations/item/CitationTemplateItemRequestBuilder.java @@ -37,18 +37,16 @@ public CitationTemplateItemRequestBuilder(@jakarta.annotation.Nonnull final Stri super(requestAdapter, "{+baseurl}/security/labels/citations/{citationTemplate%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a citationTemplate object. + * Delete navigation property citations for security * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a citationTemplate object. + * Delete navigation property citations for security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a citationTemplate object. + * The specific rule or regulation created by a jurisdiction used to determine whether certain labels and content should be retained or deleted. * @return a {@link CitationTemplate} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CitationTemplate get() { return get(null); } /** - * Read the properties and relationships of a citationTemplate object. + * The specific rule or regulation created by a jurisdiction used to determine whether certain labels and content should be retained or deleted. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CitationTemplate} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CitationTemplate get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -106,7 +102,7 @@ public CitationTemplate patch(@jakarta.annotation.Nonnull final CitationTemplate return this.requestAdapter.send(requestInfo, errorMapping, CitationTemplate::createFromDiscriminatorValue); } /** - * Delete a citationTemplate object. + * Delete navigation property citations for security * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -114,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a citationTemplate object. + * Delete navigation property citations for security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a citationTemplate object. + * The specific rule or regulation created by a jurisdiction used to determine whether certain labels and content should be retained or deleted. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a citationTemplate object. + * The specific rule or regulation created by a jurisdiction used to determine whether certain labels and content should be retained or deleted. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public CitationTemplateItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fi public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a citationTemplate object. + * The specific rule or regulation created by a jurisdiction used to determine whether certain labels and content should be retained or deleted. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/labels/departments/DepartmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/labels/departments/DepartmentsRequestBuilder.java index 240d96452b0..a7a5df68527 100644 --- a/src/main/java/com/microsoft/graph/generated/security/labels/departments/DepartmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/labels/departments/DepartmentsRequestBuilder.java @@ -60,21 +60,19 @@ public DepartmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/security/labels/departments{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the departmentTemplate objects and their properties. + * Specifies the department or business unit of an organization to which a label belongs. * @return a {@link DepartmentTemplateCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DepartmentTemplateCollectionResponse get() { return get(null); } /** - * Get a list of the departmentTemplate objects and their properties. + * Specifies the department or business unit of an organization to which a label belongs. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DepartmentTemplateCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DepartmentTemplateCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public DepartmentTemplateCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, DepartmentTemplateCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new departmentTemplate object. + * Create new navigation property to departments for security * @param body The request body * @return a {@link DepartmentTemplate} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DepartmentTemplate post(@jakarta.annotation.Nonnull final DepartmentTemplate body) { return post(body, null); } /** - * Create a new departmentTemplate object. + * Create new navigation property to departments for security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DepartmentTemplate} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DepartmentTemplate post(@jakarta.annotation.Nonnull final DepartmentTemplate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public DepartmentTemplate post(@jakarta.annotation.Nonnull final DepartmentTempl return this.requestAdapter.send(requestInfo, errorMapping, DepartmentTemplate::createFromDiscriminatorValue); } /** - * Get a list of the departmentTemplate objects and their properties. + * Specifies the department or business unit of an organization to which a label belongs. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the departmentTemplate objects and their properties. + * Specifies the department or business unit of an organization to which a label belongs. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new departmentTemplate object. + * Create new navigation property to departments for security * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new departmentTemplate object. + * Create new navigation property to departments for security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public DepartmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new DepartmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the departmentTemplate objects and their properties. + * Specifies the department or business unit of an organization to which a label belongs. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/labels/departments/item/DepartmentTemplateItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/labels/departments/item/DepartmentTemplateItemRequestBuilder.java index 2bb52a37e22..55673c6fcff 100644 --- a/src/main/java/com/microsoft/graph/generated/security/labels/departments/item/DepartmentTemplateItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/labels/departments/item/DepartmentTemplateItemRequestBuilder.java @@ -37,18 +37,16 @@ public DepartmentTemplateItemRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/security/labels/departments/{departmentTemplate%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a departmentTemplate object. + * Delete navigation property departments for security * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a departmentTemplate object. + * Delete navigation property departments for security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a departmentTemplate object. + * Specifies the department or business unit of an organization to which a label belongs. * @return a {@link DepartmentTemplate} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DepartmentTemplate get() { return get(null); } /** - * Read the properties and relationships of a departmentTemplate object. + * Specifies the department or business unit of an organization to which a label belongs. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DepartmentTemplate} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DepartmentTemplate get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -106,7 +102,7 @@ public DepartmentTemplate patch(@jakarta.annotation.Nonnull final DepartmentTemp return this.requestAdapter.send(requestInfo, errorMapping, DepartmentTemplate::createFromDiscriminatorValue); } /** - * Delete a departmentTemplate object. + * Delete navigation property departments for security * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -114,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a departmentTemplate object. + * Delete navigation property departments for security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a departmentTemplate object. + * Specifies the department or business unit of an organization to which a label belongs. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a departmentTemplate object. + * Specifies the department or business unit of an organization to which a label belongs. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public DepartmentTemplateItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a departmentTemplate object. + * Specifies the department or business unit of an organization to which a label belongs. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/labels/fileplanreferences/FilePlanReferencesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/labels/fileplanreferences/FilePlanReferencesRequestBuilder.java index 451ac8c85f0..cf5b65a4050 100644 --- a/src/main/java/com/microsoft/graph/generated/security/labels/fileplanreferences/FilePlanReferencesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/labels/fileplanreferences/FilePlanReferencesRequestBuilder.java @@ -60,21 +60,19 @@ public FilePlanReferencesRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/security/labels/filePlanReferences{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the filePlanReferenceTemplate objects and their properties. + * Specifies a unique alpha-numeric identifier for an organizations retention schedule. * @return a {@link FilePlanReferenceTemplateCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public FilePlanReferenceTemplateCollectionResponse get() { return get(null); } /** - * Get a list of the filePlanReferenceTemplate objects and their properties. + * Specifies a unique alpha-numeric identifier for an organizations retention schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FilePlanReferenceTemplateCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public FilePlanReferenceTemplateCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public FilePlanReferenceTemplateCollectionResponse get(@jakarta.annotation.Nulla return this.requestAdapter.send(requestInfo, errorMapping, FilePlanReferenceTemplateCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new filePlanReferenceTemplate object. + * Create new navigation property to filePlanReferences for security * @param body The request body * @return a {@link FilePlanReferenceTemplate} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public FilePlanReferenceTemplate post(@jakarta.annotation.Nonnull final FilePlanReferenceTemplate body) { return post(body, null); } /** - * Create a new filePlanReferenceTemplate object. + * Create new navigation property to filePlanReferences for security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FilePlanReferenceTemplate} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public FilePlanReferenceTemplate post(@jakarta.annotation.Nonnull final FilePlanReferenceTemplate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public FilePlanReferenceTemplate post(@jakarta.annotation.Nonnull final FilePlan return this.requestAdapter.send(requestInfo, errorMapping, FilePlanReferenceTemplate::createFromDiscriminatorValue); } /** - * Get a list of the filePlanReferenceTemplate objects and their properties. + * Specifies a unique alpha-numeric identifier for an organizations retention schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the filePlanReferenceTemplate objects and their properties. + * Specifies a unique alpha-numeric identifier for an organizations retention schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new filePlanReferenceTemplate object. + * Create new navigation property to filePlanReferences for security * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new filePlanReferenceTemplate object. + * Create new navigation property to filePlanReferences for security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public FilePlanReferencesRequestBuilder withUrl(@jakarta.annotation.Nonnull fina return new FilePlanReferencesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the filePlanReferenceTemplate objects and their properties. + * Specifies a unique alpha-numeric identifier for an organizations retention schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/labels/fileplanreferences/item/FilePlanReferenceTemplateItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/labels/fileplanreferences/item/FilePlanReferenceTemplateItemRequestBuilder.java index 244c10039eb..624189a8c4c 100644 --- a/src/main/java/com/microsoft/graph/generated/security/labels/fileplanreferences/item/FilePlanReferenceTemplateItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/labels/fileplanreferences/item/FilePlanReferenceTemplateItemRequestBuilder.java @@ -37,18 +37,16 @@ public FilePlanReferenceTemplateItemRequestBuilder(@jakarta.annotation.Nonnull f super(requestAdapter, "{+baseurl}/security/labels/filePlanReferences/{filePlanReferenceTemplate%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a filePlanReferenceTemplate object. + * Delete navigation property filePlanReferences for security * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a filePlanReferenceTemplate object. + * Delete navigation property filePlanReferences for security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a filePlanReferenceTemplate object. + * Specifies a unique alpha-numeric identifier for an organizations retention schedule. * @return a {@link FilePlanReferenceTemplate} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public FilePlanReferenceTemplate get() { return get(null); } /** - * Read the properties and relationships of a filePlanReferenceTemplate object. + * Specifies a unique alpha-numeric identifier for an organizations retention schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FilePlanReferenceTemplate} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public FilePlanReferenceTemplate get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -106,7 +102,7 @@ public FilePlanReferenceTemplate patch(@jakarta.annotation.Nonnull final FilePla return this.requestAdapter.send(requestInfo, errorMapping, FilePlanReferenceTemplate::createFromDiscriminatorValue); } /** - * Delete a filePlanReferenceTemplate object. + * Delete navigation property filePlanReferences for security * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -114,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a filePlanReferenceTemplate object. + * Delete navigation property filePlanReferences for security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a filePlanReferenceTemplate object. + * Specifies a unique alpha-numeric identifier for an organizations retention schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a filePlanReferenceTemplate object. + * Specifies a unique alpha-numeric identifier for an organizations retention schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public FilePlanReferenceTemplateItemRequestBuilder withUrl(@jakarta.annotation.N public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a filePlanReferenceTemplate object. + * Specifies a unique alpha-numeric identifier for an organizations retention schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/labels/retentionlabels/RetentionLabelsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/labels/retentionlabels/RetentionLabelsRequestBuilder.java index e1ab3de6d18..3c2612a7dd5 100644 --- a/src/main/java/com/microsoft/graph/generated/security/labels/retentionlabels/RetentionLabelsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/labels/retentionlabels/RetentionLabelsRequestBuilder.java @@ -60,21 +60,19 @@ public RetentionLabelsRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/security/labels/retentionLabels{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the retentionLabel objects and their properties. + * Represents how customers can manage their data, whether and for how long to retain or delete it. * @return a {@link RetentionLabelCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RetentionLabelCollectionResponse get() { return get(null); } /** - * Get a list of the retentionLabel objects and their properties. + * Represents how customers can manage their data, whether and for how long to retain or delete it. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RetentionLabelCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RetentionLabelCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public RetentionLabelCollectionResponse get(@jakarta.annotation.Nullable final j return this.requestAdapter.send(requestInfo, errorMapping, RetentionLabelCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new retentionLabel object. To create a disposition review stage, include the actionAfterRetentionPeriod property in the request body with one of the possible values specified. + * Create new navigation property to retentionLabels for security * @param body The request body * @return a {@link RetentionLabel} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RetentionLabel post(@jakarta.annotation.Nonnull final RetentionLabel body) { return post(body, null); } /** - * Create a new retentionLabel object. To create a disposition review stage, include the actionAfterRetentionPeriod property in the request body with one of the possible values specified. + * Create new navigation property to retentionLabels for security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RetentionLabel} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RetentionLabel post(@jakarta.annotation.Nonnull final RetentionLabel body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public RetentionLabel post(@jakarta.annotation.Nonnull final RetentionLabel body return this.requestAdapter.send(requestInfo, errorMapping, RetentionLabel::createFromDiscriminatorValue); } /** - * Get a list of the retentionLabel objects and their properties. + * Represents how customers can manage their data, whether and for how long to retain or delete it. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the retentionLabel objects and their properties. + * Represents how customers can manage their data, whether and for how long to retain or delete it. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new retentionLabel object. To create a disposition review stage, include the actionAfterRetentionPeriod property in the request body with one of the possible values specified. + * Create new navigation property to retentionLabels for security * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new retentionLabel object. To create a disposition review stage, include the actionAfterRetentionPeriod property in the request body with one of the possible values specified. + * Create new navigation property to retentionLabels for security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public RetentionLabelsRequestBuilder withUrl(@jakarta.annotation.Nonnull final S return new RetentionLabelsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the retentionLabel objects and their properties. + * Represents how customers can manage their data, whether and for how long to retain or delete it. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/labels/retentionlabels/item/RetentionLabelItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/labels/retentionlabels/item/RetentionLabelItemRequestBuilder.java index e1bcdaa2fe1..914ba59011a 100644 --- a/src/main/java/com/microsoft/graph/generated/security/labels/retentionlabels/item/RetentionLabelItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/labels/retentionlabels/item/RetentionLabelItemRequestBuilder.java @@ -64,18 +64,16 @@ public RetentionLabelItemRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/security/labels/retentionLabels/{retentionLabel%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a retentionLabel object. + * Delete navigation property retentionLabels for security * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a retentionLabel object. + * Delete navigation property retentionLabels for security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -106,23 +104,21 @@ public RetentionLabel get(@jakarta.annotation.Nullable final java.util.function. return this.requestAdapter.send(requestInfo, errorMapping, RetentionLabel::createFromDiscriminatorValue); } /** - * Update the properties of a retentionLabel object. To update a disposition review stage, include the actionAfterRetentionPeriod property in the request body with one of the possible values specified. + * Update the navigation property retentionLabels in security * @param body The request body * @return a {@link RetentionLabel} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RetentionLabel patch(@jakarta.annotation.Nonnull final RetentionLabel body) { return patch(body, null); } /** - * Update the properties of a retentionLabel object. To update a disposition review stage, include the actionAfterRetentionPeriod property in the request body with one of the possible values specified. + * Update the navigation property retentionLabels in security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RetentionLabel} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RetentionLabel patch(@jakarta.annotation.Nonnull final RetentionLabel body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +129,7 @@ public RetentionLabel patch(@jakarta.annotation.Nonnull final RetentionLabel bod return this.requestAdapter.send(requestInfo, errorMapping, RetentionLabel::createFromDiscriminatorValue); } /** - * Delete a retentionLabel object. + * Delete navigation property retentionLabels for security * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +137,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a retentionLabel object. + * Delete navigation property retentionLabels for security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -173,7 +169,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a retentionLabel object. To update a disposition review stage, include the actionAfterRetentionPeriod property in the request body with one of the possible values specified. + * Update the navigation property retentionLabels in security * @param body The request body * @return a {@link RequestInformation} */ @@ -182,7 +178,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a retentionLabel object. To update a disposition review stage, include the actionAfterRetentionPeriod property in the request body with one of the possible values specified. + * Update the navigation property retentionLabels in security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/security/securescorecontrolprofiles/SecureScoreControlProfilesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/securescorecontrolprofiles/SecureScoreControlProfilesRequestBuilder.java index a06543b305f..ae66c8adb97 100644 --- a/src/main/java/com/microsoft/graph/generated/security/securescorecontrolprofiles/SecureScoreControlProfilesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/securescorecontrolprofiles/SecureScoreControlProfilesRequestBuilder.java @@ -60,21 +60,19 @@ public SecureScoreControlProfilesRequestBuilder(@jakarta.annotation.Nonnull fina super(requestAdapter, "{+baseurl}/security/secureScoreControlProfiles{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the properties and relationships of a secureScoreControlProfiles object. + * Get secureScoreControlProfiles from security * @return a {@link SecureScoreControlProfileCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SecureScoreControlProfileCollectionResponse get() { return get(null); } /** - * Retrieve the properties and relationships of a secureScoreControlProfiles object. + * Get secureScoreControlProfiles from security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SecureScoreControlProfileCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SecureScoreControlProfileCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public SecureScoreControlProfile post(@jakarta.annotation.Nonnull final SecureSc return this.requestAdapter.send(requestInfo, errorMapping, SecureScoreControlProfile::createFromDiscriminatorValue); } /** - * Retrieve the properties and relationships of a secureScoreControlProfiles object. + * Get secureScoreControlProfiles from security * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a secureScoreControlProfiles object. + * Get secureScoreControlProfiles from security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public SecureScoreControlProfilesRequestBuilder withUrl(@jakarta.annotation.Nonn return new SecureScoreControlProfilesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the properties and relationships of a secureScoreControlProfiles object. + * Get secureScoreControlProfiles from security */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/securescorecontrolprofiles/item/SecureScoreControlProfileItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/securescorecontrolprofiles/item/SecureScoreControlProfileItemRequestBuilder.java index 5cc9b25f506..b28aa71f931 100644 --- a/src/main/java/com/microsoft/graph/generated/security/securescorecontrolprofiles/item/SecureScoreControlProfileItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/securescorecontrolprofiles/item/SecureScoreControlProfileItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of an securescorecontrolprofile object. + * Get secureScoreControlProfiles from security * @return a {@link SecureScoreControlProfile} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SecureScoreControlProfile get() { return get(null); } /** - * Retrieve the properties and relationships of an securescorecontrolprofile object. + * Get secureScoreControlProfiles from security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SecureScoreControlProfile} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SecureScoreControlProfile get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public SecureScoreControlProfile get(@jakarta.annotation.Nullable final java.uti return this.requestAdapter.send(requestInfo, errorMapping, SecureScoreControlProfile::createFromDiscriminatorValue); } /** - * Update an editable secureScoreControlProfile object within any integrated solution to change various properties, such as assignedTo or tenantNote. + * Update the navigation property secureScoreControlProfiles in security * @param body The request body * @return a {@link SecureScoreControlProfile} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SecureScoreControlProfile patch(@jakarta.annotation.Nonnull final SecureScoreControlProfile body) { return patch(body, null); } /** - * Update an editable secureScoreControlProfile object within any integrated solution to change various properties, such as assignedTo or tenantNote. + * Update the navigation property secureScoreControlProfiles in security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SecureScoreControlProfile} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SecureScoreControlProfile patch(@jakarta.annotation.Nonnull final SecureScoreControlProfile body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of an securescorecontrolprofile object. + * Get secureScoreControlProfiles from security * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of an securescorecontrolprofile object. + * Get secureScoreControlProfiles from security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update an editable secureScoreControlProfile object within any integrated solution to change various properties, such as assignedTo or tenantNote. + * Update the navigation property secureScoreControlProfiles in security * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update an editable secureScoreControlProfile object within any integrated solution to change various properties, such as assignedTo or tenantNote. + * Update the navigation property secureScoreControlProfiles in security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public SecureScoreControlProfileItemRequestBuilder withUrl(@jakarta.annotation.N public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of an securescorecontrolprofile object. + * Get secureScoreControlProfiles from security */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/securescores/SecureScoresRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/securescores/SecureScoresRequestBuilder.java index dcbddaacc7d..a8d5cd39443 100644 --- a/src/main/java/com/microsoft/graph/generated/security/securescores/SecureScoresRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/securescores/SecureScoresRequestBuilder.java @@ -60,21 +60,19 @@ public SecureScoresRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/security/secureScores{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of secureScore objects. + * Get secureScores from security * @return a {@link SecureScoreCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SecureScoreCollectionResponse get() { return get(null); } /** - * Retrieve a list of secureScore objects. + * Get secureScores from security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SecureScoreCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SecureScoreCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public SecureScore post(@jakarta.annotation.Nonnull final SecureScore body, @jak return this.requestAdapter.send(requestInfo, errorMapping, SecureScore::createFromDiscriminatorValue); } /** - * Retrieve a list of secureScore objects. + * Get secureScores from security * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of secureScore objects. + * Get secureScores from security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public SecureScoresRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri return new SecureScoresRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of secureScore objects. + * Get secureScores from security */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/securescores/item/SecureScoreItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/securescores/item/SecureScoreItemRequestBuilder.java index f68245cf701..7d6900999e8 100644 --- a/src/main/java/com/microsoft/graph/generated/security/securescores/item/SecureScoreItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/securescores/item/SecureScoreItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a secureScore object. + * Get secureScores from security * @return a {@link SecureScore} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SecureScore get() { return get(null); } /** - * Retrieve the properties and relationships of a secureScore object. + * Get secureScores from security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SecureScore} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SecureScore get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a secureScore object. + * Get secureScores from security * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a secureScore object. + * Get secureScores from security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public SecureScoreItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final S public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a secureScore object. + * Get secureScores from security */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/subjectrightsrequests/item/getfinalattachment/GetFinalAttachmentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/subjectrightsrequests/item/getfinalattachment/GetFinalAttachmentRequestBuilder.java index 710423207a7..536572cf994 100644 --- a/src/main/java/com/microsoft/graph/generated/security/subjectrightsrequests/item/getfinalattachment/GetFinalAttachmentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/subjectrightsrequests/item/getfinalattachment/GetFinalAttachmentRequestBuilder.java @@ -36,19 +36,21 @@ public GetFinalAttachmentRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/security/subjectRightsRequests/{subjectRightsRequest%2Did}/getFinalAttachment()", rawUrl); } /** - * Invoke function getFinalAttachment + * Get the final attachment for a subject rights request. The attachment is a zip file that contains all the files that were included by the privacy administrator. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getFinalAttachment + * Get the final attachment for a subject rights request. The attachment is a zip file that contains all the files that were included by the privacy administrator. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getFinalAttachment + * Get the final attachment for a subject rights request. The attachment is a zip file that contains all the files that were included by the privacy administrator. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getFinalAttachment + * Get the final attachment for a subject rights request. The attachment is a zip file that contains all the files that were included by the privacy administrator. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/security/subjectrightsrequests/item/getfinalreport/GetFinalReportRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/subjectrightsrequests/item/getfinalreport/GetFinalReportRequestBuilder.java index fd9e3fc6b57..ce7f96fe925 100644 --- a/src/main/java/com/microsoft/graph/generated/security/subjectrightsrequests/item/getfinalreport/GetFinalReportRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/subjectrightsrequests/item/getfinalreport/GetFinalReportRequestBuilder.java @@ -36,19 +36,21 @@ public GetFinalReportRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/security/subjectRightsRequests/{subjectRightsRequest%2Did}/getFinalReport()", rawUrl); } /** - * Invoke function getFinalReport + * Get the final report for a subject rights request. The report is a text file that contains information about the files that were included by the privacy administrator. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { return get(null); } /** - * Invoke function getFinalReport + * Get the final report for a subject rights request. The report is a text file that contains information about the files that were included by the privacy administrator. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public InputStream get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, InputStream.class); } /** - * Invoke function getFinalReport + * Get the final report for a subject rights request. The report is a text file that contains information about the files that were included by the privacy administrator. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getFinalReport + * Get the final report for a subject rights request. The report is a text file that contains information about the files that were included by the privacy administrator. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/security/subjectrightsrequests/item/notes/NotesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/subjectrightsrequests/item/notes/NotesRequestBuilder.java index 20ebc05a23f..f4cca779bc7 100644 --- a/src/main/java/com/microsoft/graph/generated/security/subjectrightsrequests/item/notes/NotesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/subjectrightsrequests/item/notes/NotesRequestBuilder.java @@ -60,21 +60,19 @@ public NotesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/security/subjectRightsRequests/{subjectRightsRequest%2Did}/notes{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of authored notes assoicated with a subject rights request. + * List of notes associated with the request. * @return a {@link AuthoredNoteCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthoredNoteCollectionResponse get() { return get(null); } /** - * Get the list of authored notes assoicated with a subject rights request. + * List of notes associated with the request. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AuthoredNoteCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthoredNoteCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public AuthoredNoteCollectionResponse get(@jakarta.annotation.Nullable final jav return this.requestAdapter.send(requestInfo, errorMapping, AuthoredNoteCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new authoredNote object. + * Create new navigation property to notes for security * @param body The request body * @return a {@link AuthoredNote} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthoredNote post(@jakarta.annotation.Nonnull final AuthoredNote body) { return post(body, null); } /** - * Create a new authoredNote object. + * Create new navigation property to notes for security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AuthoredNote} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthoredNote post(@jakarta.annotation.Nonnull final AuthoredNote body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public AuthoredNote post(@jakarta.annotation.Nonnull final AuthoredNote body, @j return this.requestAdapter.send(requestInfo, errorMapping, AuthoredNote::createFromDiscriminatorValue); } /** - * Get the list of authored notes assoicated with a subject rights request. + * List of notes associated with the request. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of authored notes assoicated with a subject rights request. + * List of notes associated with the request. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new authoredNote object. + * Create new navigation property to notes for security * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new authoredNote object. + * Create new navigation property to notes for security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public NotesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new NotesRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of authored notes assoicated with a subject rights request. + * List of notes associated with the request. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/articleindicators/ArticleIndicatorsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/articleindicators/ArticleIndicatorsRequestBuilder.java index 0c51dd28e86..a33832c5426 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/articleindicators/ArticleIndicatorsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/articleindicators/ArticleIndicatorsRequestBuilder.java @@ -60,7 +60,7 @@ public ArticleIndicatorsRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/security/threatIntelligence/articleIndicators{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Read the properties and relationships of an articleIndicator object. + * Refers to indicators of threat or compromise highlighted in an article.Note: List retrieval is not yet supported. * @return a {@link ArticleIndicatorCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public ArticleIndicatorCollectionResponse get() { return get(null); } /** - * Read the properties and relationships of an articleIndicator object. + * Refers to indicators of threat or compromise highlighted in an article.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ArticleIndicatorCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public ArticleIndicator post(@jakarta.annotation.Nonnull final ArticleIndicator return this.requestAdapter.send(requestInfo, errorMapping, ArticleIndicator::createFromDiscriminatorValue); } /** - * Read the properties and relationships of an articleIndicator object. + * Refers to indicators of threat or compromise highlighted in an article.Note: List retrieval is not yet supported. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of an articleIndicator object. + * Refers to indicators of threat or compromise highlighted in an article.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public ArticleIndicatorsRequestBuilder withUrl(@jakarta.annotation.Nonnull final return new ArticleIndicatorsRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of an articleIndicator object. + * Refers to indicators of threat or compromise highlighted in an article.Note: List retrieval is not yet supported. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/articleindicators/item/ArticleIndicatorItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/articleindicators/item/ArticleIndicatorItemRequestBuilder.java index 9ea3e50777a..8dec581acec 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/articleindicators/item/ArticleIndicatorItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/articleindicators/item/ArticleIndicatorItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of an articleIndicator object. + * Refers to indicators of threat or compromise highlighted in an article.Note: List retrieval is not yet supported. * @return a {@link ArticleIndicator} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ArticleIndicator get() { return get(null); } /** - * Read the properties and relationships of an articleIndicator object. + * Refers to indicators of threat or compromise highlighted in an article.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ArticleIndicator} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ArticleIndicator get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of an articleIndicator object. + * Refers to indicators of threat or compromise highlighted in an article.Note: List retrieval is not yet supported. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of an articleIndicator object. + * Refers to indicators of threat or compromise highlighted in an article.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public ArticleIndicatorItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fi public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of an articleIndicator object. + * Refers to indicators of threat or compromise highlighted in an article.Note: List retrieval is not yet supported. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/articles/ArticlesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/articles/ArticlesRequestBuilder.java index c6acc05311d..fcf5b4a41c8 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/articles/ArticlesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/articles/ArticlesRequestBuilder.java @@ -60,21 +60,19 @@ public ArticlesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/security/threatIntelligence/articles{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of article objects, including their properties and relationships. + * A list of article objects. * @return a {@link ArticleCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ArticleCollectionResponse get() { return get(null); } /** - * Get a list of article objects, including their properties and relationships. + * A list of article objects. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ArticleCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ArticleCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Article post(@jakarta.annotation.Nonnull final Article body, @jakarta.ann return this.requestAdapter.send(requestInfo, errorMapping, Article::createFromDiscriminatorValue); } /** - * Get a list of article objects, including their properties and relationships. + * A list of article objects. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of article objects, including their properties and relationships. + * A list of article objects. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public ArticlesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new ArticlesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of article objects, including their properties and relationships. + * A list of article objects. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/articles/item/ArticleItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/articles/item/ArticleItemRequestBuilder.java index 9f0686a573d..a1d076e6677 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/articles/item/ArticleItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/articles/item/ArticleItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of an article object. + * A list of article objects. * @return a {@link Article} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Article get() { return get(null); } /** - * Read the properties and relationships of an article object. + * A list of article objects. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Article} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Article get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of an article object. + * A list of article objects. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of an article object. + * A list of article objects. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public ArticleItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of an article object. + * A list of article objects. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/articles/item/indicators/IndicatorsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/articles/item/indicators/IndicatorsRequestBuilder.java index 3f624240fce..137a52a0983 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/articles/item/indicators/IndicatorsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/articles/item/indicators/IndicatorsRequestBuilder.java @@ -59,21 +59,19 @@ public IndicatorsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/security/threatIntelligence/articles/{article%2Did}/indicators{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of articleIndicator objects that represent indicators of threat or compromise related to the contents of an article. + * Indicators related to this article. * @return a {@link ArticleIndicatorCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ArticleIndicatorCollectionResponse get() { return get(null); } /** - * Get a list of articleIndicator objects that represent indicators of threat or compromise related to the contents of an article. + * Indicators related to this article. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ArticleIndicatorCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ArticleIndicatorCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public ArticleIndicatorCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, ArticleIndicatorCollectionResponse::createFromDiscriminatorValue); } /** - * Get a list of articleIndicator objects that represent indicators of threat or compromise related to the contents of an article. + * Indicators related to this article. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of articleIndicator objects that represent indicators of threat or compromise related to the contents of an article. + * Indicators related to this article. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public IndicatorsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new IndicatorsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of articleIndicator objects that represent indicators of threat or compromise related to the contents of an article. + * Indicators related to this article. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hostcomponents/HostComponentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hostcomponents/HostComponentsRequestBuilder.java index f5b42e9edfa..4444101de50 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hostcomponents/HostComponentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hostcomponents/HostComponentsRequestBuilder.java @@ -60,7 +60,7 @@ public HostComponentsRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/security/threatIntelligence/hostComponents{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Read the properties and relationships of a hostComponent object. + * Retrieve details about hostComponent objects.Note: List retrieval is not yet supported. * @return a {@link HostComponentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public HostComponentCollectionResponse get() { return get(null); } /** - * Read the properties and relationships of a hostComponent object. + * Retrieve details about hostComponent objects.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link HostComponentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public HostComponent post(@jakarta.annotation.Nonnull final HostComponent body, return this.requestAdapter.send(requestInfo, errorMapping, HostComponent::createFromDiscriminatorValue); } /** - * Read the properties and relationships of a hostComponent object. + * Retrieve details about hostComponent objects.Note: List retrieval is not yet supported. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a hostComponent object. + * Retrieve details about hostComponent objects.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public HostComponentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new HostComponentsRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of a hostComponent object. + * Retrieve details about hostComponent objects.Note: List retrieval is not yet supported. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hostcomponents/item/HostComponentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hostcomponents/item/HostComponentItemRequestBuilder.java index 2fd46bc7e8b..72383c91590 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hostcomponents/item/HostComponentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hostcomponents/item/HostComponentItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a hostComponent object. + * Retrieve details about hostComponent objects.Note: List retrieval is not yet supported. * @return a {@link HostComponent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public HostComponent get() { return get(null); } /** - * Read the properties and relationships of a hostComponent object. + * Retrieve details about hostComponent objects.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link HostComponent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public HostComponent get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a hostComponent object. + * Retrieve details about hostComponent objects.Note: List retrieval is not yet supported. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a hostComponent object. + * Retrieve details about hostComponent objects.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public HostComponentItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a hostComponent object. + * Retrieve details about hostComponent objects.Note: List retrieval is not yet supported. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hostcookies/HostCookiesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hostcookies/HostCookiesRequestBuilder.java index 5805183634c..229f3dc84ff 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hostcookies/HostCookiesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hostcookies/HostCookiesRequestBuilder.java @@ -60,7 +60,7 @@ public HostCookiesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/security/threatIntelligence/hostCookies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Read the properties and relationships of a hostCookie object. + * Retrieve details about hostCookie objects.Note: List retrieval is not yet supported. * @return a {@link HostCookieCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public HostCookieCollectionResponse get() { return get(null); } /** - * Read the properties and relationships of a hostCookie object. + * Retrieve details about hostCookie objects.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link HostCookieCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public HostCookie post(@jakarta.annotation.Nonnull final HostCookie body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, HostCookie::createFromDiscriminatorValue); } /** - * Read the properties and relationships of a hostCookie object. + * Retrieve details about hostCookie objects.Note: List retrieval is not yet supported. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a hostCookie object. + * Retrieve details about hostCookie objects.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public HostCookiesRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new HostCookiesRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of a hostCookie object. + * Retrieve details about hostCookie objects.Note: List retrieval is not yet supported. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hostcookies/item/HostCookieItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hostcookies/item/HostCookieItemRequestBuilder.java index 1c60afb1cb4..602ff296554 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hostcookies/item/HostCookieItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hostcookies/item/HostCookieItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a hostCookie object. + * Retrieve details about hostCookie objects.Note: List retrieval is not yet supported. * @return a {@link HostCookie} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public HostCookie get() { return get(null); } /** - * Read the properties and relationships of a hostCookie object. + * Retrieve details about hostCookie objects.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link HostCookie} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public HostCookie get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a hostCookie object. + * Retrieve details about hostCookie objects.Note: List retrieval is not yet supported. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a hostCookie object. + * Retrieve details about hostCookie objects.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public HostCookieItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final St public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a hostCookie object. + * Retrieve details about hostCookie objects.Note: List retrieval is not yet supported. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hostpairs/HostPairsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hostpairs/HostPairsRequestBuilder.java index 41994a4e778..f8f56c0c7e1 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hostpairs/HostPairsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hostpairs/HostPairsRequestBuilder.java @@ -60,7 +60,7 @@ public HostPairsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/security/threatIntelligence/hostPairs{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Read the properties and relationships of a hostPair object. + * Retrieve details about hostTracker objects.Note: List retrieval is not yet supported. * @return a {@link HostPairCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public HostPairCollectionResponse get() { return get(null); } /** - * Read the properties and relationships of a hostPair object. + * Retrieve details about hostTracker objects.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link HostPairCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public HostPair post(@jakarta.annotation.Nonnull final HostPair body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, HostPair::createFromDiscriminatorValue); } /** - * Read the properties and relationships of a hostPair object. + * Retrieve details about hostTracker objects.Note: List retrieval is not yet supported. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a hostPair object. + * Retrieve details about hostTracker objects.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public HostPairsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new HostPairsRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of a hostPair object. + * Retrieve details about hostTracker objects.Note: List retrieval is not yet supported. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hostpairs/item/HostPairItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hostpairs/item/HostPairItemRequestBuilder.java index 381739b0df3..0e820f1441e 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hostpairs/item/HostPairItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hostpairs/item/HostPairItemRequestBuilder.java @@ -73,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a hostPair object. + * Retrieve details about hostTracker objects.Note: List retrieval is not yet supported. * @return a {@link HostPair} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public HostPair get() { return get(null); } /** - * Read the properties and relationships of a hostPair object. + * Retrieve details about hostTracker objects.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link HostPair} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public HostPair get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -142,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a hostPair object. + * Retrieve details about hostTracker objects.Note: List retrieval is not yet supported. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -150,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a hostPair object. + * Retrieve details about hostTracker objects.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -202,7 +200,7 @@ public HostPairItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a hostPair object. + * Retrieve details about hostTracker objects.Note: List retrieval is not yet supported. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hostports/HostPortsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hostports/HostPortsRequestBuilder.java index 2cc67c0ba62..31609959278 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hostports/HostPortsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hostports/HostPortsRequestBuilder.java @@ -60,7 +60,7 @@ public HostPortsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/security/threatIntelligence/hostPorts{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Read the properties and relationships of a hostPort object. + * Retrieve details about hostPort objects.Note: List retrieval is not yet supported. * @return a {@link HostPortCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public HostPortCollectionResponse get() { return get(null); } /** - * Read the properties and relationships of a hostPort object. + * Retrieve details about hostPort objects.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link HostPortCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public HostPort post(@jakarta.annotation.Nonnull final HostPort body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, HostPort::createFromDiscriminatorValue); } /** - * Read the properties and relationships of a hostPort object. + * Retrieve details about hostPort objects.Note: List retrieval is not yet supported. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a hostPort object. + * Retrieve details about hostPort objects.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public HostPortsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new HostPortsRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of a hostPort object. + * Retrieve details about hostPort objects.Note: List retrieval is not yet supported. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hostports/item/HostPortItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hostports/item/HostPortItemRequestBuilder.java index 9117de3a216..6dde5c39ba7 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hostports/item/HostPortItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hostports/item/HostPortItemRequestBuilder.java @@ -73,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a hostPort object. + * Retrieve details about hostPort objects.Note: List retrieval is not yet supported. * @return a {@link HostPort} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public HostPort get() { return get(null); } /** - * Read the properties and relationships of a hostPort object. + * Retrieve details about hostPort objects.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link HostPort} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public HostPort get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -142,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a hostPort object. + * Retrieve details about hostPort objects.Note: List retrieval is not yet supported. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -150,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a hostPort object. + * Retrieve details about hostPort objects.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -202,7 +200,7 @@ public HostPortItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a hostPort object. + * Retrieve details about hostPort objects.Note: List retrieval is not yet supported. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/HostsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/HostsRequestBuilder.java index af137023f18..4c2b8d9f66e 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/HostsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/HostsRequestBuilder.java @@ -60,7 +60,7 @@ public HostsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/security/threatIntelligence/hosts{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Read the properties and relationships of a host object. The host resource is the abstract base type that returns an implementation. A host can be of one of the following types: + * Refers to host objects that Microsoft Threat Intelligence has observed.Note: List retrieval is not yet supported. * @return a {@link HostCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public HostCollectionResponse get() { return get(null); } /** - * Read the properties and relationships of a host object. The host resource is the abstract base type that returns an implementation. A host can be of one of the following types: + * Refers to host objects that Microsoft Threat Intelligence has observed.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link HostCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public Host post(@jakarta.annotation.Nonnull final Host body, @jakarta.annotatio return this.requestAdapter.send(requestInfo, errorMapping, Host::createFromDiscriminatorValue); } /** - * Read the properties and relationships of a host object. The host resource is the abstract base type that returns an implementation. A host can be of one of the following types: + * Refers to host objects that Microsoft Threat Intelligence has observed.Note: List retrieval is not yet supported. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a host object. The host resource is the abstract base type that returns an implementation. A host can be of one of the following types: + * Refers to host objects that Microsoft Threat Intelligence has observed.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public HostsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new HostsRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of a host object. The host resource is the abstract base type that returns an implementation. A host can be of one of the following types: + * Refers to host objects that Microsoft Threat Intelligence has observed.Note: List retrieval is not yet supported. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/HostItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/HostItemRequestBuilder.java index 939ea17453a..33c1b36e90b 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/HostItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/HostItemRequestBuilder.java @@ -172,21 +172,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a host object. The host resource is the abstract base type that returns an implementation. A host can be of one of the following types: + * Refers to host objects that Microsoft Threat Intelligence has observed.Note: List retrieval is not yet supported. * @return a {@link Host} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Host get() { return get(null); } /** - * Read the properties and relationships of a host object. The host resource is the abstract base type that returns an implementation. A host can be of one of the following types: + * Refers to host objects that Microsoft Threat Intelligence has observed.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Host} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Host get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -241,7 +239,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a host object. The host resource is the abstract base type that returns an implementation. A host can be of one of the following types: + * Refers to host objects that Microsoft Threat Intelligence has observed.Note: List retrieval is not yet supported. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -249,7 +247,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a host object. The host resource is the abstract base type that returns an implementation. A host can be of one of the following types: + * Refers to host objects that Microsoft Threat Intelligence has observed.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -301,7 +299,7 @@ public HostItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a host object. The host resource is the abstract base type that returns an implementation. A host can be of one of the following types: + * Refers to host objects that Microsoft Threat Intelligence has observed.Note: List retrieval is not yet supported. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/childhostpairs/ChildHostPairsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/childhostpairs/ChildHostPairsRequestBuilder.java index 9bb1aaefb7d..7ab3fb85b54 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/childhostpairs/ChildHostPairsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/childhostpairs/ChildHostPairsRequestBuilder.java @@ -59,21 +59,19 @@ public ChildHostPairsRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/security/threatIntelligence/hosts/{host%2Did}/childHostPairs{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of hostPair resources associated with a host, where that host is the *parent* and has an outgoing pairing to a *child*. + * The hostPairs that are resources associated with a host, where that host is the parentHost and has an outgoing pairing to a childHost. * @return a {@link HostPairCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public HostPairCollectionResponse get() { return get(null); } /** - * Get the list of hostPair resources associated with a host, where that host is the *parent* and has an outgoing pairing to a *child*. + * The hostPairs that are resources associated with a host, where that host is the parentHost and has an outgoing pairing to a childHost. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link HostPairCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public HostPairCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public HostPairCollectionResponse get(@jakarta.annotation.Nullable final java.ut return this.requestAdapter.send(requestInfo, errorMapping, HostPairCollectionResponse::createFromDiscriminatorValue); } /** - * Get the list of hostPair resources associated with a host, where that host is the *parent* and has an outgoing pairing to a *child*. + * The hostPairs that are resources associated with a host, where that host is the parentHost and has an outgoing pairing to a childHost. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of hostPair resources associated with a host, where that host is the *parent* and has an outgoing pairing to a *child*. + * The hostPairs that are resources associated with a host, where that host is the parentHost and has an outgoing pairing to a childHost. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public ChildHostPairsRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new ChildHostPairsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of hostPair resources associated with a host, where that host is the *parent* and has an outgoing pairing to a *child*. + * The hostPairs that are resources associated with a host, where that host is the parentHost and has an outgoing pairing to a childHost. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/components/ComponentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/components/ComponentsRequestBuilder.java index a7653d773e7..be72baaeabb 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/components/ComponentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/components/ComponentsRequestBuilder.java @@ -59,21 +59,19 @@ public ComponentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/security/threatIntelligence/hosts/{host%2Did}/components{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of hostComponent resources. + * The hostComponents that are associated with this host. * @return a {@link HostComponentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public HostComponentCollectionResponse get() { return get(null); } /** - * Get a list of hostComponent resources. + * The hostComponents that are associated with this host. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link HostComponentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public HostComponentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public HostComponentCollectionResponse get(@jakarta.annotation.Nullable final ja return this.requestAdapter.send(requestInfo, errorMapping, HostComponentCollectionResponse::createFromDiscriminatorValue); } /** - * Get a list of hostComponent resources. + * The hostComponents that are associated with this host. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of hostComponent resources. + * The hostComponents that are associated with this host. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public ComponentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ComponentsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of hostComponent resources. + * The hostComponents that are associated with this host. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/cookies/CookiesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/cookies/CookiesRequestBuilder.java index be269dcd22c..55b70434c5b 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/cookies/CookiesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/cookies/CookiesRequestBuilder.java @@ -59,21 +59,19 @@ public CookiesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/security/threatIntelligence/hosts/{host%2Did}/cookies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of hostCookie resources. + * The hostCookies that are associated with this host. * @return a {@link HostCookieCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public HostCookieCollectionResponse get() { return get(null); } /** - * Get a list of hostCookie resources. + * The hostCookies that are associated with this host. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link HostCookieCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public HostCookieCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public HostCookieCollectionResponse get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, HostCookieCollectionResponse::createFromDiscriminatorValue); } /** - * Get a list of hostCookie resources. + * The hostCookies that are associated with this host. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of hostCookie resources. + * The hostCookies that are associated with this host. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public CookiesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new CookiesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of hostCookie resources. + * The hostCookies that are associated with this host. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/hostpairs/HostPairsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/hostpairs/HostPairsRequestBuilder.java index fd2aebf1dc5..e8ecd3268a8 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/hostpairs/HostPairsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/hostpairs/HostPairsRequestBuilder.java @@ -59,21 +59,19 @@ public HostPairsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/security/threatIntelligence/hosts/{host%2Did}/hostPairs{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of hostPair resources associated with a host, where that host is *either* the *parent* or the *child*. + * The hostPairs that are associated with this host, where this host is either the parentHost or childHost. * @return a {@link HostPairCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public HostPairCollectionResponse get() { return get(null); } /** - * Get the list of hostPair resources associated with a host, where that host is *either* the *parent* or the *child*. + * The hostPairs that are associated with this host, where this host is either the parentHost or childHost. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link HostPairCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public HostPairCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public HostPairCollectionResponse get(@jakarta.annotation.Nullable final java.ut return this.requestAdapter.send(requestInfo, errorMapping, HostPairCollectionResponse::createFromDiscriminatorValue); } /** - * Get the list of hostPair resources associated with a host, where that host is *either* the *parent* or the *child*. + * The hostPairs that are associated with this host, where this host is either the parentHost or childHost. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of hostPair resources associated with a host, where that host is *either* the *parent* or the *child*. + * The hostPairs that are associated with this host, where this host is either the parentHost or childHost. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public HostPairsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new HostPairsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of hostPair resources associated with a host, where that host is *either* the *parent* or the *child*. + * The hostPairs that are associated with this host, where this host is either the parentHost or childHost. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/parenthostpairs/ParentHostPairsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/parenthostpairs/ParentHostPairsRequestBuilder.java index 3c4ada447ca..8954f568e7b 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/parenthostpairs/ParentHostPairsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/parenthostpairs/ParentHostPairsRequestBuilder.java @@ -59,21 +59,19 @@ public ParentHostPairsRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/security/threatIntelligence/hosts/{host%2Did}/parentHostPairs{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of hostPair resources associated with a host, where that host is the *child* and has an incoming pairing with a *parent*. + * The hostPairs that are associated with a host, where that host is the childHost and has an incoming pairing with a parentHost. * @return a {@link HostPairCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public HostPairCollectionResponse get() { return get(null); } /** - * Get the list of hostPair resources associated with a host, where that host is the *child* and has an incoming pairing with a *parent*. + * The hostPairs that are associated with a host, where that host is the childHost and has an incoming pairing with a parentHost. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link HostPairCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public HostPairCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public HostPairCollectionResponse get(@jakarta.annotation.Nullable final java.ut return this.requestAdapter.send(requestInfo, errorMapping, HostPairCollectionResponse::createFromDiscriminatorValue); } /** - * Get the list of hostPair resources associated with a host, where that host is the *child* and has an incoming pairing with a *parent*. + * The hostPairs that are associated with a host, where that host is the childHost and has an incoming pairing with a parentHost. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of hostPair resources associated with a host, where that host is the *child* and has an incoming pairing with a *parent*. + * The hostPairs that are associated with a host, where that host is the childHost and has an incoming pairing with a parentHost. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public ParentHostPairsRequestBuilder withUrl(@jakarta.annotation.Nonnull final S return new ParentHostPairsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of hostPair resources associated with a host, where that host is the *child* and has an incoming pairing with a *parent*. + * The hostPairs that are associated with a host, where that host is the childHost and has an incoming pairing with a parentHost. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/passivedns/PassiveDnsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/passivedns/PassiveDnsRequestBuilder.java index 6cdb9889cc5..be4d6870fcf 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/passivedns/PassiveDnsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/passivedns/PassiveDnsRequestBuilder.java @@ -59,21 +59,19 @@ public PassiveDnsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/security/threatIntelligence/hosts/{host%2Did}/passiveDns{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of passiveDnsRecord resources associated with a host. This is a forward DNS lookup which queries the IP address of the specified host using its hostname. + * Passive DNS retrieval about this host. * @return a {@link PassiveDnsRecordCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PassiveDnsRecordCollectionResponse get() { return get(null); } /** - * Get a list of passiveDnsRecord resources associated with a host. This is a forward DNS lookup which queries the IP address of the specified host using its hostname. + * Passive DNS retrieval about this host. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PassiveDnsRecordCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PassiveDnsRecordCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public PassiveDnsRecordCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, PassiveDnsRecordCollectionResponse::createFromDiscriminatorValue); } /** - * Get a list of passiveDnsRecord resources associated with a host. This is a forward DNS lookup which queries the IP address of the specified host using its hostname. + * Passive DNS retrieval about this host. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of passiveDnsRecord resources associated with a host. This is a forward DNS lookup which queries the IP address of the specified host using its hostname. + * Passive DNS retrieval about this host. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public PassiveDnsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new PassiveDnsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of passiveDnsRecord resources associated with a host. This is a forward DNS lookup which queries the IP address of the specified host using its hostname. + * Passive DNS retrieval about this host. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/passivednsreverse/PassiveDnsReverseRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/passivednsreverse/PassiveDnsReverseRequestBuilder.java index 200e4dba9dd..60759d63b3c 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/passivednsreverse/PassiveDnsReverseRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/passivednsreverse/PassiveDnsReverseRequestBuilder.java @@ -59,21 +59,19 @@ public PassiveDnsReverseRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/security/threatIntelligence/hosts/{host%2Did}/passiveDnsReverse{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a collection of passiveDnsRecord resources from a reverse passive DNS retrieval. A reverse DNS lookup queries the hostname of a host using an IP address. + * Reverse passive DNS retrieval about this host. * @return a {@link PassiveDnsRecordCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PassiveDnsRecordCollectionResponse get() { return get(null); } /** - * Get a collection of passiveDnsRecord resources from a reverse passive DNS retrieval. A reverse DNS lookup queries the hostname of a host using an IP address. + * Reverse passive DNS retrieval about this host. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PassiveDnsRecordCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PassiveDnsRecordCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public PassiveDnsRecordCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, PassiveDnsRecordCollectionResponse::createFromDiscriminatorValue); } /** - * Get a collection of passiveDnsRecord resources from a reverse passive DNS retrieval. A reverse DNS lookup queries the hostname of a host using an IP address. + * Reverse passive DNS retrieval about this host. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a collection of passiveDnsRecord resources from a reverse passive DNS retrieval. A reverse DNS lookup queries the hostname of a host using an IP address. + * Reverse passive DNS retrieval about this host. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public PassiveDnsReverseRequestBuilder withUrl(@jakarta.annotation.Nonnull final return new PassiveDnsReverseRequestBuilder(rawUrl, requestAdapter); } /** - * Get a collection of passiveDnsRecord resources from a reverse passive DNS retrieval. A reverse DNS lookup queries the hostname of a host using an IP address. + * Reverse passive DNS retrieval about this host. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/ports/PortsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/ports/PortsRequestBuilder.java index 019e6456ecb..8fe429f36fa 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/ports/PortsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/ports/PortsRequestBuilder.java @@ -59,21 +59,19 @@ public PortsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/security/threatIntelligence/hosts/{host%2Did}/ports{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of hostPort resources associated with a host. + * The hostPorts associated with a host. * @return a {@link HostPortCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public HostPortCollectionResponse get() { return get(null); } /** - * Get the list of hostPort resources associated with a host. + * The hostPorts associated with a host. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link HostPortCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public HostPortCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public HostPortCollectionResponse get(@jakarta.annotation.Nullable final java.ut return this.requestAdapter.send(requestInfo, errorMapping, HostPortCollectionResponse::createFromDiscriminatorValue); } /** - * Get the list of hostPort resources associated with a host. + * The hostPorts associated with a host. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of hostPort resources associated with a host. + * The hostPorts associated with a host. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public PortsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new PortsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of hostPort resources associated with a host. + * The hostPorts associated with a host. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/reputation/ReputationRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/reputation/ReputationRequestBuilder.java index d23dc7850e6..f939e29ed74 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/reputation/ReputationRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/reputation/ReputationRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the properties and relationships of a hostReputation object. + * Represents a calculated reputation of this host. * @return a {@link HostReputation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public HostReputation get() { return get(null); } /** - * Get the properties and relationships of a hostReputation object. + * Represents a calculated reputation of this host. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link HostReputation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public HostReputation get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the properties and relationships of a hostReputation object. + * Represents a calculated reputation of this host. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the properties and relationships of a hostReputation object. + * Represents a calculated reputation of this host. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public ReputationRequestBuilder withUrl(@jakarta.annotation.Nonnull final String public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the properties and relationships of a hostReputation object. + * Represents a calculated reputation of this host. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/sslcertificates/SslCertificatesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/sslcertificates/SslCertificatesRequestBuilder.java index c57bebeee0a..b56f98f50a1 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/sslcertificates/SslCertificatesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/sslcertificates/SslCertificatesRequestBuilder.java @@ -59,21 +59,19 @@ public SslCertificatesRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/security/threatIntelligence/hosts/{host%2Did}/sslCertificates{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of hostSslCertificate objects from the host navigation property. + * The hostSslCertificates that are associated with this host. * @return a {@link HostSslCertificateCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public HostSslCertificateCollectionResponse get() { return get(null); } /** - * Get a list of hostSslCertificate objects from the host navigation property. + * The hostSslCertificates that are associated with this host. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link HostSslCertificateCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public HostSslCertificateCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public HostSslCertificateCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, HostSslCertificateCollectionResponse::createFromDiscriminatorValue); } /** - * Get a list of hostSslCertificate objects from the host navigation property. + * The hostSslCertificates that are associated with this host. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of hostSslCertificate objects from the host navigation property. + * The hostSslCertificates that are associated with this host. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public SslCertificatesRequestBuilder withUrl(@jakarta.annotation.Nonnull final S return new SslCertificatesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of hostSslCertificate objects from the host navigation property. + * The hostSslCertificates that are associated with this host. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/subdomains/SubdomainsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/subdomains/SubdomainsRequestBuilder.java index 65e1eff4e7c..0ce0735a923 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/subdomains/SubdomainsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/subdomains/SubdomainsRequestBuilder.java @@ -59,21 +59,19 @@ public SubdomainsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/security/threatIntelligence/hosts/{host%2Did}/subdomains{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of subdomain resources associated with a host. + * The subdomains that are associated with this host. * @return a {@link SubdomainCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SubdomainCollectionResponse get() { return get(null); } /** - * Get the list of subdomain resources associated with a host. + * The subdomains that are associated with this host. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SubdomainCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SubdomainCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public SubdomainCollectionResponse get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, SubdomainCollectionResponse::createFromDiscriminatorValue); } /** - * Get the list of subdomain resources associated with a host. + * The subdomains that are associated with this host. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of subdomain resources associated with a host. + * The subdomains that are associated with this host. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public SubdomainsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new SubdomainsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of subdomain resources associated with a host. + * The subdomains that are associated with this host. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/trackers/TrackersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/trackers/TrackersRequestBuilder.java index 7dfd0967f7f..c46d66b83c0 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/trackers/TrackersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/trackers/TrackersRequestBuilder.java @@ -59,21 +59,19 @@ public TrackersRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/security/threatIntelligence/hosts/{host%2Did}/trackers{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of hostTracker resources. + * The hostTrackers that are associated with this host. * @return a {@link HostTrackerCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public HostTrackerCollectionResponse get() { return get(null); } /** - * Get a list of hostTracker resources. + * The hostTrackers that are associated with this host. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link HostTrackerCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public HostTrackerCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public HostTrackerCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, HostTrackerCollectionResponse::createFromDiscriminatorValue); } /** - * Get a list of hostTracker resources. + * The hostTrackers that are associated with this host. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of hostTracker resources. + * The hostTrackers that are associated with this host. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public TrackersRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new TrackersRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of hostTracker resources. + * The hostTrackers that are associated with this host. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/whois/WhoisRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/whois/WhoisRequestBuilder.java index af8952e391d..eb686697ab8 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/whois/WhoisRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosts/item/whois/WhoisRequestBuilder.java @@ -37,21 +37,19 @@ public WhoisRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/security/threatIntelligence/hosts/{host%2Did}/whois{?%24expand,%24select}", rawUrl); } /** - * Get the specified whoisRecord resource. Specify the desired whoisRecord in one of the following two ways:- Identify a host and get its current whoisRecord. - Specify an id value to get the corresponding whoisRecord. + * The most recent whoisRecord for this host. * @return a {@link WhoisRecord} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WhoisRecord get() { return get(null); } /** - * Get the specified whoisRecord resource. Specify the desired whoisRecord in one of the following two ways:- Identify a host and get its current whoisRecord. - Specify an id value to get the corresponding whoisRecord. + * The most recent whoisRecord for this host. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WhoisRecord} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WhoisRecord get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -61,7 +59,7 @@ public WhoisRecord get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.send(requestInfo, errorMapping, WhoisRecord::createFromDiscriminatorValue); } /** - * Get the specified whoisRecord resource. Specify the desired whoisRecord in one of the following two ways:- Identify a host and get its current whoisRecord. - Specify an id value to get the corresponding whoisRecord. + * The most recent whoisRecord for this host. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -69,7 +67,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the specified whoisRecord resource. Specify the desired whoisRecord in one of the following two ways:- Identify a host and get its current whoisRecord. - Specify an id value to get the corresponding whoisRecord. + * The most recent whoisRecord for this host. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -91,7 +89,7 @@ public WhoisRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new WhoisRequestBuilder(rawUrl, requestAdapter); } /** - * Get the specified whoisRecord resource. Specify the desired whoisRecord in one of the following two ways:- Identify a host and get its current whoisRecord. - Specify an id value to get the corresponding whoisRecord. + * The most recent whoisRecord for this host. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hostsslcertificates/HostSslCertificatesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hostsslcertificates/HostSslCertificatesRequestBuilder.java index b980f98709c..2e28038375d 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hostsslcertificates/HostSslCertificatesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hostsslcertificates/HostSslCertificatesRequestBuilder.java @@ -60,7 +60,7 @@ public HostSslCertificatesRequestBuilder(@jakarta.annotation.Nonnull final Strin super(requestAdapter, "{+baseurl}/security/threatIntelligence/hostSslCertificates{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the properties and relationships of a hostSslCertificate object. + * Retrieve details about hostSslCertificate objects.Note: List retrieval is not yet supported. * @return a {@link HostSslCertificateCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public HostSslCertificateCollectionResponse get() { return get(null); } /** - * Get the properties and relationships of a hostSslCertificate object. + * Retrieve details about hostSslCertificate objects.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link HostSslCertificateCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public HostSslCertificate post(@jakarta.annotation.Nonnull final HostSslCertific return this.requestAdapter.send(requestInfo, errorMapping, HostSslCertificate::createFromDiscriminatorValue); } /** - * Get the properties and relationships of a hostSslCertificate object. + * Retrieve details about hostSslCertificate objects.Note: List retrieval is not yet supported. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the properties and relationships of a hostSslCertificate object. + * Retrieve details about hostSslCertificate objects.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public HostSslCertificatesRequestBuilder withUrl(@jakarta.annotation.Nonnull fin return new HostSslCertificatesRequestBuilder(rawUrl, requestAdapter); } /** - * Get the properties and relationships of a hostSslCertificate object. + * Retrieve details about hostSslCertificate objects.Note: List retrieval is not yet supported. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hostsslcertificates/item/HostSslCertificateItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hostsslcertificates/item/HostSslCertificateItemRequestBuilder.java index da322fa01ae..45026768da0 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hostsslcertificates/item/HostSslCertificateItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hostsslcertificates/item/HostSslCertificateItemRequestBuilder.java @@ -73,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the properties and relationships of a hostSslCertificate object. + * Retrieve details about hostSslCertificate objects.Note: List retrieval is not yet supported. * @return a {@link HostSslCertificate} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public HostSslCertificate get() { return get(null); } /** - * Get the properties and relationships of a hostSslCertificate object. + * Retrieve details about hostSslCertificate objects.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link HostSslCertificate} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public HostSslCertificate get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -142,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the properties and relationships of a hostSslCertificate object. + * Retrieve details about hostSslCertificate objects.Note: List retrieval is not yet supported. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -150,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the properties and relationships of a hostSslCertificate object. + * Retrieve details about hostSslCertificate objects.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -202,7 +200,7 @@ public HostSslCertificateItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the properties and relationships of a hostSslCertificate object. + * Retrieve details about hostSslCertificate objects.Note: List retrieval is not yet supported. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosttrackers/HostTrackersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosttrackers/HostTrackersRequestBuilder.java index 346541d3ea8..54987b19fe8 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosttrackers/HostTrackersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosttrackers/HostTrackersRequestBuilder.java @@ -60,7 +60,7 @@ public HostTrackersRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/security/threatIntelligence/hostTrackers{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Read the properties and relationships of a hostTracker object. + * Retrieve details about hostTracker objects.Note: List retrieval is not yet supported. * @return a {@link HostTrackerCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public HostTrackerCollectionResponse get() { return get(null); } /** - * Read the properties and relationships of a hostTracker object. + * Retrieve details about hostTracker objects.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link HostTrackerCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public HostTracker post(@jakarta.annotation.Nonnull final HostTracker body, @jak return this.requestAdapter.send(requestInfo, errorMapping, HostTracker::createFromDiscriminatorValue); } /** - * Read the properties and relationships of a hostTracker object. + * Retrieve details about hostTracker objects.Note: List retrieval is not yet supported. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a hostTracker object. + * Retrieve details about hostTracker objects.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public HostTrackersRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri return new HostTrackersRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of a hostTracker object. + * Retrieve details about hostTracker objects.Note: List retrieval is not yet supported. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosttrackers/item/HostTrackerItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosttrackers/item/HostTrackerItemRequestBuilder.java index 3d12a5841a9..06c19a1c9b0 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosttrackers/item/HostTrackerItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/hosttrackers/item/HostTrackerItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a hostTracker object. + * Retrieve details about hostTracker objects.Note: List retrieval is not yet supported. * @return a {@link HostTracker} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public HostTracker get() { return get(null); } /** - * Read the properties and relationships of a hostTracker object. + * Retrieve details about hostTracker objects.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link HostTracker} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public HostTracker get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a hostTracker object. + * Retrieve details about hostTracker objects.Note: List retrieval is not yet supported. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a hostTracker object. + * Retrieve details about hostTracker objects.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public HostTrackerItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final S public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a hostTracker object. + * Retrieve details about hostTracker objects.Note: List retrieval is not yet supported. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/intelligenceprofileindicators/IntelligenceProfileIndicatorsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/intelligenceprofileindicators/IntelligenceProfileIndicatorsRequestBuilder.java index ef2387f609a..10d6a661b0f 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/intelligenceprofileindicators/IntelligenceProfileIndicatorsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/intelligenceprofileindicators/IntelligenceProfileIndicatorsRequestBuilder.java @@ -60,7 +60,7 @@ public IntelligenceProfileIndicatorsRequestBuilder(@jakarta.annotation.Nonnull f super(requestAdapter, "{+baseurl}/security/threatIntelligence/intelligenceProfileIndicators{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Read the properties and relationships of a intelligenceProfileIndicator object. + * Get intelligenceProfileIndicators from security * @return a {@link IntelligenceProfileIndicatorCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public IntelligenceProfileIndicatorCollectionResponse get() { return get(null); } /** - * Read the properties and relationships of a intelligenceProfileIndicator object. + * Get intelligenceProfileIndicators from security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link IntelligenceProfileIndicatorCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public IntelligenceProfileIndicator post(@jakarta.annotation.Nonnull final Intel return this.requestAdapter.send(requestInfo, errorMapping, IntelligenceProfileIndicator::createFromDiscriminatorValue); } /** - * Read the properties and relationships of a intelligenceProfileIndicator object. + * Get intelligenceProfileIndicators from security * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a intelligenceProfileIndicator object. + * Get intelligenceProfileIndicators from security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public IntelligenceProfileIndicatorsRequestBuilder withUrl(@jakarta.annotation.N return new IntelligenceProfileIndicatorsRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of a intelligenceProfileIndicator object. + * Get intelligenceProfileIndicators from security */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/intelligenceprofileindicators/item/IntelligenceProfileIndicatorItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/intelligenceprofileindicators/item/IntelligenceProfileIndicatorItemRequestBuilder.java index d0cddda8b74..9849f9fbc5b 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/intelligenceprofileindicators/item/IntelligenceProfileIndicatorItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/intelligenceprofileindicators/item/IntelligenceProfileIndicatorItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a intelligenceProfileIndicator object. + * Get intelligenceProfileIndicators from security * @return a {@link IntelligenceProfileIndicator} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IntelligenceProfileIndicator get() { return get(null); } /** - * Read the properties and relationships of a intelligenceProfileIndicator object. + * Get intelligenceProfileIndicators from security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link IntelligenceProfileIndicator} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IntelligenceProfileIndicator get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a intelligenceProfileIndicator object. + * Get intelligenceProfileIndicators from security * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a intelligenceProfileIndicator object. + * Get intelligenceProfileIndicators from security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public IntelligenceProfileIndicatorItemRequestBuilder withUrl(@jakarta.annotatio public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a intelligenceProfileIndicator object. + * Get intelligenceProfileIndicators from security */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/intelprofiles/IntelProfilesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/intelprofiles/IntelProfilesRequestBuilder.java index 2dd06fb4a37..959d6d74fe9 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/intelprofiles/IntelProfilesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/intelprofiles/IntelProfilesRequestBuilder.java @@ -60,21 +60,19 @@ public IntelProfilesRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/security/threatIntelligence/intelProfiles{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the intelligenceProfile objects and their properties. + * A list of intelligenceProfile objects. * @return a {@link IntelligenceProfileCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IntelligenceProfileCollectionResponse get() { return get(null); } /** - * Get a list of the intelligenceProfile objects and their properties. + * A list of intelligenceProfile objects. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link IntelligenceProfileCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IntelligenceProfileCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public IntelligenceProfile post(@jakarta.annotation.Nonnull final IntelligencePr return this.requestAdapter.send(requestInfo, errorMapping, IntelligenceProfile::createFromDiscriminatorValue); } /** - * Get a list of the intelligenceProfile objects and their properties. + * A list of intelligenceProfile objects. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the intelligenceProfile objects and their properties. + * A list of intelligenceProfile objects. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public IntelProfilesRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new IntelProfilesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the intelligenceProfile objects and their properties. + * A list of intelligenceProfile objects. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/intelprofiles/item/IntelligenceProfileItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/intelprofiles/item/IntelligenceProfileItemRequestBuilder.java index c62ad5b9e93..284c7b6d873 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/intelprofiles/item/IntelligenceProfileItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/intelprofiles/item/IntelligenceProfileItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a intelligenceProfile object. + * A list of intelligenceProfile objects. * @return a {@link IntelligenceProfile} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IntelligenceProfile get() { return get(null); } /** - * Read the properties and relationships of a intelligenceProfile object. + * A list of intelligenceProfile objects. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link IntelligenceProfile} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IntelligenceProfile get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a intelligenceProfile object. + * A list of intelligenceProfile objects. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a intelligenceProfile object. + * A list of intelligenceProfile objects. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public IntelligenceProfileItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a intelligenceProfile object. + * A list of intelligenceProfile objects. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/intelprofiles/item/indicators/IndicatorsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/intelprofiles/item/indicators/IndicatorsRequestBuilder.java index a8ff4f5cffc..0ee257ab034 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/intelprofiles/item/indicators/IndicatorsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/intelprofiles/item/indicators/IndicatorsRequestBuilder.java @@ -59,21 +59,19 @@ public IndicatorsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/security/threatIntelligence/intelProfiles/{intelligenceProfile%2Did}/indicators{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the intelligenceProfileIndicator resources from the indicators navigation property of an intelligenceProfile. + * Includes an assemblage of high-fidelity network indicators of compromise. * @return a {@link IntelligenceProfileIndicatorCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IntelligenceProfileIndicatorCollectionResponse get() { return get(null); } /** - * Get the intelligenceProfileIndicator resources from the indicators navigation property of an intelligenceProfile. + * Includes an assemblage of high-fidelity network indicators of compromise. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link IntelligenceProfileIndicatorCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public IntelligenceProfileIndicatorCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public IntelligenceProfileIndicatorCollectionResponse get(@jakarta.annotation.Nu return this.requestAdapter.send(requestInfo, errorMapping, IntelligenceProfileIndicatorCollectionResponse::createFromDiscriminatorValue); } /** - * Get the intelligenceProfileIndicator resources from the indicators navigation property of an intelligenceProfile. + * Includes an assemblage of high-fidelity network indicators of compromise. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the intelligenceProfileIndicator resources from the indicators navigation property of an intelligenceProfile. + * Includes an assemblage of high-fidelity network indicators of compromise. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public IndicatorsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new IndicatorsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the intelligenceProfileIndicator resources from the indicators navigation property of an intelligenceProfile. + * Includes an assemblage of high-fidelity network indicators of compromise. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/passivednsrecords/PassiveDnsRecordsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/passivednsrecords/PassiveDnsRecordsRequestBuilder.java index a077c9af391..3f6b10c1214 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/passivednsrecords/PassiveDnsRecordsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/passivednsrecords/PassiveDnsRecordsRequestBuilder.java @@ -60,7 +60,7 @@ public PassiveDnsRecordsRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/security/threatIntelligence/passiveDnsRecords{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Read the properties and relationships of a passiveDnsRecord object. + * Retrieve details about passiveDnsRecord objects.Note: List retrieval is not yet supported. * @return a {@link PassiveDnsRecordCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public PassiveDnsRecordCollectionResponse get() { return get(null); } /** - * Read the properties and relationships of a passiveDnsRecord object. + * Retrieve details about passiveDnsRecord objects.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PassiveDnsRecordCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public PassiveDnsRecord post(@jakarta.annotation.Nonnull final PassiveDnsRecord return this.requestAdapter.send(requestInfo, errorMapping, PassiveDnsRecord::createFromDiscriminatorValue); } /** - * Read the properties and relationships of a passiveDnsRecord object. + * Retrieve details about passiveDnsRecord objects.Note: List retrieval is not yet supported. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a passiveDnsRecord object. + * Retrieve details about passiveDnsRecord objects.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public PassiveDnsRecordsRequestBuilder withUrl(@jakarta.annotation.Nonnull final return new PassiveDnsRecordsRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of a passiveDnsRecord object. + * Retrieve details about passiveDnsRecord objects.Note: List retrieval is not yet supported. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/passivednsrecords/item/PassiveDnsRecordItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/passivednsrecords/item/PassiveDnsRecordItemRequestBuilder.java index 37280ee1a08..eb2ad838489 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/passivednsrecords/item/PassiveDnsRecordItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/passivednsrecords/item/PassiveDnsRecordItemRequestBuilder.java @@ -73,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a passiveDnsRecord object. + * Retrieve details about passiveDnsRecord objects.Note: List retrieval is not yet supported. * @return a {@link PassiveDnsRecord} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PassiveDnsRecord get() { return get(null); } /** - * Read the properties and relationships of a passiveDnsRecord object. + * Retrieve details about passiveDnsRecord objects.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PassiveDnsRecord} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PassiveDnsRecord get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -142,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a passiveDnsRecord object. + * Retrieve details about passiveDnsRecord objects.Note: List retrieval is not yet supported. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -150,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a passiveDnsRecord object. + * Retrieve details about passiveDnsRecord objects.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -202,7 +200,7 @@ public PassiveDnsRecordItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fi public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a passiveDnsRecord object. + * Retrieve details about passiveDnsRecord objects.Note: List retrieval is not yet supported. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/sslcertificates/SslCertificatesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/sslcertificates/SslCertificatesRequestBuilder.java index c53dc3e4f07..005cd6dc96e 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/sslcertificates/SslCertificatesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/sslcertificates/SslCertificatesRequestBuilder.java @@ -60,21 +60,19 @@ public SslCertificatesRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/security/threatIntelligence/sslCertificates{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of sslCertificate objects and their properties. + * Retrieve details about sslCertificate objects.Note: List retrieval is not yet supported. * @return a {@link SslCertificateCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SslCertificateCollectionResponse get() { return get(null); } /** - * Get a list of sslCertificate objects and their properties. + * Retrieve details about sslCertificate objects.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SslCertificateCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SslCertificateCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public SslCertificate post(@jakarta.annotation.Nonnull final SslCertificate body return this.requestAdapter.send(requestInfo, errorMapping, SslCertificate::createFromDiscriminatorValue); } /** - * Get a list of sslCertificate objects and their properties. + * Retrieve details about sslCertificate objects.Note: List retrieval is not yet supported. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of sslCertificate objects and their properties. + * Retrieve details about sslCertificate objects.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public SslCertificatesRequestBuilder withUrl(@jakarta.annotation.Nonnull final S return new SslCertificatesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of sslCertificate objects and their properties. + * Retrieve details about sslCertificate objects.Note: List retrieval is not yet supported. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/sslcertificates/item/SslCertificateItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/sslcertificates/item/SslCertificateItemRequestBuilder.java index 294bf6228ff..4238f76e5b3 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/sslcertificates/item/SslCertificateItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/sslcertificates/item/SslCertificateItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the properties and relationships of an sslCertificate object. + * Retrieve details about sslCertificate objects.Note: List retrieval is not yet supported. * @return a {@link SslCertificate} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SslCertificate get() { return get(null); } /** - * Get the properties and relationships of an sslCertificate object. + * Retrieve details about sslCertificate objects.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SslCertificate} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SslCertificate get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the properties and relationships of an sslCertificate object. + * Retrieve details about sslCertificate objects.Note: List retrieval is not yet supported. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the properties and relationships of an sslCertificate object. + * Retrieve details about sslCertificate objects.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public SslCertificateItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fina public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the properties and relationships of an sslCertificate object. + * Retrieve details about sslCertificate objects.Note: List retrieval is not yet supported. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/subdomains/SubdomainsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/subdomains/SubdomainsRequestBuilder.java index 6bcb521e991..4ca589b294a 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/subdomains/SubdomainsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/subdomains/SubdomainsRequestBuilder.java @@ -60,7 +60,7 @@ public SubdomainsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/security/threatIntelligence/subdomains{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Read the properties and relationships of a subdomain object. + * Retrieve details about the subdomain.Note: List retrieval is not yet supported. * @return a {@link SubdomainCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public SubdomainCollectionResponse get() { return get(null); } /** - * Read the properties and relationships of a subdomain object. + * Retrieve details about the subdomain.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SubdomainCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public Subdomain post(@jakarta.annotation.Nonnull final Subdomain body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, Subdomain::createFromDiscriminatorValue); } /** - * Read the properties and relationships of a subdomain object. + * Retrieve details about the subdomain.Note: List retrieval is not yet supported. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a subdomain object. + * Retrieve details about the subdomain.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public SubdomainsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new SubdomainsRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of a subdomain object. + * Retrieve details about the subdomain.Note: List retrieval is not yet supported. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/subdomains/item/SubdomainItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/subdomains/item/SubdomainItemRequestBuilder.java index cd7a0cd7884..692c3459cc8 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/subdomains/item/SubdomainItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/subdomains/item/SubdomainItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a subdomain object. + * Retrieve details about the subdomain.Note: List retrieval is not yet supported. * @return a {@link Subdomain} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Subdomain get() { return get(null); } /** - * Read the properties and relationships of a subdomain object. + * Retrieve details about the subdomain.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Subdomain} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Subdomain get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a subdomain object. + * Retrieve details about the subdomain.Note: List retrieval is not yet supported. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a subdomain object. + * Retrieve details about the subdomain.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public SubdomainItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a subdomain object. + * Retrieve details about the subdomain.Note: List retrieval is not yet supported. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/vulnerabilities/VulnerabilitiesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/vulnerabilities/VulnerabilitiesRequestBuilder.java index ed2332d72d3..a9e05404aff 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/vulnerabilities/VulnerabilitiesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/vulnerabilities/VulnerabilitiesRequestBuilder.java @@ -60,7 +60,7 @@ public VulnerabilitiesRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/security/threatIntelligence/vulnerabilities{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Read the properties and relationships of a vulnerability object. + * Retrieve details about vulnerabilities.Note: List retrieval is not yet supported. * @return a {@link VulnerabilityCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public VulnerabilityCollectionResponse get() { return get(null); } /** - * Read the properties and relationships of a vulnerability object. + * Retrieve details about vulnerabilities.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link VulnerabilityCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public Vulnerability post(@jakarta.annotation.Nonnull final Vulnerability body, return this.requestAdapter.send(requestInfo, errorMapping, Vulnerability::createFromDiscriminatorValue); } /** - * Read the properties and relationships of a vulnerability object. + * Retrieve details about vulnerabilities.Note: List retrieval is not yet supported. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a vulnerability object. + * Retrieve details about vulnerabilities.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public VulnerabilitiesRequestBuilder withUrl(@jakarta.annotation.Nonnull final S return new VulnerabilitiesRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of a vulnerability object. + * Retrieve details about vulnerabilities.Note: List retrieval is not yet supported. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/vulnerabilities/item/VulnerabilityItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/vulnerabilities/item/VulnerabilityItemRequestBuilder.java index bbfe2efe6ac..3569babc059 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/vulnerabilities/item/VulnerabilityItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/vulnerabilities/item/VulnerabilityItemRequestBuilder.java @@ -73,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a vulnerability object. + * Retrieve details about vulnerabilities.Note: List retrieval is not yet supported. * @return a {@link Vulnerability} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Vulnerability get() { return get(null); } /** - * Read the properties and relationships of a vulnerability object. + * Retrieve details about vulnerabilities.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Vulnerability} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Vulnerability get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -142,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a vulnerability object. + * Retrieve details about vulnerabilities.Note: List retrieval is not yet supported. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -150,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a vulnerability object. + * Retrieve details about vulnerabilities.Note: List retrieval is not yet supported. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -202,7 +200,7 @@ public VulnerabilityItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a vulnerability object. + * Retrieve details about vulnerabilities.Note: List retrieval is not yet supported. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/vulnerabilities/item/components/ComponentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/vulnerabilities/item/components/ComponentsRequestBuilder.java index 1ceadcded5f..1c03157b596 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/vulnerabilities/item/components/ComponentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/vulnerabilities/item/components/ComponentsRequestBuilder.java @@ -60,21 +60,19 @@ public ComponentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/security/threatIntelligence/vulnerabilities/{vulnerability%2Did}/components{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of vulnerabilityComponent objects related to a known vulnerability. + * Components related to this vulnerability article. * @return a {@link VulnerabilityComponentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public VulnerabilityComponentCollectionResponse get() { return get(null); } /** - * Get a list of vulnerabilityComponent objects related to a known vulnerability. + * Components related to this vulnerability article. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link VulnerabilityComponentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public VulnerabilityComponentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public VulnerabilityComponent post(@jakarta.annotation.Nonnull final Vulnerabili return this.requestAdapter.send(requestInfo, errorMapping, VulnerabilityComponent::createFromDiscriminatorValue); } /** - * Get a list of vulnerabilityComponent objects related to a known vulnerability. + * Components related to this vulnerability article. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of vulnerabilityComponent objects related to a known vulnerability. + * Components related to this vulnerability article. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public ComponentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ComponentsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of vulnerabilityComponent objects related to a known vulnerability. + * Components related to this vulnerability article. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/vulnerabilities/item/components/item/VulnerabilityComponentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/vulnerabilities/item/components/item/VulnerabilityComponentItemRequestBuilder.java index 1880e64e14d..e3b4f067497 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/vulnerabilities/item/components/item/VulnerabilityComponentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/vulnerabilities/item/components/item/VulnerabilityComponentItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a vulnerabilityComponent object. + * Components related to this vulnerability article. * @return a {@link VulnerabilityComponent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public VulnerabilityComponent get() { return get(null); } /** - * Read the properties and relationships of a vulnerabilityComponent object. + * Components related to this vulnerability article. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link VulnerabilityComponent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public VulnerabilityComponent get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a vulnerabilityComponent object. + * Components related to this vulnerability article. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a vulnerabilityComponent object. + * Components related to this vulnerability article. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public VulnerabilityComponentItemRequestBuilder withUrl(@jakarta.annotation.Nonn public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a vulnerabilityComponent object. + * Components related to this vulnerability article. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/whoisrecords/WhoisRecordsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/whoisrecords/WhoisRecordsRequestBuilder.java index 7829589df00..4fd0f98030b 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/whoisrecords/WhoisRecordsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/whoisrecords/WhoisRecordsRequestBuilder.java @@ -60,21 +60,19 @@ public WhoisRecordsRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/security/threatIntelligence/whoisRecords{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of whoisRecord objects. + * A list of whoisRecord objects. * @return a {@link WhoisRecordCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WhoisRecordCollectionResponse get() { return get(null); } /** - * Get a list of whoisRecord objects. + * A list of whoisRecord objects. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WhoisRecordCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WhoisRecordCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public WhoisRecord post(@jakarta.annotation.Nonnull final WhoisRecord body, @jak return this.requestAdapter.send(requestInfo, errorMapping, WhoisRecord::createFromDiscriminatorValue); } /** - * Get a list of whoisRecord objects. + * A list of whoisRecord objects. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of whoisRecord objects. + * A list of whoisRecord objects. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public WhoisRecordsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri return new WhoisRecordsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of whoisRecord objects. + * A list of whoisRecord objects. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/whoisrecords/item/WhoisRecordItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/whoisrecords/item/WhoisRecordItemRequestBuilder.java index 3f47bb616f4..a21605beae6 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/whoisrecords/item/WhoisRecordItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/whoisrecords/item/WhoisRecordItemRequestBuilder.java @@ -73,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the specified whoisRecord resource. Specify the desired whoisRecord in one of the following two ways:- Identify a host and get its current whoisRecord. - Specify an id value to get the corresponding whoisRecord. + * A list of whoisRecord objects. * @return a {@link WhoisRecord} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WhoisRecord get() { return get(null); } /** - * Get the specified whoisRecord resource. Specify the desired whoisRecord in one of the following two ways:- Identify a host and get its current whoisRecord. - Specify an id value to get the corresponding whoisRecord. + * A list of whoisRecord objects. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WhoisRecord} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WhoisRecord get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -142,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the specified whoisRecord resource. Specify the desired whoisRecord in one of the following two ways:- Identify a host and get its current whoisRecord. - Specify an id value to get the corresponding whoisRecord. + * A list of whoisRecord objects. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -150,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the specified whoisRecord resource. Specify the desired whoisRecord in one of the following two ways:- Identify a host and get its current whoisRecord. - Specify an id value to get the corresponding whoisRecord. + * A list of whoisRecord objects. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -202,7 +200,7 @@ public WhoisRecordItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final S public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the specified whoisRecord resource. Specify the desired whoisRecord in one of the following two ways:- Identify a host and get its current whoisRecord. - Specify an id value to get the corresponding whoisRecord. + * A list of whoisRecord objects. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/whoisrecords/item/history/HistoryRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/whoisrecords/item/history/HistoryRequestBuilder.java index a998492a0b3..8859d95c1de 100644 --- a/src/main/java/com/microsoft/graph/generated/security/threatintelligence/whoisrecords/item/history/HistoryRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/threatintelligence/whoisrecords/item/history/HistoryRequestBuilder.java @@ -59,21 +59,19 @@ public HistoryRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/security/threatIntelligence/whoisRecords/{whoisRecord%2Did}/history{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the history for a whoisRecord, as represented by a collection of whoisHistoryRecord resources. + * The collection of historical records associated to this WHOIS object. * @return a {@link WhoisHistoryRecordCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WhoisHistoryRecordCollectionResponse get() { return get(null); } /** - * Get the history for a whoisRecord, as represented by a collection of whoisHistoryRecord resources. + * The collection of historical records associated to this WHOIS object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WhoisHistoryRecordCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WhoisHistoryRecordCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public WhoisHistoryRecordCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, WhoisHistoryRecordCollectionResponse::createFromDiscriminatorValue); } /** - * Get the history for a whoisRecord, as represented by a collection of whoisHistoryRecord resources. + * The collection of historical records associated to this WHOIS object. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the history for a whoisRecord, as represented by a collection of whoisHistoryRecord resources. + * The collection of historical records associated to this WHOIS object. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public HistoryRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new HistoryRequestBuilder(rawUrl, requestAdapter); } /** - * Get the history for a whoisRecord, as represented by a collection of whoisHistoryRecord resources. + * The collection of historical records associated to this WHOIS object. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/triggers/retentionevents/RetentionEventsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/triggers/retentionevents/RetentionEventsRequestBuilder.java index c8f41668368..cf43255ca23 100644 --- a/src/main/java/com/microsoft/graph/generated/security/triggers/retentionevents/RetentionEventsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/triggers/retentionevents/RetentionEventsRequestBuilder.java @@ -60,21 +60,19 @@ public RetentionEventsRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/security/triggers/retentionEvents{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the retentionEvent objects and their properties. + * Get retentionEvents from security * @return a {@link RetentionEventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RetentionEventCollectionResponse get() { return get(null); } /** - * Get a list of the retentionEvent objects and their properties. + * Get retentionEvents from security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RetentionEventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RetentionEventCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public RetentionEventCollectionResponse get(@jakarta.annotation.Nullable final j return this.requestAdapter.send(requestInfo, errorMapping, RetentionEventCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new retentionEvent object. + * Create new navigation property to retentionEvents for security * @param body The request body * @return a {@link RetentionEvent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RetentionEvent post(@jakarta.annotation.Nonnull final RetentionEvent body) { return post(body, null); } /** - * Create a new retentionEvent object. + * Create new navigation property to retentionEvents for security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RetentionEvent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RetentionEvent post(@jakarta.annotation.Nonnull final RetentionEvent body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public RetentionEvent post(@jakarta.annotation.Nonnull final RetentionEvent body return this.requestAdapter.send(requestInfo, errorMapping, RetentionEvent::createFromDiscriminatorValue); } /** - * Get a list of the retentionEvent objects and their properties. + * Get retentionEvents from security * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the retentionEvent objects and their properties. + * Get retentionEvents from security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new retentionEvent object. + * Create new navigation property to retentionEvents for security * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new retentionEvent object. + * Create new navigation property to retentionEvents for security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public RetentionEventsRequestBuilder withUrl(@jakarta.annotation.Nonnull final S return new RetentionEventsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the retentionEvent objects and their properties. + * Get retentionEvents from security */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/triggers/retentionevents/item/RetentionEventItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/triggers/retentionevents/item/RetentionEventItemRequestBuilder.java index 61f7764dce6..13bb9273470 100644 --- a/src/main/java/com/microsoft/graph/generated/security/triggers/retentionevents/item/RetentionEventItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/triggers/retentionevents/item/RetentionEventItemRequestBuilder.java @@ -46,18 +46,16 @@ public RetentionEventItemRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/security/triggers/retentionEvents/{retentionEvent%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a retentionEvent object. + * Delete navigation property retentionEvents for security * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a retentionEvent object. + * Delete navigation property retentionEvents for security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a retentionEvent object. + * Get retentionEvents from security * @return a {@link RetentionEvent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RetentionEvent get() { return get(null); } /** - * Read the properties and relationships of a retentionEvent object. + * Get retentionEvents from security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RetentionEvent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RetentionEvent get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -115,7 +111,7 @@ public RetentionEvent patch(@jakarta.annotation.Nonnull final RetentionEvent bod return this.requestAdapter.send(requestInfo, errorMapping, RetentionEvent::createFromDiscriminatorValue); } /** - * Delete a retentionEvent object. + * Delete navigation property retentionEvents for security * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -123,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a retentionEvent object. + * Delete navigation property retentionEvents for security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -135,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a retentionEvent object. + * Get retentionEvents from security * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a retentionEvent object. + * Get retentionEvents from security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -195,7 +191,7 @@ public RetentionEventItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fina public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a retentionEvent object. + * Get retentionEvents from security */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/triggertypes/retentioneventtypes/RetentionEventTypesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/triggertypes/retentioneventtypes/RetentionEventTypesRequestBuilder.java index 17685296e39..b724fa6cb52 100644 --- a/src/main/java/com/microsoft/graph/generated/security/triggertypes/retentioneventtypes/RetentionEventTypesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/triggertypes/retentioneventtypes/RetentionEventTypesRequestBuilder.java @@ -60,21 +60,19 @@ public RetentionEventTypesRequestBuilder(@jakarta.annotation.Nonnull final Strin super(requestAdapter, "{+baseurl}/security/triggerTypes/retentionEventTypes{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the retentionEventType objects and their properties. + * Get retentionEventTypes from security * @return a {@link RetentionEventTypeCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RetentionEventTypeCollectionResponse get() { return get(null); } /** - * Get a list of the retentionEventType objects and their properties. + * Get retentionEventTypes from security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RetentionEventTypeCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RetentionEventTypeCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public RetentionEventTypeCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, RetentionEventTypeCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new retentionEventType object. + * Create new navigation property to retentionEventTypes for security * @param body The request body * @return a {@link RetentionEventType} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RetentionEventType post(@jakarta.annotation.Nonnull final RetentionEventType body) { return post(body, null); } /** - * Create a new retentionEventType object. + * Create new navigation property to retentionEventTypes for security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RetentionEventType} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RetentionEventType post(@jakarta.annotation.Nonnull final RetentionEventType body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public RetentionEventType post(@jakarta.annotation.Nonnull final RetentionEventT return this.requestAdapter.send(requestInfo, errorMapping, RetentionEventType::createFromDiscriminatorValue); } /** - * Get a list of the retentionEventType objects and their properties. + * Get retentionEventTypes from security * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the retentionEventType objects and their properties. + * Get retentionEventTypes from security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new retentionEventType object. + * Create new navigation property to retentionEventTypes for security * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new retentionEventType object. + * Create new navigation property to retentionEventTypes for security * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public RetentionEventTypesRequestBuilder withUrl(@jakarta.annotation.Nonnull fin return new RetentionEventTypesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the retentionEventType objects and their properties. + * Get retentionEventTypes from security */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/security/triggertypes/retentioneventtypes/item/RetentionEventTypeItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/security/triggertypes/retentioneventtypes/item/RetentionEventTypeItemRequestBuilder.java index bc6ec0f198b..4b2357f9ff1 100644 --- a/src/main/java/com/microsoft/graph/generated/security/triggertypes/retentioneventtypes/item/RetentionEventTypeItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/security/triggertypes/retentioneventtypes/item/RetentionEventTypeItemRequestBuilder.java @@ -37,18 +37,16 @@ public RetentionEventTypeItemRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/security/triggerTypes/retentionEventTypes/{retentionEventType%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a retentionEventType object. + * Delete navigation property retentionEventTypes for security * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a retentionEventType object. + * Delete navigation property retentionEventTypes for security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a retentionEventType object. + * Get retentionEventTypes from security * @return a {@link RetentionEventType} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RetentionEventType get() { return get(null); } /** - * Read the properties and relationships of a retentionEventType object. + * Get retentionEventTypes from security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RetentionEventType} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RetentionEventType get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -106,7 +102,7 @@ public RetentionEventType patch(@jakarta.annotation.Nonnull final RetentionEvent return this.requestAdapter.send(requestInfo, errorMapping, RetentionEventType::createFromDiscriminatorValue); } /** - * Delete a retentionEventType object. + * Delete navigation property retentionEventTypes for security * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -114,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a retentionEventType object. + * Delete navigation property retentionEventTypes for security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a retentionEventType object. + * Get retentionEventTypes from security * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a retentionEventType object. + * Get retentionEventTypes from security * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public RetentionEventTypeItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a retentionEventType object. + * Get retentionEventTypes from security */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/serviceprincipals/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/serviceprincipals/delta/DeltaRequestBuilder.java index aa0a1cbc461..9eab09dbc34 100644 --- a/src/main/java/com/microsoft/graph/generated/serviceprincipals/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/serviceprincipals/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/servicePrincipals/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Get newly created, updated, or deleted service principals without having to perform a full read of the entire resource collection. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Get newly created, updated, or deleted service principals without having to perform a full read of the entire resource collection. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Get newly created, updated, or deleted service principals without having to perform a full read of the entire resource collection. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Get newly created, updated, or deleted service principals without having to perform a full read of the entire resource collection. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Get newly created, updated, or deleted service principals without having to perform a full read of the entire resource collection. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/approleassignedto/AppRoleAssignedToRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/approleassignedto/AppRoleAssignedToRequestBuilder.java index b8d3a24e37f..ce7eae40a91 100644 --- a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/approleassignedto/AppRoleAssignedToRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/approleassignedto/AppRoleAssignedToRequestBuilder.java @@ -60,21 +60,19 @@ public AppRoleAssignedToRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/servicePrincipals/{servicePrincipal%2Did}/appRoleAssignedTo{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of appRoleAssignment that users, groups, or client service principals have been granted for the given resource service principal. For example, if the resource service principal is the service principal for the Microsoft Graph API, this will return all service principals that have been granted any app-only permissions to Microsoft Graph. If the resource service principal is an application that has app roles granted to users and groups, this will return all the users and groups assigned app roles for this application. + * App role assignments for this app or service, granted to users, groups, and other service principals. Supports $expand. * @return a {@link AppRoleAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AppRoleAssignmentCollectionResponse get() { return get(null); } /** - * Retrieve a list of appRoleAssignment that users, groups, or client service principals have been granted for the given resource service principal. For example, if the resource service principal is the service principal for the Microsoft Graph API, this will return all service principals that have been granted any app-only permissions to Microsoft Graph. If the resource service principal is an application that has app roles granted to users and groups, this will return all the users and groups assigned app roles for this application. + * App role assignments for this app or service, granted to users, groups, and other service principals. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AppRoleAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AppRoleAssignmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public AppRoleAssignmentCollectionResponse get(@jakarta.annotation.Nullable fina return this.requestAdapter.send(requestInfo, errorMapping, AppRoleAssignmentCollectionResponse::createFromDiscriminatorValue); } /** - * Assign an app role for a resource service principal, to a user, group, or client service principal. App roles that are assigned to service principals are also known as application permissions. Application permissions can be granted directly with app role assignments, or through a consent experience. To grant an app role assignment, you need three identifiers: + * Create new navigation property to appRoleAssignedTo for servicePrincipals * @param body The request body * @return a {@link AppRoleAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AppRoleAssignment post(@jakarta.annotation.Nonnull final AppRoleAssignment body) { return post(body, null); } /** - * Assign an app role for a resource service principal, to a user, group, or client service principal. App roles that are assigned to service principals are also known as application permissions. Application permissions can be granted directly with app role assignments, or through a consent experience. To grant an app role assignment, you need three identifiers: + * Create new navigation property to appRoleAssignedTo for servicePrincipals * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AppRoleAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AppRoleAssignment post(@jakarta.annotation.Nonnull final AppRoleAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public AppRoleAssignment post(@jakarta.annotation.Nonnull final AppRoleAssignmen return this.requestAdapter.send(requestInfo, errorMapping, AppRoleAssignment::createFromDiscriminatorValue); } /** - * Retrieve a list of appRoleAssignment that users, groups, or client service principals have been granted for the given resource service principal. For example, if the resource service principal is the service principal for the Microsoft Graph API, this will return all service principals that have been granted any app-only permissions to Microsoft Graph. If the resource service principal is an application that has app roles granted to users and groups, this will return all the users and groups assigned app roles for this application. + * App role assignments for this app or service, granted to users, groups, and other service principals. Supports $expand. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of appRoleAssignment that users, groups, or client service principals have been granted for the given resource service principal. For example, if the resource service principal is the service principal for the Microsoft Graph API, this will return all service principals that have been granted any app-only permissions to Microsoft Graph. If the resource service principal is an application that has app roles granted to users and groups, this will return all the users and groups assigned app roles for this application. + * App role assignments for this app or service, granted to users, groups, and other service principals. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Assign an app role for a resource service principal, to a user, group, or client service principal. App roles that are assigned to service principals are also known as application permissions. Application permissions can be granted directly with app role assignments, or through a consent experience. To grant an app role assignment, you need three identifiers: + * Create new navigation property to appRoleAssignedTo for servicePrincipals * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Assign an app role for a resource service principal, to a user, group, or client service principal. App roles that are assigned to service principals are also known as application permissions. Application permissions can be granted directly with app role assignments, or through a consent experience. To grant an app role assignment, you need three identifiers: + * Create new navigation property to appRoleAssignedTo for servicePrincipals * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public AppRoleAssignedToRequestBuilder withUrl(@jakarta.annotation.Nonnull final return new AppRoleAssignedToRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of appRoleAssignment that users, groups, or client service principals have been granted for the given resource service principal. For example, if the resource service principal is the service principal for the Microsoft Graph API, this will return all service principals that have been granted any app-only permissions to Microsoft Graph. If the resource service principal is an application that has app roles granted to users and groups, this will return all the users and groups assigned app roles for this application. + * App role assignments for this app or service, granted to users, groups, and other service principals. Supports $expand. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/approleassignedto/item/AppRoleAssignmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/approleassignedto/item/AppRoleAssignmentItemRequestBuilder.java index e30e9c16845..466d41d162e 100644 --- a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/approleassignedto/item/AppRoleAssignmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/approleassignedto/item/AppRoleAssignmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public AppRoleAssignmentItemRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/servicePrincipals/{servicePrincipal%2Did}/appRoleAssignedTo/{appRoleAssignment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes an appRoleAssignment that a user, group, or client service principal has been granted for a resource service principal. + * Delete navigation property appRoleAssignedTo for servicePrincipals * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes an appRoleAssignment that a user, group, or client service principal has been granted for a resource service principal. + * Delete navigation property appRoleAssignedTo for servicePrincipals * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -104,7 +102,7 @@ public AppRoleAssignment patch(@jakarta.annotation.Nonnull final AppRoleAssignme return this.requestAdapter.send(requestInfo, errorMapping, AppRoleAssignment::createFromDiscriminatorValue); } /** - * Deletes an appRoleAssignment that a user, group, or client service principal has been granted for a resource service principal. + * Delete navigation property appRoleAssignedTo for servicePrincipals * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -112,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes an appRoleAssignment that a user, group, or client service principal has been granted for a resource service principal. + * Delete navigation property appRoleAssignedTo for servicePrincipals * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/approleassignments/AppRoleAssignmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/approleassignments/AppRoleAssignmentsRequestBuilder.java index a4b01bc094f..a74440abbc6 100644 --- a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/approleassignments/AppRoleAssignmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/approleassignments/AppRoleAssignmentsRequestBuilder.java @@ -63,7 +63,6 @@ public AppRoleAssignmentsRequestBuilder(@jakarta.annotation.Nonnull final String * App role assignment for another app or service, granted to this service principal. Supports $expand. * @return a {@link AppRoleAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AppRoleAssignmentCollectionResponse get() { @@ -74,7 +73,6 @@ public AppRoleAssignmentCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AppRoleAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AppRoleAssignmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public AppRoleAssignmentCollectionResponse get(@jakarta.annotation.Nullable fina return this.requestAdapter.send(requestInfo, errorMapping, AppRoleAssignmentCollectionResponse::createFromDiscriminatorValue); } /** - * Assign an app role to a client service principal. App roles that are assigned to service principals are also known as application permissions. Application permissions can be granted directly with app role assignments, or through a consent experience. To grant an app role assignment to a client service principal, you need three identifiers: + * Create new navigation property to appRoleAssignments for servicePrincipals * @param body The request body * @return a {@link AppRoleAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AppRoleAssignment post(@jakarta.annotation.Nonnull final AppRoleAssignment body) { return post(body, null); } /** - * Assign an app role to a client service principal. App roles that are assigned to service principals are also known as application permissions. Application permissions can be granted directly with app role assignments, or through a consent experience. To grant an app role assignment to a client service principal, you need three identifiers: + * Create new navigation property to appRoleAssignments for servicePrincipals * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AppRoleAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AppRoleAssignment post(@jakarta.annotation.Nonnull final AppRoleAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Assign an app role to a client service principal. App roles that are assigned to service principals are also known as application permissions. Application permissions can be granted directly with app role assignments, or through a consent experience. To grant an app role assignment to a client service principal, you need three identifiers: + * Create new navigation property to appRoleAssignments for servicePrincipals * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Assign an app role to a client service principal. App roles that are assigned to service principals are also known as application permissions. Application permissions can be granted directly with app role assignments, or through a consent experience. To grant an app role assignment to a client service principal, you need three identifiers: + * Create new navigation property to appRoleAssignments for servicePrincipals * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/approleassignments/item/AppRoleAssignmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/approleassignments/item/AppRoleAssignmentItemRequestBuilder.java index 8a752207647..7976e4fafea 100644 --- a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/approleassignments/item/AppRoleAssignmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/approleassignments/item/AppRoleAssignmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public AppRoleAssignmentItemRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/servicePrincipals/{servicePrincipal%2Did}/appRoleAssignments/{appRoleAssignment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes an appRoleAssignment that a service principal has been granted. App roles which are assigned to service principals are also known as application permissions. Deleting an app role assignment for a service principal is equivalent to revoking the app-only permission grant. + * Delete navigation property appRoleAssignments for servicePrincipals * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes an appRoleAssignment that a service principal has been granted. App roles which are assigned to service principals are also known as application permissions. Deleting an app role assignment for a service principal is equivalent to revoking the app-only permission grant. + * Delete navigation property appRoleAssignments for servicePrincipals * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -104,7 +102,7 @@ public AppRoleAssignment patch(@jakarta.annotation.Nonnull final AppRoleAssignme return this.requestAdapter.send(requestInfo, errorMapping, AppRoleAssignment::createFromDiscriminatorValue); } /** - * Deletes an appRoleAssignment that a service principal has been granted. App roles which are assigned to service principals are also known as application permissions. Deleting an app role assignment for a service principal is equivalent to revoking the app-only permission grant. + * Delete navigation property appRoleAssignments for servicePrincipals * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -112,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes an appRoleAssignment that a service principal has been granted. App roles which are assigned to service principals are also known as application permissions. Deleting an app role assignment for a service principal is equivalent to revoking the app-only permission grant. + * Delete navigation property appRoleAssignments for servicePrincipals * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/claimsmappingpolicies/ClaimsMappingPoliciesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/claimsmappingpolicies/ClaimsMappingPoliciesRequestBuilder.java index f9d808dc8c3..af35a22ea99 100644 --- a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/claimsmappingpolicies/ClaimsMappingPoliciesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/claimsmappingpolicies/ClaimsMappingPoliciesRequestBuilder.java @@ -68,21 +68,19 @@ public ClaimsMappingPoliciesRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/servicePrincipals/{servicePrincipal%2Did}/claimsMappingPolicies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List the claimsMappingPolicy objects that are assigned to a servicePrincipal. + * The claimsMappingPolicies assigned to this service principal. Supports $expand. * @return a {@link ClaimsMappingPolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ClaimsMappingPolicyCollectionResponse get() { return get(null); } /** - * List the claimsMappingPolicy objects that are assigned to a servicePrincipal. + * The claimsMappingPolicies assigned to this service principal. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ClaimsMappingPolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ClaimsMappingPolicyCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -92,7 +90,7 @@ public ClaimsMappingPolicyCollectionResponse get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, ClaimsMappingPolicyCollectionResponse::createFromDiscriminatorValue); } /** - * List the claimsMappingPolicy objects that are assigned to a servicePrincipal. + * The claimsMappingPolicies assigned to this service principal. Supports $expand. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -100,7 +98,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List the claimsMappingPolicy objects that are assigned to a servicePrincipal. + * The claimsMappingPolicies assigned to this service principal. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -122,7 +120,7 @@ public ClaimsMappingPoliciesRequestBuilder withUrl(@jakarta.annotation.Nonnull f return new ClaimsMappingPoliciesRequestBuilder(rawUrl, requestAdapter); } /** - * List the claimsMappingPolicy objects that are assigned to a servicePrincipal. + * The claimsMappingPolicies assigned to this service principal. Supports $expand. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/claimsmappingpolicies/item/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/claimsmappingpolicies/item/ref/RefRequestBuilder.java index 971b21823e4..38d61d7b9c8 100644 --- a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/claimsmappingpolicies/item/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/claimsmappingpolicies/item/ref/RefRequestBuilder.java @@ -35,18 +35,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/servicePrincipals/{servicePrincipal%2Did}/claimsMappingPolicies/{claimsMappingPolicy%2Did}/$ref", rawUrl); } /** - * Remove a claimsMappingPolicy from a servicePrincipal. + * Delete ref of navigation property claimsMappingPolicies for servicePrincipals * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove a claimsMappingPolicy from a servicePrincipal. + * Delete ref of navigation property claimsMappingPolicies for servicePrincipals * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -55,7 +53,7 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove a claimsMappingPolicy from a servicePrincipal. + * Delete ref of navigation property claimsMappingPolicies for servicePrincipals * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -63,7 +61,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove a claimsMappingPolicy from a servicePrincipal. + * Delete ref of navigation property claimsMappingPolicies for servicePrincipals * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/claimsmappingpolicies/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/claimsmappingpolicies/ref/RefRequestBuilder.java index 67681d36c26..b0125d11b59 100644 --- a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/claimsmappingpolicies/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/claimsmappingpolicies/ref/RefRequestBuilder.java @@ -38,18 +38,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/servicePrincipals/{servicePrincipal%2Did}/claimsMappingPolicies/$ref?@id={%40id}{&%24count,%24filter,%24orderby,%24search,%24skip,%24top}", rawUrl); } /** - * Remove a claimsMappingPolicy from a servicePrincipal. + * Delete ref of navigation property claimsMappingPolicies for servicePrincipals * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove a claimsMappingPolicy from a servicePrincipal. + * Delete ref of navigation property claimsMappingPolicies for servicePrincipals * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -58,21 +56,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * List the claimsMappingPolicy objects that are assigned to a servicePrincipal. + * The claimsMappingPolicies assigned to this service principal. Supports $expand. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get() { return get(null); } /** - * List the claimsMappingPolicy objects that are assigned to a servicePrincipal. + * The claimsMappingPolicies assigned to this service principal. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -82,20 +78,18 @@ public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util return this.requestAdapter.send(requestInfo, errorMapping, StringCollectionResponse::createFromDiscriminatorValue); } /** - * Assign a claimsMappingPolicy to a servicePrincipal. + * Create new navigation property ref to claimsMappingPolicies for servicePrincipals * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body) { post(body, null); } /** - * Assign a claimsMappingPolicy to a servicePrincipal. + * Create new navigation property ref to claimsMappingPolicies for servicePrincipals * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { Objects.requireNonNull(body); @@ -105,7 +99,7 @@ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakart this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove a claimsMappingPolicy from a servicePrincipal. + * Delete ref of navigation property claimsMappingPolicies for servicePrincipals * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -113,7 +107,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove a claimsMappingPolicy from a servicePrincipal. + * Delete ref of navigation property claimsMappingPolicies for servicePrincipals * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * List the claimsMappingPolicy objects that are assigned to a servicePrincipal. + * The claimsMappingPolicies assigned to this service principal. Supports $expand. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -133,7 +127,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List the claimsMappingPolicy objects that are assigned to a servicePrincipal. + * The claimsMappingPolicies assigned to this service principal. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Assign a claimsMappingPolicy to a servicePrincipal. + * Create new navigation property ref to claimsMappingPolicies for servicePrincipals * @param body The request body * @return a {@link RequestInformation} */ @@ -154,7 +148,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Assign a claimsMappingPolicy to a servicePrincipal. + * Create new navigation property ref to claimsMappingPolicies for servicePrincipals * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -179,7 +173,7 @@ public RefRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl return new RefRequestBuilder(rawUrl, requestAdapter); } /** - * Remove a claimsMappingPolicy from a servicePrincipal. + * Delete ref of navigation property claimsMappingPolicies for servicePrincipals */ @jakarta.annotation.Generated("com.microsoft.kiota") public class DeleteQueryParameters implements QueryParameters { @@ -211,7 +205,7 @@ public class DeleteRequestConfiguration extends BaseRequestConfiguration { public DeleteQueryParameters queryParameters = new DeleteQueryParameters(); } /** - * List the claimsMappingPolicy objects that are assigned to a servicePrincipal. + * The claimsMappingPolicies assigned to this service principal. Supports $expand. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/delegatedpermissionclassifications/DelegatedPermissionClassificationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/delegatedpermissionclassifications/DelegatedPermissionClassificationsRequestBuilder.java index 2c830ce61a9..d4515460410 100644 --- a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/delegatedpermissionclassifications/DelegatedPermissionClassificationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/delegatedpermissionclassifications/DelegatedPermissionClassificationsRequestBuilder.java @@ -60,21 +60,19 @@ public DelegatedPermissionClassificationsRequestBuilder(@jakarta.annotation.Nonn super(requestAdapter, "{+baseurl}/servicePrincipals/{servicePrincipal%2Did}/delegatedPermissionClassifications{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of delegatedPermissionClassification currently configured for the delegated permissions exposed by an API. + * Get delegatedPermissionClassifications from servicePrincipals * @return a {@link DelegatedPermissionClassificationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DelegatedPermissionClassificationCollectionResponse get() { return get(null); } /** - * Retrieve the list of delegatedPermissionClassification currently configured for the delegated permissions exposed by an API. + * Get delegatedPermissionClassifications from servicePrincipals * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DelegatedPermissionClassificationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DelegatedPermissionClassificationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public DelegatedPermissionClassificationCollectionResponse get(@jakarta.annotati return this.requestAdapter.send(requestInfo, errorMapping, DelegatedPermissionClassificationCollectionResponse::createFromDiscriminatorValue); } /** - * Classify a delegated permission by adding a delegatedPermissionClassification to the servicePrincipal representing the API. + * Create new navigation property to delegatedPermissionClassifications for servicePrincipals * @param body The request body * @return a {@link DelegatedPermissionClassification} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DelegatedPermissionClassification post(@jakarta.annotation.Nonnull final DelegatedPermissionClassification body) { return post(body, null); } /** - * Classify a delegated permission by adding a delegatedPermissionClassification to the servicePrincipal representing the API. + * Create new navigation property to delegatedPermissionClassifications for servicePrincipals * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DelegatedPermissionClassification} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DelegatedPermissionClassification post(@jakarta.annotation.Nonnull final DelegatedPermissionClassification body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public DelegatedPermissionClassification post(@jakarta.annotation.Nonnull final return this.requestAdapter.send(requestInfo, errorMapping, DelegatedPermissionClassification::createFromDiscriminatorValue); } /** - * Retrieve the list of delegatedPermissionClassification currently configured for the delegated permissions exposed by an API. + * Get delegatedPermissionClassifications from servicePrincipals * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of delegatedPermissionClassification currently configured for the delegated permissions exposed by an API. + * Get delegatedPermissionClassifications from servicePrincipals * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Classify a delegated permission by adding a delegatedPermissionClassification to the servicePrincipal representing the API. + * Create new navigation property to delegatedPermissionClassifications for servicePrincipals * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Classify a delegated permission by adding a delegatedPermissionClassification to the servicePrincipal representing the API. + * Create new navigation property to delegatedPermissionClassifications for servicePrincipals * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public DelegatedPermissionClassificationsRequestBuilder withUrl(@jakarta.annotat return new DelegatedPermissionClassificationsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of delegatedPermissionClassification currently configured for the delegated permissions exposed by an API. + * Get delegatedPermissionClassifications from servicePrincipals */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/delegatedpermissionclassifications/item/DelegatedPermissionClassificationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/delegatedpermissionclassifications/item/DelegatedPermissionClassificationItemRequestBuilder.java index 64202d2dd3c..0c5def11db3 100644 --- a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/delegatedpermissionclassifications/item/DelegatedPermissionClassificationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/delegatedpermissionclassifications/item/DelegatedPermissionClassificationItemRequestBuilder.java @@ -37,18 +37,16 @@ public DelegatedPermissionClassificationItemRequestBuilder(@jakarta.annotation.N super(requestAdapter, "{+baseurl}/servicePrincipals/{servicePrincipal%2Did}/delegatedPermissionClassifications/{delegatedPermissionClassification%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a delegatedPermissionClassification which had previously been set for a delegated permission. + * Delete navigation property delegatedPermissionClassifications for servicePrincipals * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a delegatedPermissionClassification which had previously been set for a delegated permission. + * Delete navigation property delegatedPermissionClassifications for servicePrincipals * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -104,7 +102,7 @@ public DelegatedPermissionClassification patch(@jakarta.annotation.Nonnull final return this.requestAdapter.send(requestInfo, errorMapping, DelegatedPermissionClassification::createFromDiscriminatorValue); } /** - * Deletes a delegatedPermissionClassification which had previously been set for a delegated permission. + * Delete navigation property delegatedPermissionClassifications for servicePrincipals * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -112,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a delegatedPermissionClassification which had previously been set for a delegated permission. + * Delete navigation property delegatedPermissionClassifications for servicePrincipals * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/homerealmdiscoverypolicies/HomeRealmDiscoveryPoliciesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/homerealmdiscoverypolicies/HomeRealmDiscoveryPoliciesRequestBuilder.java index 6bdbf6a7f5b..fbd216e3c4f 100644 --- a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/homerealmdiscoverypolicies/HomeRealmDiscoveryPoliciesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/homerealmdiscoverypolicies/HomeRealmDiscoveryPoliciesRequestBuilder.java @@ -68,21 +68,19 @@ public HomeRealmDiscoveryPoliciesRequestBuilder(@jakarta.annotation.Nonnull fina super(requestAdapter, "{+baseurl}/servicePrincipals/{servicePrincipal%2Did}/homeRealmDiscoveryPolicies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List the homeRealmDiscoveryPolicy objects that are assigned to a servicePrincipal. + * The homeRealmDiscoveryPolicies assigned to this service principal. Supports $expand. * @return a {@link HomeRealmDiscoveryPolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public HomeRealmDiscoveryPolicyCollectionResponse get() { return get(null); } /** - * List the homeRealmDiscoveryPolicy objects that are assigned to a servicePrincipal. + * The homeRealmDiscoveryPolicies assigned to this service principal. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link HomeRealmDiscoveryPolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public HomeRealmDiscoveryPolicyCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -92,7 +90,7 @@ public HomeRealmDiscoveryPolicyCollectionResponse get(@jakarta.annotation.Nullab return this.requestAdapter.send(requestInfo, errorMapping, HomeRealmDiscoveryPolicyCollectionResponse::createFromDiscriminatorValue); } /** - * List the homeRealmDiscoveryPolicy objects that are assigned to a servicePrincipal. + * The homeRealmDiscoveryPolicies assigned to this service principal. Supports $expand. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -100,7 +98,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List the homeRealmDiscoveryPolicy objects that are assigned to a servicePrincipal. + * The homeRealmDiscoveryPolicies assigned to this service principal. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -122,7 +120,7 @@ public HomeRealmDiscoveryPoliciesRequestBuilder withUrl(@jakarta.annotation.Nonn return new HomeRealmDiscoveryPoliciesRequestBuilder(rawUrl, requestAdapter); } /** - * List the homeRealmDiscoveryPolicy objects that are assigned to a servicePrincipal. + * The homeRealmDiscoveryPolicies assigned to this service principal. Supports $expand. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/homerealmdiscoverypolicies/item/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/homerealmdiscoverypolicies/item/ref/RefRequestBuilder.java index bdd8b6ab670..8ebe5ac836b 100644 --- a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/homerealmdiscoverypolicies/item/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/homerealmdiscoverypolicies/item/ref/RefRequestBuilder.java @@ -35,18 +35,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/servicePrincipals/{servicePrincipal%2Did}/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy%2Did}/$ref", rawUrl); } /** - * Remove a homeRealmDiscoveryPolicy from a servicePrincipal. + * Delete ref of navigation property homeRealmDiscoveryPolicies for servicePrincipals * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove a homeRealmDiscoveryPolicy from a servicePrincipal. + * Delete ref of navigation property homeRealmDiscoveryPolicies for servicePrincipals * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -55,7 +53,7 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove a homeRealmDiscoveryPolicy from a servicePrincipal. + * Delete ref of navigation property homeRealmDiscoveryPolicies for servicePrincipals * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -63,7 +61,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove a homeRealmDiscoveryPolicy from a servicePrincipal. + * Delete ref of navigation property homeRealmDiscoveryPolicies for servicePrincipals * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/homerealmdiscoverypolicies/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/homerealmdiscoverypolicies/ref/RefRequestBuilder.java index b44e8dddcdf..1834eb2aaef 100644 --- a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/homerealmdiscoverypolicies/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/homerealmdiscoverypolicies/ref/RefRequestBuilder.java @@ -38,18 +38,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/servicePrincipals/{servicePrincipal%2Did}/homeRealmDiscoveryPolicies/$ref?@id={%40id}{&%24count,%24filter,%24orderby,%24search,%24skip,%24top}", rawUrl); } /** - * Remove a homeRealmDiscoveryPolicy from a servicePrincipal. + * Delete ref of navigation property homeRealmDiscoveryPolicies for servicePrincipals * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove a homeRealmDiscoveryPolicy from a servicePrincipal. + * Delete ref of navigation property homeRealmDiscoveryPolicies for servicePrincipals * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -58,21 +56,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * List the homeRealmDiscoveryPolicy objects that are assigned to a servicePrincipal. + * The homeRealmDiscoveryPolicies assigned to this service principal. Supports $expand. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get() { return get(null); } /** - * List the homeRealmDiscoveryPolicy objects that are assigned to a servicePrincipal. + * The homeRealmDiscoveryPolicies assigned to this service principal. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -82,20 +78,18 @@ public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util return this.requestAdapter.send(requestInfo, errorMapping, StringCollectionResponse::createFromDiscriminatorValue); } /** - * Assign a homeRealmDiscoveryPolicy to a servicePrincipal. + * Create new navigation property ref to homeRealmDiscoveryPolicies for servicePrincipals * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body) { post(body, null); } /** - * Assign a homeRealmDiscoveryPolicy to a servicePrincipal. + * Create new navigation property ref to homeRealmDiscoveryPolicies for servicePrincipals * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { Objects.requireNonNull(body); @@ -105,7 +99,7 @@ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakart this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove a homeRealmDiscoveryPolicy from a servicePrincipal. + * Delete ref of navigation property homeRealmDiscoveryPolicies for servicePrincipals * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -113,7 +107,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove a homeRealmDiscoveryPolicy from a servicePrincipal. + * Delete ref of navigation property homeRealmDiscoveryPolicies for servicePrincipals * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * List the homeRealmDiscoveryPolicy objects that are assigned to a servicePrincipal. + * The homeRealmDiscoveryPolicies assigned to this service principal. Supports $expand. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -133,7 +127,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List the homeRealmDiscoveryPolicy objects that are assigned to a servicePrincipal. + * The homeRealmDiscoveryPolicies assigned to this service principal. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Assign a homeRealmDiscoveryPolicy to a servicePrincipal. + * Create new navigation property ref to homeRealmDiscoveryPolicies for servicePrincipals * @param body The request body * @return a {@link RequestInformation} */ @@ -154,7 +148,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Assign a homeRealmDiscoveryPolicy to a servicePrincipal. + * Create new navigation property ref to homeRealmDiscoveryPolicies for servicePrincipals * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -179,7 +173,7 @@ public RefRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl return new RefRequestBuilder(rawUrl, requestAdapter); } /** - * Remove a homeRealmDiscoveryPolicy from a servicePrincipal. + * Delete ref of navigation property homeRealmDiscoveryPolicies for servicePrincipals */ @jakarta.annotation.Generated("com.microsoft.kiota") public class DeleteQueryParameters implements QueryParameters { @@ -211,7 +205,7 @@ public class DeleteRequestConfiguration extends BaseRequestConfiguration { public DeleteQueryParameters queryParameters = new DeleteQueryParameters(); } /** - * List the homeRealmDiscoveryPolicy objects that are assigned to a servicePrincipal. + * The homeRealmDiscoveryPolicies assigned to this service principal. Supports $expand. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/memberof/MemberOfRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/memberof/MemberOfRequestBuilder.java index 0c01587afb6..5a81c76056b 100644 --- a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/memberof/MemberOfRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/memberof/MemberOfRequestBuilder.java @@ -89,7 +89,6 @@ public MemberOfRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ * Roles that this service principal is a member of. HTTP Methods: GET Read-only. Nullable. Supports $expand. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get() { @@ -100,7 +99,6 @@ public DirectoryObjectCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/oauth2permissiongrants/Oauth2PermissionGrantsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/oauth2permissiongrants/Oauth2PermissionGrantsRequestBuilder.java index b6e417c23b5..f6539af5766 100644 --- a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/oauth2permissiongrants/Oauth2PermissionGrantsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/oauth2permissiongrants/Oauth2PermissionGrantsRequestBuilder.java @@ -59,21 +59,19 @@ public Oauth2PermissionGrantsRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/servicePrincipals/{servicePrincipal%2Did}/oauth2PermissionGrants{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of oAuth2PermissionGrant entities, representing delegated permissions granted to the service principal (representing the client application) to access an API on behalf of a user. + * Delegated permission grants authorizing this service principal to access an API on behalf of a signed-in user. Read-only. Nullable. * @return a {@link OAuth2PermissionGrantCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OAuth2PermissionGrantCollectionResponse get() { return get(null); } /** - * Retrieve a list of oAuth2PermissionGrant entities, representing delegated permissions granted to the service principal (representing the client application) to access an API on behalf of a user. + * Delegated permission grants authorizing this service principal to access an API on behalf of a signed-in user. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OAuth2PermissionGrantCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OAuth2PermissionGrantCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public OAuth2PermissionGrantCollectionResponse get(@jakarta.annotation.Nullable return this.requestAdapter.send(requestInfo, errorMapping, OAuth2PermissionGrantCollectionResponse::createFromDiscriminatorValue); } /** - * Retrieve a list of oAuth2PermissionGrant entities, representing delegated permissions granted to the service principal (representing the client application) to access an API on behalf of a user. + * Delegated permission grants authorizing this service principal to access an API on behalf of a signed-in user. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of oAuth2PermissionGrant entities, representing delegated permissions granted to the service principal (representing the client application) to access an API on behalf of a user. + * Delegated permission grants authorizing this service principal to access an API on behalf of a signed-in user. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public Oauth2PermissionGrantsRequestBuilder withUrl(@jakarta.annotation.Nonnull return new Oauth2PermissionGrantsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of oAuth2PermissionGrant entities, representing delegated permissions granted to the service principal (representing the client application) to access an API on behalf of a user. + * Delegated permission grants authorizing this service principal to access an API on behalf of a signed-in user. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/owners/OwnersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/owners/OwnersRequestBuilder.java index 69b000ee64a..8b02062521e 100644 --- a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/owners/OwnersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/owners/OwnersRequestBuilder.java @@ -107,7 +107,6 @@ public OwnersRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja * Directory objects that are owners of this servicePrincipal. The owners are a set of nonadmin users or servicePrincipals who are allowed to modify this object. Read-only. Nullable. Supports $expand, $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1), and $select nested in $expand. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get() { @@ -118,7 +117,6 @@ public DirectoryObjectCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/owners/item/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/owners/item/ref/RefRequestBuilder.java index 90cc160ed54..77d3c691622 100644 --- a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/owners/item/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/owners/item/ref/RefRequestBuilder.java @@ -35,18 +35,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/servicePrincipals/{servicePrincipal%2Did}/owners/{directoryObject%2Did}/$ref", rawUrl); } /** - * Remove an owner from a servicePrincipal object. As a recommended best practice, service principals should have at least two owners. + * Delete ref of navigation property owners for servicePrincipals * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove an owner from a servicePrincipal object. As a recommended best practice, service principals should have at least two owners. + * Delete ref of navigation property owners for servicePrincipals * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -55,7 +53,7 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove an owner from a servicePrincipal object. As a recommended best practice, service principals should have at least two owners. + * Delete ref of navigation property owners for servicePrincipals * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -63,7 +61,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove an owner from a servicePrincipal object. As a recommended best practice, service principals should have at least two owners. + * Delete ref of navigation property owners for servicePrincipals * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/owners/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/owners/ref/RefRequestBuilder.java index 916e8b6f355..11532bcc048 100644 --- a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/owners/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/owners/ref/RefRequestBuilder.java @@ -38,18 +38,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/servicePrincipals/{servicePrincipal%2Did}/owners/$ref?@id={%40id}{&%24count,%24filter,%24orderby,%24search,%24skip,%24top}", rawUrl); } /** - * Remove an owner from a servicePrincipal object. As a recommended best practice, service principals should have at least two owners. + * Delete ref of navigation property owners for servicePrincipals * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove an owner from a servicePrincipal object. As a recommended best practice, service principals should have at least two owners. + * Delete ref of navigation property owners for servicePrincipals * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -61,7 +59,6 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume * Directory objects that are owners of this servicePrincipal. The owners are a set of nonadmin users or servicePrincipals who are allowed to modify this object. Read-only. Nullable. Supports $expand, $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1), and $select nested in $expand. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get() { @@ -72,7 +69,6 @@ public StringCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link StringCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -82,20 +78,18 @@ public StringCollectionResponse get(@jakarta.annotation.Nullable final java.util return this.requestAdapter.send(requestInfo, errorMapping, StringCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to add an owner for the servicePrincipal. Service principal owners can be users, the service principal itself, or other service principals. + * Create new navigation property ref to owners for servicePrincipals * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body) { post(body, null); } /** - * Use this API to add an owner for the servicePrincipal. Service principal owners can be users, the service principal itself, or other service principals. + * Create new navigation property ref to owners for servicePrincipals * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { Objects.requireNonNull(body); @@ -105,7 +99,7 @@ public void post(@jakarta.annotation.Nonnull final ReferenceCreate body, @jakart this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove an owner from a servicePrincipal object. As a recommended best practice, service principals should have at least two owners. + * Delete ref of navigation property owners for servicePrincipals * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -113,7 +107,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove an owner from a servicePrincipal object. As a recommended best practice, service principals should have at least two owners. + * Delete ref of navigation property owners for servicePrincipals * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to add an owner for the servicePrincipal. Service principal owners can be users, the service principal itself, or other service principals. + * Create new navigation property ref to owners for servicePrincipals * @param body The request body * @return a {@link RequestInformation} */ @@ -154,7 +148,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to add an owner for the servicePrincipal. Service principal owners can be users, the service principal itself, or other service principals. + * Create new navigation property ref to owners for servicePrincipals * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -179,7 +173,7 @@ public RefRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUrl return new RefRequestBuilder(rawUrl, requestAdapter); } /** - * Remove an owner from a servicePrincipal object. As a recommended best practice, service principals should have at least two owners. + * Delete ref of navigation property owners for servicePrincipals */ @jakarta.annotation.Generated("com.microsoft.kiota") public class DeleteQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/remotedesktopsecurityconfiguration/RemoteDesktopSecurityConfigurationRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/remotedesktopsecurityconfiguration/RemoteDesktopSecurityConfigurationRequestBuilder.java index 0288dc9c907..bd546f3d2d9 100644 --- a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/remotedesktopsecurityconfiguration/RemoteDesktopSecurityConfigurationRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/remotedesktopsecurityconfiguration/RemoteDesktopSecurityConfigurationRequestBuilder.java @@ -46,18 +46,16 @@ public RemoteDesktopSecurityConfigurationRequestBuilder(@jakarta.annotation.Nonn super(requestAdapter, "{+baseurl}/servicePrincipals/{servicePrincipal%2Did}/remoteDesktopSecurityConfiguration{?%24expand,%24select}", rawUrl); } /** - * Delete a remoteDesktopSecurityConfiguration object on a servicePrincipal. Removing remoteDesktopSecurityConfiguration object on the servicePrincipal disables the Microsoft Entra ID Remote Desktop Services (RDS) authentication protocol to authenticate a user to Microsoft Entra joined or Microsoft Entra hybrid joined devices, and removes any target device groups that you configured for SSO. + * Delete navigation property remoteDesktopSecurityConfiguration for servicePrincipals * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a remoteDesktopSecurityConfiguration object on a servicePrincipal. Removing remoteDesktopSecurityConfiguration object on the servicePrincipal disables the Microsoft Entra ID Remote Desktop Services (RDS) authentication protocol to authenticate a user to Microsoft Entra joined or Microsoft Entra hybrid joined devices, and removes any target device groups that you configured for SSO. + * Delete navigation property remoteDesktopSecurityConfiguration for servicePrincipals * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a remoteDesktopSecurityConfiguration object on a servicePrincipal. Use this configuration to view the Microsoft Entra ID Remote Desktop Services (RDS) authentication protocol to authenticate a user to Microsoft Entra joined or Microsoft Entra hybrid joined devices. Additionally you can view any targetDeviceGroups that have been configured for SSO. + * The remoteDesktopSecurityConfiguration object applied to this service principal. Supports $filter (eq) for isRemoteDesktopProtocolEnabled property. * @return a {@link RemoteDesktopSecurityConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RemoteDesktopSecurityConfiguration get() { return get(null); } /** - * Read the properties and relationships of a remoteDesktopSecurityConfiguration object on a servicePrincipal. Use this configuration to view the Microsoft Entra ID Remote Desktop Services (RDS) authentication protocol to authenticate a user to Microsoft Entra joined or Microsoft Entra hybrid joined devices. Additionally you can view any targetDeviceGroups that have been configured for SSO. + * The remoteDesktopSecurityConfiguration object applied to this service principal. Supports $filter (eq) for isRemoteDesktopProtocolEnabled property. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RemoteDesktopSecurityConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RemoteDesktopSecurityConfiguration get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public RemoteDesktopSecurityConfiguration get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, RemoteDesktopSecurityConfiguration::createFromDiscriminatorValue); } /** - * Update the properties of a remoteDesktopSecurityConfiguration object on the servicePrincipal. Use this configuration to enable or disable the Microsoft Entra ID Remote Desktop Services (RDS) authentication protocol to authenticate a user to Microsoft Entra joined or Microsoft Entra hybrid joined devices. + * Update the navigation property remoteDesktopSecurityConfiguration in servicePrincipals * @param body The request body * @return a {@link RemoteDesktopSecurityConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RemoteDesktopSecurityConfiguration patch(@jakarta.annotation.Nonnull final RemoteDesktopSecurityConfiguration body) { return patch(body, null); } /** - * Update the properties of a remoteDesktopSecurityConfiguration object on the servicePrincipal. Use this configuration to enable or disable the Microsoft Entra ID Remote Desktop Services (RDS) authentication protocol to authenticate a user to Microsoft Entra joined or Microsoft Entra hybrid joined devices. + * Update the navigation property remoteDesktopSecurityConfiguration in servicePrincipals * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RemoteDesktopSecurityConfiguration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RemoteDesktopSecurityConfiguration patch(@jakarta.annotation.Nonnull final RemoteDesktopSecurityConfiguration body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public RemoteDesktopSecurityConfiguration patch(@jakarta.annotation.Nonnull fina return this.requestAdapter.send(requestInfo, errorMapping, RemoteDesktopSecurityConfiguration::createFromDiscriminatorValue); } /** - * Delete a remoteDesktopSecurityConfiguration object on a servicePrincipal. Removing remoteDesktopSecurityConfiguration object on the servicePrincipal disables the Microsoft Entra ID Remote Desktop Services (RDS) authentication protocol to authenticate a user to Microsoft Entra joined or Microsoft Entra hybrid joined devices, and removes any target device groups that you configured for SSO. + * Delete navigation property remoteDesktopSecurityConfiguration for servicePrincipals * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a remoteDesktopSecurityConfiguration object on a servicePrincipal. Removing remoteDesktopSecurityConfiguration object on the servicePrincipal disables the Microsoft Entra ID Remote Desktop Services (RDS) authentication protocol to authenticate a user to Microsoft Entra joined or Microsoft Entra hybrid joined devices, and removes any target device groups that you configured for SSO. + * Delete navigation property remoteDesktopSecurityConfiguration for servicePrincipals * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a remoteDesktopSecurityConfiguration object on a servicePrincipal. Use this configuration to view the Microsoft Entra ID Remote Desktop Services (RDS) authentication protocol to authenticate a user to Microsoft Entra joined or Microsoft Entra hybrid joined devices. Additionally you can view any targetDeviceGroups that have been configured for SSO. + * The remoteDesktopSecurityConfiguration object applied to this service principal. Supports $filter (eq) for isRemoteDesktopProtocolEnabled property. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a remoteDesktopSecurityConfiguration object on a servicePrincipal. Use this configuration to view the Microsoft Entra ID Remote Desktop Services (RDS) authentication protocol to authenticate a user to Microsoft Entra joined or Microsoft Entra hybrid joined devices. Additionally you can view any targetDeviceGroups that have been configured for SSO. + * The remoteDesktopSecurityConfiguration object applied to this service principal. Supports $filter (eq) for isRemoteDesktopProtocolEnabled property. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a remoteDesktopSecurityConfiguration object on the servicePrincipal. Use this configuration to enable or disable the Microsoft Entra ID Remote Desktop Services (RDS) authentication protocol to authenticate a user to Microsoft Entra joined or Microsoft Entra hybrid joined devices. + * Update the navigation property remoteDesktopSecurityConfiguration in servicePrincipals * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a remoteDesktopSecurityConfiguration object on the servicePrincipal. Use this configuration to enable or disable the Microsoft Entra ID Remote Desktop Services (RDS) authentication protocol to authenticate a user to Microsoft Entra joined or Microsoft Entra hybrid joined devices. + * Update the navigation property remoteDesktopSecurityConfiguration in servicePrincipals * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public RemoteDesktopSecurityConfigurationRequestBuilder withUrl(@jakarta.annotat public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a remoteDesktopSecurityConfiguration object on a servicePrincipal. Use this configuration to view the Microsoft Entra ID Remote Desktop Services (RDS) authentication protocol to authenticate a user to Microsoft Entra joined or Microsoft Entra hybrid joined devices. Additionally you can view any targetDeviceGroups that have been configured for SSO. + * The remoteDesktopSecurityConfiguration object applied to this service principal. Supports $filter (eq) for isRemoteDesktopProtocolEnabled property. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/remotedesktopsecurityconfiguration/targetdevicegroups/TargetDeviceGroupsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/remotedesktopsecurityconfiguration/targetdevicegroups/TargetDeviceGroupsRequestBuilder.java index 55a29a0bd7e..8ca57b7d172 100644 --- a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/remotedesktopsecurityconfiguration/targetdevicegroups/TargetDeviceGroupsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/remotedesktopsecurityconfiguration/targetdevicegroups/TargetDeviceGroupsRequestBuilder.java @@ -60,21 +60,19 @@ public TargetDeviceGroupsRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/servicePrincipals/{servicePrincipal%2Did}/remoteDesktopSecurityConfiguration/targetDeviceGroups{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the targetDeviceGroup objects and their properties on the remoteDesktopSecurityConfiguration resource on the servicePrincipal. Any user authenticating using the Microsoft Entra ID Remote Desktop Services (RDS) authentication protocol to a Microsoft Entra joined or Microsoft Entra hybrid joined device that belongs to the targetDeviceGroup will get SSO. + * The collection of target device groups that are associated with the RDS security configuration that will be enabled for SSO when a client connects to the target device over RDP using the new Microsoft Entra ID RDS authentication protocol. * @return a {@link TargetDeviceGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TargetDeviceGroupCollectionResponse get() { return get(null); } /** - * Get a list of the targetDeviceGroup objects and their properties on the remoteDesktopSecurityConfiguration resource on the servicePrincipal. Any user authenticating using the Microsoft Entra ID Remote Desktop Services (RDS) authentication protocol to a Microsoft Entra joined or Microsoft Entra hybrid joined device that belongs to the targetDeviceGroup will get SSO. + * The collection of target device groups that are associated with the RDS security configuration that will be enabled for SSO when a client connects to the target device over RDP using the new Microsoft Entra ID RDS authentication protocol. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TargetDeviceGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TargetDeviceGroupCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TargetDeviceGroupCollectionResponse get(@jakarta.annotation.Nullable fina return this.requestAdapter.send(requestInfo, errorMapping, TargetDeviceGroupCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new targetDeviceGroup object for the remoteDesktopSecurityConfiguration object on the servicePrincipal. You can configure a maximum of 10 target device groups for the remoteDesktopSecurityConfiguraiton object on the servicePrincipal. + * Create new navigation property to targetDeviceGroups for servicePrincipals * @param body The request body * @return a {@link TargetDeviceGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TargetDeviceGroup post(@jakarta.annotation.Nonnull final TargetDeviceGroup body) { return post(body, null); } /** - * Create a new targetDeviceGroup object for the remoteDesktopSecurityConfiguration object on the servicePrincipal. You can configure a maximum of 10 target device groups for the remoteDesktopSecurityConfiguraiton object on the servicePrincipal. + * Create new navigation property to targetDeviceGroups for servicePrincipals * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TargetDeviceGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TargetDeviceGroup post(@jakarta.annotation.Nonnull final TargetDeviceGroup body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public TargetDeviceGroup post(@jakarta.annotation.Nonnull final TargetDeviceGrou return this.requestAdapter.send(requestInfo, errorMapping, TargetDeviceGroup::createFromDiscriminatorValue); } /** - * Get a list of the targetDeviceGroup objects and their properties on the remoteDesktopSecurityConfiguration resource on the servicePrincipal. Any user authenticating using the Microsoft Entra ID Remote Desktop Services (RDS) authentication protocol to a Microsoft Entra joined or Microsoft Entra hybrid joined device that belongs to the targetDeviceGroup will get SSO. + * The collection of target device groups that are associated with the RDS security configuration that will be enabled for SSO when a client connects to the target device over RDP using the new Microsoft Entra ID RDS authentication protocol. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the targetDeviceGroup objects and their properties on the remoteDesktopSecurityConfiguration resource on the servicePrincipal. Any user authenticating using the Microsoft Entra ID Remote Desktop Services (RDS) authentication protocol to a Microsoft Entra joined or Microsoft Entra hybrid joined device that belongs to the targetDeviceGroup will get SSO. + * The collection of target device groups that are associated with the RDS security configuration that will be enabled for SSO when a client connects to the target device over RDP using the new Microsoft Entra ID RDS authentication protocol. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new targetDeviceGroup object for the remoteDesktopSecurityConfiguration object on the servicePrincipal. You can configure a maximum of 10 target device groups for the remoteDesktopSecurityConfiguraiton object on the servicePrincipal. + * Create new navigation property to targetDeviceGroups for servicePrincipals * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new targetDeviceGroup object for the remoteDesktopSecurityConfiguration object on the servicePrincipal. You can configure a maximum of 10 target device groups for the remoteDesktopSecurityConfiguraiton object on the servicePrincipal. + * Create new navigation property to targetDeviceGroups for servicePrincipals * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public TargetDeviceGroupsRequestBuilder withUrl(@jakarta.annotation.Nonnull fina return new TargetDeviceGroupsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the targetDeviceGroup objects and their properties on the remoteDesktopSecurityConfiguration resource on the servicePrincipal. Any user authenticating using the Microsoft Entra ID Remote Desktop Services (RDS) authentication protocol to a Microsoft Entra joined or Microsoft Entra hybrid joined device that belongs to the targetDeviceGroup will get SSO. + * The collection of target device groups that are associated with the RDS security configuration that will be enabled for SSO when a client connects to the target device over RDP using the new Microsoft Entra ID RDS authentication protocol. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/remotedesktopsecurityconfiguration/targetdevicegroups/item/TargetDeviceGroupItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/remotedesktopsecurityconfiguration/targetdevicegroups/item/TargetDeviceGroupItemRequestBuilder.java index cde9985ec30..63d953fe95a 100644 --- a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/remotedesktopsecurityconfiguration/targetdevicegroups/item/TargetDeviceGroupItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/remotedesktopsecurityconfiguration/targetdevicegroups/item/TargetDeviceGroupItemRequestBuilder.java @@ -37,18 +37,16 @@ public TargetDeviceGroupItemRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/servicePrincipals/{servicePrincipal%2Did}/remoteDesktopSecurityConfiguration/targetDeviceGroups/{targetDeviceGroup%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a targetDeviceGroup object for the remoteDesktopSecurityConfiguration object on the servicePrincipal. Any user authenticating using the Microsoft Entra ID Remote Desktop Services (RDS) authentication protocol to a Microsoft Entra joined or Microsoft Entra hybrid joined device that's in the removed targetDeviceGroup doesn't get SSO prompts. + * Delete navigation property targetDeviceGroups for servicePrincipals * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a targetDeviceGroup object for the remoteDesktopSecurityConfiguration object on the servicePrincipal. Any user authenticating using the Microsoft Entra ID Remote Desktop Services (RDS) authentication protocol to a Microsoft Entra joined or Microsoft Entra hybrid joined device that's in the removed targetDeviceGroup doesn't get SSO prompts. + * Delete navigation property targetDeviceGroups for servicePrincipals * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a targetDeviceGroup object for the remoteDesktopSecurityConfiguration object on the servicePrincipal. + * The collection of target device groups that are associated with the RDS security configuration that will be enabled for SSO when a client connects to the target device over RDP using the new Microsoft Entra ID RDS authentication protocol. * @return a {@link TargetDeviceGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TargetDeviceGroup get() { return get(null); } /** - * Read the properties and relationships of a targetDeviceGroup object for the remoteDesktopSecurityConfiguration object on the servicePrincipal. + * The collection of target device groups that are associated with the RDS security configuration that will be enabled for SSO when a client connects to the target device over RDP using the new Microsoft Entra ID RDS authentication protocol. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TargetDeviceGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TargetDeviceGroup get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public TargetDeviceGroup get(@jakarta.annotation.Nullable final java.util.functi return this.requestAdapter.send(requestInfo, errorMapping, TargetDeviceGroup::createFromDiscriminatorValue); } /** - * Update the properties of a targetDeviceGroup object for remoteDesktopSecurityConfiguration object on the servicePrincipal. You can configure a maximum of 10 target device groups for the remoteDesktopSecurityConfiguraiton object on the servicePrincipal. + * Update the navigation property targetDeviceGroups in servicePrincipals * @param body The request body * @return a {@link TargetDeviceGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TargetDeviceGroup patch(@jakarta.annotation.Nonnull final TargetDeviceGroup body) { return patch(body, null); } /** - * Update the properties of a targetDeviceGroup object for remoteDesktopSecurityConfiguration object on the servicePrincipal. You can configure a maximum of 10 target device groups for the remoteDesktopSecurityConfiguraiton object on the servicePrincipal. + * Update the navigation property targetDeviceGroups in servicePrincipals * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TargetDeviceGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TargetDeviceGroup patch(@jakarta.annotation.Nonnull final TargetDeviceGroup body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public TargetDeviceGroup patch(@jakarta.annotation.Nonnull final TargetDeviceGro return this.requestAdapter.send(requestInfo, errorMapping, TargetDeviceGroup::createFromDiscriminatorValue); } /** - * Delete a targetDeviceGroup object for the remoteDesktopSecurityConfiguration object on the servicePrincipal. Any user authenticating using the Microsoft Entra ID Remote Desktop Services (RDS) authentication protocol to a Microsoft Entra joined or Microsoft Entra hybrid joined device that's in the removed targetDeviceGroup doesn't get SSO prompts. + * Delete navigation property targetDeviceGroups for servicePrincipals * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a targetDeviceGroup object for the remoteDesktopSecurityConfiguration object on the servicePrincipal. Any user authenticating using the Microsoft Entra ID Remote Desktop Services (RDS) authentication protocol to a Microsoft Entra joined or Microsoft Entra hybrid joined device that's in the removed targetDeviceGroup doesn't get SSO prompts. + * Delete navigation property targetDeviceGroups for servicePrincipals * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a targetDeviceGroup object for the remoteDesktopSecurityConfiguration object on the servicePrincipal. + * The collection of target device groups that are associated with the RDS security configuration that will be enabled for SSO when a client connects to the target device over RDP using the new Microsoft Entra ID RDS authentication protocol. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a targetDeviceGroup object for the remoteDesktopSecurityConfiguration object on the servicePrincipal. + * The collection of target device groups that are associated with the RDS security configuration that will be enabled for SSO when a client connects to the target device over RDP using the new Microsoft Entra ID RDS authentication protocol. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a targetDeviceGroup object for remoteDesktopSecurityConfiguration object on the servicePrincipal. You can configure a maximum of 10 target device groups for the remoteDesktopSecurityConfiguraiton object on the servicePrincipal. + * Update the navigation property targetDeviceGroups in servicePrincipals * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a targetDeviceGroup object for remoteDesktopSecurityConfiguration object on the servicePrincipal. You can configure a maximum of 10 target device groups for the remoteDesktopSecurityConfiguraiton object on the servicePrincipal. + * Update the navigation property targetDeviceGroups in servicePrincipals * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public TargetDeviceGroupItemRequestBuilder withUrl(@jakarta.annotation.Nonnull f public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a targetDeviceGroup object for the remoteDesktopSecurityConfiguration object on the servicePrincipal. + * The collection of target device groups that are associated with the RDS security configuration that will be enabled for SSO when a client connects to the target device over RDP using the new Microsoft Entra ID RDS authentication protocol. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/synchronization/jobs/JobsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/synchronization/jobs/JobsRequestBuilder.java index 205296e6d27..eeda15d3848 100644 --- a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/synchronization/jobs/JobsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/synchronization/jobs/JobsRequestBuilder.java @@ -69,21 +69,19 @@ public JobsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka super(requestAdapter, "{+baseurl}/servicePrincipals/{servicePrincipal%2Did}/synchronization/jobs{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List existing jobs for a given application instance (service principal). + * Performs synchronization by periodically running in the background, polling for changes in one directory, and pushing them to another directory. * @return a {@link SynchronizationJobCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SynchronizationJobCollectionResponse get() { return get(null); } /** - * List existing jobs for a given application instance (service principal). + * Performs synchronization by periodically running in the background, polling for changes in one directory, and pushing them to another directory. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SynchronizationJobCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SynchronizationJobCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public SynchronizationJobCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, SynchronizationJobCollectionResponse::createFromDiscriminatorValue); } /** - * Create new synchronization job with a default synchronization schema. The job is created in a disabled state. Call Start job to start synchronization. + * Create new navigation property to jobs for servicePrincipals * @param body The request body * @return a {@link SynchronizationJob} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SynchronizationJob post(@jakarta.annotation.Nonnull final SynchronizationJob body) { return post(body, null); } /** - * Create new synchronization job with a default synchronization schema. The job is created in a disabled state. Call Start job to start synchronization. + * Create new navigation property to jobs for servicePrincipals * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SynchronizationJob} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SynchronizationJob post(@jakarta.annotation.Nonnull final SynchronizationJob body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public SynchronizationJob post(@jakarta.annotation.Nonnull final Synchronization return this.requestAdapter.send(requestInfo, errorMapping, SynchronizationJob::createFromDiscriminatorValue); } /** - * List existing jobs for a given application instance (service principal). + * Performs synchronization by periodically running in the background, polling for changes in one directory, and pushing them to another directory. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List existing jobs for a given application instance (service principal). + * Performs synchronization by periodically running in the background, polling for changes in one directory, and pushing them to another directory. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create new synchronization job with a default synchronization schema. The job is created in a disabled state. Call Start job to start synchronization. + * Create new navigation property to jobs for servicePrincipals * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create new synchronization job with a default synchronization schema. The job is created in a disabled state. Call Start job to start synchronization. + * Create new navigation property to jobs for servicePrincipals * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public JobsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr return new JobsRequestBuilder(rawUrl, requestAdapter); } /** - * List existing jobs for a given application instance (service principal). + * Performs synchronization by periodically running in the background, polling for changes in one directory, and pushing them to another directory. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/synchronization/jobs/item/SynchronizationJobItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/synchronization/jobs/item/SynchronizationJobItemRequestBuilder.java index 93fcf27ffd4..3d74a4e3d7e 100644 --- a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/synchronization/jobs/item/SynchronizationJobItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/synchronization/jobs/item/SynchronizationJobItemRequestBuilder.java @@ -100,18 +100,16 @@ public SynchronizationJobItemRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/servicePrincipals/{servicePrincipal%2Did}/synchronization/jobs/{synchronizationJob%2Did}{?%24expand,%24select}", rawUrl); } /** - * Stop the synchronization job, and permanently delete all the state associated with it. Synchronized accounts are left as-is. + * Delete navigation property jobs for servicePrincipals * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Stop the synchronization job, and permanently delete all the state associated with it. Synchronized accounts are left as-is. + * Delete navigation property jobs for servicePrincipals * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -120,21 +118,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the existing synchronization job and its properties. + * Performs synchronization by periodically running in the background, polling for changes in one directory, and pushing them to another directory. * @return a {@link SynchronizationJob} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SynchronizationJob get() { return get(null); } /** - * Retrieve the existing synchronization job and its properties. + * Performs synchronization by periodically running in the background, polling for changes in one directory, and pushing them to another directory. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SynchronizationJob} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SynchronizationJob get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -169,7 +165,7 @@ public SynchronizationJob patch(@jakarta.annotation.Nonnull final Synchronizatio return this.requestAdapter.send(requestInfo, errorMapping, SynchronizationJob::createFromDiscriminatorValue); } /** - * Stop the synchronization job, and permanently delete all the state associated with it. Synchronized accounts are left as-is. + * Delete navigation property jobs for servicePrincipals * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -177,7 +173,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Stop the synchronization job, and permanently delete all the state associated with it. Synchronized accounts are left as-is. + * Delete navigation property jobs for servicePrincipals * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -189,7 +185,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the existing synchronization job and its properties. + * Performs synchronization by periodically running in the background, polling for changes in one directory, and pushing them to another directory. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -197,7 +193,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the existing synchronization job and its properties. + * Performs synchronization by periodically running in the background, polling for changes in one directory, and pushing them to another directory. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -249,7 +245,7 @@ public SynchronizationJobItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the existing synchronization job and its properties. + * Performs synchronization by periodically running in the background, polling for changes in one directory, and pushing them to another directory. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/synchronization/jobs/item/schema/SchemaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/synchronization/jobs/item/schema/SchemaRequestBuilder.java index 9fbd5baf0b1..e5d786e502f 100644 --- a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/synchronization/jobs/item/schema/SchemaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/synchronization/jobs/item/schema/SchemaRequestBuilder.java @@ -91,21 +91,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the schema for a given synchronization job or template. + * The synchronization schema configured for the job. * @return a {@link SynchronizationSchema} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SynchronizationSchema get() { return get(null); } /** - * Retrieve the schema for a given synchronization job or template. + * The synchronization schema configured for the job. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SynchronizationSchema} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SynchronizationSchema get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -115,23 +113,21 @@ public SynchronizationSchema get(@jakarta.annotation.Nullable final java.util.fu return this.requestAdapter.send(requestInfo, errorMapping, SynchronizationSchema::createFromDiscriminatorValue); } /** - * Update the synchronization schema for a given job or template. This method fully replaces the current schema with the one provided in the request. To update the schema of a template, make the call on the application object. You must be the owner of the application. + * Update the navigation property schema in servicePrincipals * @param body The request body * @return a {@link SynchronizationSchema} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SynchronizationSchema patch(@jakarta.annotation.Nonnull final SynchronizationSchema body) { return patch(body, null); } /** - * Update the synchronization schema for a given job or template. This method fully replaces the current schema with the one provided in the request. To update the schema of a template, make the call on the application object. You must be the owner of the application. + * Update the navigation property schema in servicePrincipals * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SynchronizationSchema} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SynchronizationSchema patch(@jakarta.annotation.Nonnull final SynchronizationSchema body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -162,7 +158,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the schema for a given synchronization job or template. + * The synchronization schema configured for the job. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -170,7 +166,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the schema for a given synchronization job or template. + * The synchronization schema configured for the job. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -182,7 +178,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the synchronization schema for a given job or template. This method fully replaces the current schema with the one provided in the request. To update the schema of a template, make the call on the application object. You must be the owner of the application. + * Update the navigation property schema in servicePrincipals * @param body The request body * @return a {@link RequestInformation} */ @@ -191,7 +187,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the synchronization schema for a given job or template. This method fully replaces the current schema with the one provided in the request. To update the schema of a template, make the call on the application object. You must be the owner of the application. + * Update the navigation property schema in servicePrincipals * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -222,7 +218,7 @@ public SchemaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the schema for a given synchronization job or template. + * The synchronization schema configured for the job. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/synchronization/jobs/item/schema/filteroperators/FilterOperatorsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/synchronization/jobs/item/schema/filteroperators/FilterOperatorsRequestBuilder.java index 6ffe2e3bd2a..f7e167a6168 100644 --- a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/synchronization/jobs/item/schema/filteroperators/FilterOperatorsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/synchronization/jobs/item/schema/filteroperators/FilterOperatorsRequestBuilder.java @@ -36,19 +36,21 @@ public FilterOperatorsRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/servicePrincipals/{servicePrincipal%2Did}/synchronization/jobs/{synchronizationJob%2Did}/schema/filterOperators(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function filterOperators + * List all operators supported in the scoping filters. * @return a {@link FilterOperatorsGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterOperatorsGetResponse get() { return get(null); } /** - * Invoke function filterOperators + * List all operators supported in the scoping filters. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FilterOperatorsGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterOperatorsGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public FilterOperatorsGetResponse get(@jakarta.annotation.Nullable final java.ut return this.requestAdapter.send(requestInfo, errorMapping, FilterOperatorsGetResponse::createFromDiscriminatorValue); } /** - * Invoke function filterOperators + * List all operators supported in the scoping filters. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function filterOperators + * List all operators supported in the scoping filters. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public FilterOperatorsRequestBuilder withUrl(@jakarta.annotation.Nonnull final S return new FilterOperatorsRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function filterOperators + * List all operators supported in the scoping filters. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/synchronization/jobs/item/schema/functions/FunctionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/synchronization/jobs/item/schema/functions/FunctionsRequestBuilder.java index 4e129f870d3..958fb0f2bca 100644 --- a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/synchronization/jobs/item/schema/functions/FunctionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/synchronization/jobs/item/schema/functions/FunctionsRequestBuilder.java @@ -36,19 +36,21 @@ public FunctionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/servicePrincipals/{servicePrincipal%2Did}/synchronization/jobs/{synchronizationJob%2Did}/schema/functions(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function functions + * List all the functions currently supported in the attributeMappingSource. * @return a {@link FunctionsGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FunctionsGetResponse get() { return get(null); } /** - * Invoke function functions + * List all the functions currently supported in the attributeMappingSource. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FunctionsGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FunctionsGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public FunctionsGetResponse get(@jakarta.annotation.Nullable final java.util.fun return this.requestAdapter.send(requestInfo, errorMapping, FunctionsGetResponse::createFromDiscriminatorValue); } /** - * Invoke function functions + * List all the functions currently supported in the attributeMappingSource. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function functions + * List all the functions currently supported in the attributeMappingSource. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public FunctionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new FunctionsRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function functions + * List all the functions currently supported in the attributeMappingSource. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/synchronization/templates/TemplatesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/synchronization/templates/TemplatesRequestBuilder.java index 6ff7cc271d8..45f221ce4ee 100644 --- a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/synchronization/templates/TemplatesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/synchronization/templates/TemplatesRequestBuilder.java @@ -60,21 +60,19 @@ public TemplatesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/servicePrincipals/{servicePrincipal%2Did}/synchronization/templates{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List the synchronization templates associated with a given application or service principal. + * Preconfigured synchronization settings for a particular application. * @return a {@link SynchronizationTemplateCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SynchronizationTemplateCollectionResponse get() { return get(null); } /** - * List the synchronization templates associated with a given application or service principal. + * Preconfigured synchronization settings for a particular application. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SynchronizationTemplateCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SynchronizationTemplateCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public SynchronizationTemplate post(@jakarta.annotation.Nonnull final Synchroniz return this.requestAdapter.send(requestInfo, errorMapping, SynchronizationTemplate::createFromDiscriminatorValue); } /** - * List the synchronization templates associated with a given application or service principal. + * Preconfigured synchronization settings for a particular application. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List the synchronization templates associated with a given application or service principal. + * Preconfigured synchronization settings for a particular application. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public TemplatesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new TemplatesRequestBuilder(rawUrl, requestAdapter); } /** - * List the synchronization templates associated with a given application or service principal. + * Preconfigured synchronization settings for a particular application. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/synchronization/templates/item/SynchronizationTemplateItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/synchronization/templates/item/SynchronizationTemplateItemRequestBuilder.java index daa68d30b96..bded82b21b5 100644 --- a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/synchronization/templates/item/SynchronizationTemplateItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/synchronization/templates/item/SynchronizationTemplateItemRequestBuilder.java @@ -86,23 +86,21 @@ public SynchronizationTemplate get(@jakarta.annotation.Nullable final java.util. return this.requestAdapter.send(requestInfo, errorMapping, SynchronizationTemplate::createFromDiscriminatorValue); } /** - * Update (override) the synchronization template associated with a given application. + * Update the navigation property templates in servicePrincipals * @param body The request body * @return a {@link SynchronizationTemplate} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SynchronizationTemplate patch(@jakarta.annotation.Nonnull final SynchronizationTemplate body) { return patch(body, null); } /** - * Update (override) the synchronization template associated with a given application. + * Update the navigation property templates in servicePrincipals * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SynchronizationTemplate} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SynchronizationTemplate patch(@jakarta.annotation.Nonnull final SynchronizationTemplate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -153,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update (override) the synchronization template associated with a given application. + * Update the navigation property templates in servicePrincipals * @param body The request body * @return a {@link RequestInformation} */ @@ -162,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update (override) the synchronization template associated with a given application. + * Update the navigation property templates in servicePrincipals * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/synchronization/templates/item/schema/filteroperators/FilterOperatorsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/synchronization/templates/item/schema/filteroperators/FilterOperatorsRequestBuilder.java index c9e8fc25582..c8160d38402 100644 --- a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/synchronization/templates/item/schema/filteroperators/FilterOperatorsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/synchronization/templates/item/schema/filteroperators/FilterOperatorsRequestBuilder.java @@ -36,19 +36,21 @@ public FilterOperatorsRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/servicePrincipals/{servicePrincipal%2Did}/synchronization/templates/{synchronizationTemplate%2Did}/schema/filterOperators(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function filterOperators + * List all operators supported in the scoping filters. * @return a {@link FilterOperatorsGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterOperatorsGetResponse get() { return get(null); } /** - * Invoke function filterOperators + * List all operators supported in the scoping filters. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FilterOperatorsGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FilterOperatorsGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public FilterOperatorsGetResponse get(@jakarta.annotation.Nullable final java.ut return this.requestAdapter.send(requestInfo, errorMapping, FilterOperatorsGetResponse::createFromDiscriminatorValue); } /** - * Invoke function filterOperators + * List all operators supported in the scoping filters. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function filterOperators + * List all operators supported in the scoping filters. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public FilterOperatorsRequestBuilder withUrl(@jakarta.annotation.Nonnull final S return new FilterOperatorsRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function filterOperators + * List all operators supported in the scoping filters. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/synchronization/templates/item/schema/functions/FunctionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/synchronization/templates/item/schema/functions/FunctionsRequestBuilder.java index ced3215bc72..fd8b2390529 100644 --- a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/synchronization/templates/item/schema/functions/FunctionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/synchronization/templates/item/schema/functions/FunctionsRequestBuilder.java @@ -36,19 +36,21 @@ public FunctionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/servicePrincipals/{servicePrincipal%2Did}/synchronization/templates/{synchronizationTemplate%2Did}/schema/functions(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function functions + * List all the functions currently supported in the attributeMappingSource. * @return a {@link FunctionsGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FunctionsGetResponse get() { return get(null); } /** - * Invoke function functions + * List all the functions currently supported in the attributeMappingSource. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FunctionsGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public FunctionsGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public FunctionsGetResponse get(@jakarta.annotation.Nullable final java.util.fun return this.requestAdapter.send(requestInfo, errorMapping, FunctionsGetResponse::createFromDiscriminatorValue); } /** - * Invoke function functions + * List all the functions currently supported in the attributeMappingSource. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function functions + * List all the functions currently supported in the attributeMappingSource. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public FunctionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new FunctionsRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function functions + * List all the functions currently supported in the attributeMappingSource. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/tokenlifetimepolicies/TokenLifetimePoliciesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/tokenlifetimepolicies/TokenLifetimePoliciesRequestBuilder.java index e84cec29466..7b97f6ccc43 100644 --- a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/tokenlifetimepolicies/TokenLifetimePoliciesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/tokenlifetimepolicies/TokenLifetimePoliciesRequestBuilder.java @@ -59,21 +59,19 @@ public TokenLifetimePoliciesRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/servicePrincipals/{servicePrincipal%2Did}/tokenLifetimePolicies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List the tokenLifetimePolicy objects that are assigned to a servicePrincipal. Only one object is returned in the collection because only one tokenLifetimePolicy can be assigned to a service principal. + * The tokenLifetimePolicies assigned to this service principal. * @return a {@link TokenLifetimePolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TokenLifetimePolicyCollectionResponse get() { return get(null); } /** - * List the tokenLifetimePolicy objects that are assigned to a servicePrincipal. Only one object is returned in the collection because only one tokenLifetimePolicy can be assigned to a service principal. + * The tokenLifetimePolicies assigned to this service principal. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TokenLifetimePolicyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TokenLifetimePolicyCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public TokenLifetimePolicyCollectionResponse get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, TokenLifetimePolicyCollectionResponse::createFromDiscriminatorValue); } /** - * List the tokenLifetimePolicy objects that are assigned to a servicePrincipal. Only one object is returned in the collection because only one tokenLifetimePolicy can be assigned to a service principal. + * The tokenLifetimePolicies assigned to this service principal. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List the tokenLifetimePolicy objects that are assigned to a servicePrincipal. Only one object is returned in the collection because only one tokenLifetimePolicy can be assigned to a service principal. + * The tokenLifetimePolicies assigned to this service principal. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public TokenLifetimePoliciesRequestBuilder withUrl(@jakarta.annotation.Nonnull f return new TokenLifetimePoliciesRequestBuilder(rawUrl, requestAdapter); } /** - * List the tokenLifetimePolicy objects that are assigned to a servicePrincipal. Only one object is returned in the collection because only one tokenLifetimePolicy can be assigned to a service principal. + * The tokenLifetimePolicies assigned to this service principal. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/transitivememberof/TransitiveMemberOfRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/transitivememberof/TransitiveMemberOfRequestBuilder.java index 13cc5d05f27..974cba3a874 100644 --- a/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/transitivememberof/TransitiveMemberOfRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/serviceprincipals/item/transitivememberof/TransitiveMemberOfRequestBuilder.java @@ -89,7 +89,6 @@ public TransitiveMemberOfRequestBuilder(@jakarta.annotation.Nonnull final String * Get transitiveMemberOf from servicePrincipals * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get() { @@ -100,7 +99,6 @@ public DirectoryObjectCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/shares/item/driveitem/DriveItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/shares/item/driveitem/DriveItemRequestBuilder.java index d05aa4f64b9..b689203bb58 100644 --- a/src/main/java/com/microsoft/graph/generated/shares/item/driveitem/DriveItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/shares/item/driveitem/DriveItemRequestBuilder.java @@ -46,21 +46,19 @@ public DriveItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/shares/{sharedDriveItem%2Did}/driveItem{?%24expand,%24select}", rawUrl); } /** - * Access a shared DriveItem or a collection of shared items by using a shareId or sharing URL. To use a sharing URL with this API, your app needs to transform the URL into a sharing token. + * Used to access the underlying driveItem * @return a {@link DriveItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DriveItem get() { return get(null); } /** - * Access a shared DriveItem or a collection of shared items by using a shareId or sharing URL. To use a sharing URL with this API, your app needs to transform the URL into a sharing token. + * Used to access the underlying driveItem * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DriveItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DriveItem get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -70,7 +68,7 @@ public DriveItem get(@jakarta.annotation.Nullable final java.util.function.Consu return this.requestAdapter.send(requestInfo, errorMapping, DriveItem::createFromDiscriminatorValue); } /** - * Access a shared DriveItem or a collection of shared items by using a shareId or sharing URL. To use a sharing URL with this API, your app needs to transform the URL into a sharing token. + * Used to access the underlying driveItem * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -78,7 +76,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Access a shared DriveItem or a collection of shared items by using a shareId or sharing URL. To use a sharing URL with this API, your app needs to transform the URL into a sharing token. + * Used to access the underlying driveItem * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -100,7 +98,7 @@ public DriveItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new DriveItemRequestBuilder(rawUrl, requestAdapter); } /** - * Access a shared DriveItem or a collection of shared items by using a shareId or sharing URL. To use a sharing URL with this API, your app needs to transform the URL into a sharing token. + * Used to access the underlying driveItem */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/shares/item/driveitem/content/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/shares/item/driveitem/content/ContentRequestBuilder.java index 5eb080de6b5..d40368ec28d 100644 --- a/src/main/java/com/microsoft/graph/generated/shares/item/driveitem/content/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/shares/item/driveitem/content/ContentRequestBuilder.java @@ -41,7 +41,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * The content stream, if the item represents a file. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -52,7 +51,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/shares/item/list/columns/ColumnsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/shares/item/list/columns/ColumnsRequestBuilder.java index 724c6186dd2..6ca60de5fed 100644 --- a/src/main/java/com/microsoft/graph/generated/shares/item/list/columns/ColumnsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/shares/item/list/columns/ColumnsRequestBuilder.java @@ -60,21 +60,19 @@ public ColumnsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/shares/{sharedDriveItem%2Did}/list/columns{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [list][list]. + * The collection of field definitions for this list. * @return a {@link ColumnDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinitionCollectionResponse get() { return get(null); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [list][list]. + * The collection of field definitions for this list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinitionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public ColumnDefinitionCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinitionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a column for a [list][list] with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for shares * @param body The request body * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition body) { return post(body, null); } /** - * Create a column for a [list][list] with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for shares * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinition::createFromDiscriminatorValue); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [list][list]. + * The collection of field definitions for this list. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [list][list]. + * The collection of field definitions for this list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a column for a [list][list] with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for shares * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a column for a [list][list] with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for shares * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ColumnsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new ColumnsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [list][list]. + * The collection of field definitions for this list. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/shares/item/list/contenttypes/ContentTypesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/shares/item/list/contenttypes/ContentTypesRequestBuilder.java index bdbea0bac07..087918ce1b3 100644 --- a/src/main/java/com/microsoft/graph/generated/shares/item/list/contenttypes/ContentTypesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/shares/item/list/contenttypes/ContentTypesRequestBuilder.java @@ -87,21 +87,19 @@ public ContentTypesRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/shares/{sharedDriveItem%2Did}/list/contentTypes{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the collection of [contentType][contentType] resources in a [list][]. + * The collection of content types present in this list. * @return a {@link ContentTypeCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentTypeCollectionResponse get() { return get(null); } /** - * Get the collection of [contentType][contentType] resources in a [list][]. + * The collection of content types present in this list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ContentTypeCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentTypeCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -136,7 +134,7 @@ public ContentType post(@jakarta.annotation.Nonnull final ContentType body, @jak return this.requestAdapter.send(requestInfo, errorMapping, ContentType::createFromDiscriminatorValue); } /** - * Get the collection of [contentType][contentType] resources in a [list][]. + * The collection of content types present in this list. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -144,7 +142,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the collection of [contentType][contentType] resources in a [list][]. + * The collection of content types present in this list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -190,7 +188,7 @@ public ContentTypesRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri return new ContentTypesRequestBuilder(rawUrl, requestAdapter); } /** - * Get the collection of [contentType][contentType] resources in a [list][]. + * The collection of content types present in this list. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/shares/item/list/contenttypes/addcopy/AddCopyRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/shares/item/list/contenttypes/addcopy/AddCopyRequestBuilder.java index 32fc4a93d2a..1432b32daf5 100644 --- a/src/main/java/com/microsoft/graph/generated/shares/item/list/contenttypes/addcopy/AddCopyRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/shares/item/list/contenttypes/addcopy/AddCopyRequestBuilder.java @@ -36,7 +36,7 @@ public AddCopyRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/shares/{sharedDriveItem%2Did}/list/contentTypes/addCopy", rawUrl); } /** - * Add a copy of a [content type][contentType] from a [site][site] to a [list][list]. + * Add a copy of a content type from a site to a list. * @param body The request body * @return a {@link ContentType} * @throws ODataError When receiving a 4XX or 5XX status code @@ -47,7 +47,7 @@ public ContentType post(@jakarta.annotation.Nonnull final AddCopyPostRequestBody return post(body, null); } /** - * Add a copy of a [content type][contentType] from a [site][site] to a [list][list]. + * Add a copy of a content type from a site to a list. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ContentType} @@ -63,7 +63,7 @@ public ContentType post(@jakarta.annotation.Nonnull final AddCopyPostRequestBody return this.requestAdapter.send(requestInfo, errorMapping, ContentType::createFromDiscriminatorValue); } /** - * Add a copy of a [content type][contentType] from a [site][site] to a [list][list]. + * Add a copy of a content type from a site to a list. * @param body The request body * @return a {@link RequestInformation} */ @@ -72,7 +72,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add a copy of a [content type][contentType] from a [site][site] to a [list][list]. + * Add a copy of a content type from a site to a list. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/shares/item/list/contenttypes/getcompatiblehubcontenttypes/GetCompatibleHubContentTypesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/shares/item/list/contenttypes/getcompatiblehubcontenttypes/GetCompatibleHubContentTypesRequestBuilder.java index b0ad9d14ca0..1aacfefc44d 100644 --- a/src/main/java/com/microsoft/graph/generated/shares/item/list/contenttypes/getcompatiblehubcontenttypes/GetCompatibleHubContentTypesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/shares/item/list/contenttypes/getcompatiblehubcontenttypes/GetCompatibleHubContentTypesRequestBuilder.java @@ -36,19 +36,21 @@ public GetCompatibleHubContentTypesRequestBuilder(@jakarta.annotation.Nonnull fi super(requestAdapter, "{+baseurl}/shares/{sharedDriveItem%2Did}/list/contentTypes/getCompatibleHubContentTypes(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function getCompatibleHubContentTypes + * Get a list of compatible content types from the content type hub that can be added to a target site or a list. This method is part of the content type publishing changes to optimize the syncing of published content types to sites and lists, effectively switching from a 'push everywhere' to 'pull as needed' approach. The method allows users to pull content types directly from the content type hub to a site or list. For more information, see contentType: addCopyFromContentTypeHub and the blog post Syntex Product Updates August 2021. * @return a {@link GetCompatibleHubContentTypesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetCompatibleHubContentTypesGetResponse get() { return get(null); } /** - * Invoke function getCompatibleHubContentTypes + * Get a list of compatible content types from the content type hub that can be added to a target site or a list. This method is part of the content type publishing changes to optimize the syncing of published content types to sites and lists, effectively switching from a 'push everywhere' to 'pull as needed' approach. The method allows users to pull content types directly from the content type hub to a site or list. For more information, see contentType: addCopyFromContentTypeHub and the blog post Syntex Product Updates August 2021. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GetCompatibleHubContentTypesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetCompatibleHubContentTypesGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public GetCompatibleHubContentTypesGetResponse get(@jakarta.annotation.Nullable return this.requestAdapter.send(requestInfo, errorMapping, GetCompatibleHubContentTypesGetResponse::createFromDiscriminatorValue); } /** - * Invoke function getCompatibleHubContentTypes + * Get a list of compatible content types from the content type hub that can be added to a target site or a list. This method is part of the content type publishing changes to optimize the syncing of published content types to sites and lists, effectively switching from a 'push everywhere' to 'pull as needed' approach. The method allows users to pull content types directly from the content type hub to a site or list. For more information, see contentType: addCopyFromContentTypeHub and the blog post Syntex Product Updates August 2021. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getCompatibleHubContentTypes + * Get a list of compatible content types from the content type hub that can be added to a target site or a list. This method is part of the content type publishing changes to optimize the syncing of published content types to sites and lists, effectively switching from a 'push everywhere' to 'pull as needed' approach. The method allows users to pull content types directly from the content type hub to a site or list. For more information, see contentType: addCopyFromContentTypeHub and the blog post Syntex Product Updates August 2021. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public GetCompatibleHubContentTypesRequestBuilder withUrl(@jakarta.annotation.No return new GetCompatibleHubContentTypesRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function getCompatibleHubContentTypes + * Get a list of compatible content types from the content type hub that can be added to a target site or a list. This method is part of the content type publishing changes to optimize the syncing of published content types to sites and lists, effectively switching from a 'push everywhere' to 'pull as needed' approach. The method allows users to pull content types directly from the content type hub to a site or list. For more information, see contentType: addCopyFromContentTypeHub and the blog post Syntex Product Updates August 2021. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/shares/item/list/contenttypes/item/associatewithhubsites/AssociateWithHubSitesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/shares/item/list/contenttypes/item/associatewithhubsites/AssociateWithHubSitesRequestBuilder.java index 5af673da4cb..eac47d7a780 100644 --- a/src/main/java/com/microsoft/graph/generated/shares/item/list/contenttypes/item/associatewithhubsites/AssociateWithHubSitesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/shares/item/list/contenttypes/item/associatewithhubsites/AssociateWithHubSitesRequestBuilder.java @@ -35,7 +35,7 @@ public AssociateWithHubSitesRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/shares/{sharedDriveItem%2Did}/list/contentTypes/{contentType%2Did}/associateWithHubSites", rawUrl); } /** - * Associate a published [content type][contentType] present in a content type hub with a list of hub sites. + * Associate a published content type present in a content type hub with a list of hub sites. * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code * @see Find more info here @@ -44,7 +44,7 @@ public void post(@jakarta.annotation.Nonnull final AssociateWithHubSitesPostRequ post(body, null); } /** - * Associate a published [content type][contentType] present in a content type hub with a list of hub sites. + * Associate a published content type present in a content type hub with a list of hub sites. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code @@ -58,7 +58,7 @@ public void post(@jakarta.annotation.Nonnull final AssociateWithHubSitesPostRequ this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Associate a published [content type][contentType] present in a content type hub with a list of hub sites. + * Associate a published content type present in a content type hub with a list of hub sites. * @param body The request body * @return a {@link RequestInformation} */ @@ -67,7 +67,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Associate a published [content type][contentType] present in a content type hub with a list of hub sites. + * Associate a published content type present in a content type hub with a list of hub sites. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/shares/item/list/contenttypes/item/columns/ColumnsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/shares/item/list/contenttypes/item/columns/ColumnsRequestBuilder.java index af02d983528..2a52488b208 100644 --- a/src/main/java/com/microsoft/graph/generated/shares/item/list/contenttypes/item/columns/ColumnsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/shares/item/list/contenttypes/item/columns/ColumnsRequestBuilder.java @@ -60,21 +60,19 @@ public ColumnsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/shares/{sharedDriveItem%2Did}/list/contentTypes/{contentType%2Did}/columns{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [content type][contentType]. + * The collection of column definitions for this content type. * @return a {@link ColumnDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinitionCollectionResponse get() { return get(null); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [content type][contentType]. + * The collection of column definitions for this content type. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinitionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public ColumnDefinitionCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinitionCollectionResponse::createFromDiscriminatorValue); } /** - * Add a column to a [content type][contentType] in a site, or a list with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for shares * @param body The request body * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition body) { return post(body, null); } /** - * Add a column to a [content type][contentType] in a site, or a list with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for shares * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinition::createFromDiscriminatorValue); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [content type][contentType]. + * The collection of column definitions for this content type. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [content type][contentType]. + * The collection of column definitions for this content type. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add a column to a [content type][contentType] in a site, or a list with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for shares * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add a column to a [content type][contentType] in a site, or a list with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for shares * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ColumnsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new ColumnsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [content type][contentType]. + * The collection of column definitions for this content type. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/shares/item/list/contenttypes/item/columns/item/ColumnDefinitionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/shares/item/list/contenttypes/item/columns/item/ColumnDefinitionItemRequestBuilder.java index c7e216ac35e..cbd4be8b25a 100644 --- a/src/main/java/com/microsoft/graph/generated/shares/item/list/contenttypes/item/columns/item/ColumnDefinitionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/shares/item/list/contenttypes/item/columns/item/ColumnDefinitionItemRequestBuilder.java @@ -46,18 +46,16 @@ public ColumnDefinitionItemRequestBuilder(@jakarta.annotation.Nonnull final Stri super(requestAdapter, "{+baseurl}/shares/{sharedDriveItem%2Did}/list/contentTypes/{contentType%2Did}/columns/{columnDefinition%2Did}{?%24expand,%24select}", rawUrl); } /** - * Remove a [column][columndefinition] from a [site][], a [list][], or a [content type][contentType]. + * Delete navigation property columns for shares * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove a [column][columndefinition] from a [site][], a [list][], or a [content type][contentType]. + * Delete navigation property columns for shares * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the metadata for a [site][], a [list][], or a [contentType][] [column][columnDefinition]. + * The collection of column definitions for this content type. * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition get() { return get(null); } /** - * Retrieve the metadata for a [site][], a [list][], or a [contentType][] [column][columnDefinition]. + * The collection of column definitions for this content type. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public ColumnDefinition get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinition::createFromDiscriminatorValue); } /** - * Update a [site][], a [list][], or a [content type][contentType] [column][columnDefinition]. + * Update the navigation property columns in shares * @param body The request body * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition patch(@jakarta.annotation.Nonnull final ColumnDefinition body) { return patch(body, null); } /** - * Update a [site][], a [list][], or a [content type][contentType] [column][columnDefinition]. + * Update the navigation property columns in shares * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition patch(@jakarta.annotation.Nonnull final ColumnDefinition body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public ColumnDefinition patch(@jakarta.annotation.Nonnull final ColumnDefinition return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinition::createFromDiscriminatorValue); } /** - * Remove a [column][columndefinition] from a [site][], a [list][], or a [content type][contentType]. + * Delete navigation property columns for shares * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove a [column][columndefinition] from a [site][], a [list][], or a [content type][contentType]. + * Delete navigation property columns for shares * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the metadata for a [site][], a [list][], or a [contentType][] [column][columnDefinition]. + * The collection of column definitions for this content type. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the metadata for a [site][], a [list][], or a [contentType][] [column][columnDefinition]. + * The collection of column definitions for this content type. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update a [site][], a [list][], or a [content type][contentType] [column][columnDefinition]. + * Update the navigation property columns in shares * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update a [site][], a [list][], or a [content type][contentType] [column][columnDefinition]. + * Update the navigation property columns in shares * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public ColumnDefinitionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fi public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the metadata for a [site][], a [list][], or a [contentType][] [column][columnDefinition]. + * The collection of column definitions for this content type. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/shares/item/list/contenttypes/item/copytodefaultcontentlocation/CopyToDefaultContentLocationRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/shares/item/list/contenttypes/item/copytodefaultcontentlocation/CopyToDefaultContentLocationRequestBuilder.java index fa65c9d46b9..5c5db13d61d 100644 --- a/src/main/java/com/microsoft/graph/generated/shares/item/list/contenttypes/item/copytodefaultcontentlocation/CopyToDefaultContentLocationRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/shares/item/list/contenttypes/item/copytodefaultcontentlocation/CopyToDefaultContentLocationRequestBuilder.java @@ -35,7 +35,7 @@ public CopyToDefaultContentLocationRequestBuilder(@jakarta.annotation.Nonnull fi super(requestAdapter, "{+baseurl}/shares/{sharedDriveItem%2Did}/list/contentTypes/{contentType%2Did}/copyToDefaultContentLocation", rawUrl); } /** - * Copy a file to a default content location in a [content type][contentType]. The file can then be added as a default file or template via a POST operation. + * Copy a file to a default content location in a content type. The file can then be added as a default file or template via a POST operation. * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code * @see Find more info here @@ -44,7 +44,7 @@ public void post(@jakarta.annotation.Nonnull final CopyToDefaultContentLocationP post(body, null); } /** - * Copy a file to a default content location in a [content type][contentType]. The file can then be added as a default file or template via a POST operation. + * Copy a file to a default content location in a content type. The file can then be added as a default file or template via a POST operation. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code @@ -58,7 +58,7 @@ public void post(@jakarta.annotation.Nonnull final CopyToDefaultContentLocationP this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Copy a file to a default content location in a [content type][contentType]. The file can then be added as a default file or template via a POST operation. + * Copy a file to a default content location in a content type. The file can then be added as a default file or template via a POST operation. * @param body The request body * @return a {@link RequestInformation} */ @@ -67,7 +67,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Copy a file to a default content location in a [content type][contentType]. The file can then be added as a default file or template via a POST operation. + * Copy a file to a default content location in a content type. The file can then be added as a default file or template via a POST operation. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/shares/item/list/contenttypes/item/ispublished/IsPublishedRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/shares/item/list/contenttypes/item/ispublished/IsPublishedRequestBuilder.java index e02b4d6401e..ef47d16b261 100644 --- a/src/main/java/com/microsoft/graph/generated/shares/item/list/contenttypes/item/ispublished/IsPublishedRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/shares/item/list/contenttypes/item/ispublished/IsPublishedRequestBuilder.java @@ -35,19 +35,21 @@ public IsPublishedRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/shares/{sharedDriveItem%2Did}/list/contentTypes/{contentType%2Did}/isPublished()", rawUrl); } /** - * Invoke function isPublished + * Check the publishing status of a contentType in a content type hub site. * @return a {@link IsPublishedGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public IsPublishedGetResponse get() { return get(null); } /** - * Invoke function isPublished + * Check the publishing status of a contentType in a content type hub site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link IsPublishedGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public IsPublishedGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -57,7 +59,7 @@ public IsPublishedGetResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, IsPublishedGetResponse::createFromDiscriminatorValue); } /** - * Invoke function isPublished + * Check the publishing status of a contentType in a content type hub site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -65,7 +67,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function isPublished + * Check the publishing status of a contentType in a content type hub site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/shares/item/list/contenttypes/item/publish/PublishRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/shares/item/list/contenttypes/item/publish/PublishRequestBuilder.java index d3188114d0d..381b7332edb 100644 --- a/src/main/java/com/microsoft/graph/generated/shares/item/list/contenttypes/item/publish/PublishRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/shares/item/list/contenttypes/item/publish/PublishRequestBuilder.java @@ -35,7 +35,7 @@ public PublishRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/shares/{sharedDriveItem%2Did}/list/contentTypes/{contentType%2Did}/publish", rawUrl); } /** - * Publishes a [contentType][] present in the content type hub site. + * Publishes a contentType present in the content type hub site. * @throws ODataError When receiving a 4XX or 5XX status code * @see Find more info here */ @@ -43,7 +43,7 @@ public void post() { post(null); } /** - * Publishes a [contentType][] present in the content type hub site. + * Publishes a contentType present in the content type hub site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code * @see Find more info here @@ -55,7 +55,7 @@ public void post(@jakarta.annotation.Nullable final java.util.function.Consumer< this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Publishes a [contentType][] present in the content type hub site. + * Publishes a contentType present in the content type hub site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -63,7 +63,7 @@ public RequestInformation toPostRequestInformation() { return toPostRequestInformation(null); } /** - * Publishes a [contentType][] present in the content type hub site. + * Publishes a contentType present in the content type hub site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/shares/item/list/contenttypes/item/unpublish/UnpublishRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/shares/item/list/contenttypes/item/unpublish/UnpublishRequestBuilder.java index 889cf03e9a7..f37c02311ba 100644 --- a/src/main/java/com/microsoft/graph/generated/shares/item/list/contenttypes/item/unpublish/UnpublishRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/shares/item/list/contenttypes/item/unpublish/UnpublishRequestBuilder.java @@ -35,7 +35,7 @@ public UnpublishRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/shares/{sharedDriveItem%2Did}/list/contentTypes/{contentType%2Did}/unpublish", rawUrl); } /** - * Unpublish a [contentType][] from a content type hub site. + * Unpublish a contentType from a content type hub site. * @throws ODataError When receiving a 4XX or 5XX status code * @see Find more info here */ @@ -43,7 +43,7 @@ public void post() { post(null); } /** - * Unpublish a [contentType][] from a content type hub site. + * Unpublish a contentType from a content type hub site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code * @see Find more info here @@ -55,7 +55,7 @@ public void post(@jakarta.annotation.Nullable final java.util.function.Consumer< this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Unpublish a [contentType][] from a content type hub site. + * Unpublish a contentType from a content type hub site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -63,7 +63,7 @@ public RequestInformation toPostRequestInformation() { return toPostRequestInformation(null); } /** - * Unpublish a [contentType][] from a content type hub site. + * Unpublish a contentType from a content type hub site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/shares/item/list/items/ItemsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/shares/item/list/items/ItemsRequestBuilder.java index 03531475a3e..97b0986d791 100644 --- a/src/main/java/com/microsoft/graph/generated/shares/item/list/items/ItemsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/shares/item/list/items/ItemsRequestBuilder.java @@ -71,21 +71,19 @@ public DeltaWithTokenRequestBuilder deltaWithToken(@jakarta.annotation.Nonnull f return new DeltaWithTokenRequestBuilder(pathParameters, requestAdapter, token); } /** - * Get the collection of [items][item] in a [list][]. + * All items contained in the list. * @return a {@link ListItemCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListItemCollectionResponse get() { return get(null); } /** - * Get the collection of [items][item] in a [list][]. + * All items contained in the list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ListItemCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListItemCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -95,23 +93,21 @@ public ListItemCollectionResponse get(@jakarta.annotation.Nullable final java.ut return this.requestAdapter.send(requestInfo, errorMapping, ListItemCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new [listItem][] in a [list][]. + * Create new navigation property to items for shares * @param body The request body * @return a {@link ListItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListItem post(@jakarta.annotation.Nonnull final ListItem body) { return post(body, null); } /** - * Create a new [listItem][] in a [list][]. + * Create new navigation property to items for shares * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ListItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListItem post(@jakarta.annotation.Nonnull final ListItem body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -122,7 +118,7 @@ public ListItem post(@jakarta.annotation.Nonnull final ListItem body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, ListItem::createFromDiscriminatorValue); } /** - * Get the collection of [items][item] in a [list][]. + * All items contained in the list. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -130,7 +126,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the collection of [items][item] in a [list][]. + * All items contained in the list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -142,7 +138,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new [listItem][] in a [list][]. + * Create new navigation property to items for shares * @param body The request body * @return a {@link RequestInformation} */ @@ -151,7 +147,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new [listItem][] in a [list][]. + * Create new navigation property to items for shares * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -176,7 +172,7 @@ public ItemsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new ItemsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the collection of [items][item] in a [list][]. + * All items contained in the list. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/shares/item/list/items/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/shares/item/list/items/delta/DeltaRequestBuilder.java index 2208c211a87..12ca1b4e20a 100644 --- a/src/main/java/com/microsoft/graph/generated/shares/item/list/items/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/shares/item/list/items/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/shares/{sharedDriveItem%2Did}/list/items/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Get newly created, updated, or deleted list items without having to perform a full read of the entire items collection. Your app begins by calling delta without any parameters.The service starts enumerating the hierarchy of the list, returning pages of items, and either an @odata.nextLink or an @odata.deltaLink.Your app should continue calling with the @odata.nextLink until you see an @odata.deltaLink returned. After you received all thechanges, you can apply them to your local state.To check for changes in thefuture, call delta again with the @odata.deltaLink from the previous response. The delta feed shows the latest state for each item, not each change. If an item was renamed twice, it only shows up once, with its latest name.The same item might appear more than once in a delta feed, for various reasons. You should use the last occurrence you see. Items with this property should be removed from your local state. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Get newly created, updated, or deleted list items without having to perform a full read of the entire items collection. Your app begins by calling delta without any parameters.The service starts enumerating the hierarchy of the list, returning pages of items, and either an @odata.nextLink or an @odata.deltaLink.Your app should continue calling with the @odata.nextLink until you see an @odata.deltaLink returned. After you received all thechanges, you can apply them to your local state.To check for changes in thefuture, call delta again with the @odata.deltaLink from the previous response. The delta feed shows the latest state for each item, not each change. If an item was renamed twice, it only shows up once, with its latest name.The same item might appear more than once in a delta feed, for various reasons. You should use the last occurrence you see. Items with this property should be removed from your local state. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Get newly created, updated, or deleted list items without having to perform a full read of the entire items collection. Your app begins by calling delta without any parameters.The service starts enumerating the hierarchy of the list, returning pages of items, and either an @odata.nextLink or an @odata.deltaLink.Your app should continue calling with the @odata.nextLink until you see an @odata.deltaLink returned. After you received all thechanges, you can apply them to your local state.To check for changes in thefuture, call delta again with the @odata.deltaLink from the previous response. The delta feed shows the latest state for each item, not each change. If an item was renamed twice, it only shows up once, with its latest name.The same item might appear more than once in a delta feed, for various reasons. You should use the last occurrence you see. Items with this property should be removed from your local state. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Get newly created, updated, or deleted list items without having to perform a full read of the entire items collection. Your app begins by calling delta without any parameters.The service starts enumerating the hierarchy of the list, returning pages of items, and either an @odata.nextLink or an @odata.deltaLink.Your app should continue calling with the @odata.nextLink until you see an @odata.deltaLink returned. After you received all thechanges, you can apply them to your local state.To check for changes in thefuture, call delta again with the @odata.deltaLink from the previous response. The delta feed shows the latest state for each item, not each change. If an item was renamed twice, it only shows up once, with its latest name.The same item might appear more than once in a delta feed, for various reasons. You should use the last occurrence you see. Items with this property should be removed from your local state. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Get newly created, updated, or deleted list items without having to perform a full read of the entire items collection. Your app begins by calling delta without any parameters.The service starts enumerating the hierarchy of the list, returning pages of items, and either an @odata.nextLink or an @odata.deltaLink.Your app should continue calling with the @odata.nextLink until you see an @odata.deltaLink returned. After you received all thechanges, you can apply them to your local state.To check for changes in thefuture, call delta again with the @odata.deltaLink from the previous response. The delta feed shows the latest state for each item, not each change. If an item was renamed twice, it only shows up once, with its latest name.The same item might appear more than once in a delta feed, for various reasons. You should use the last occurrence you see. Items with this property should be removed from your local state. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/shares/item/list/items/item/ListItemItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/shares/item/list/items/item/ListItemItemRequestBuilder.java index 1e1a1699b83..4f0b8d52180 100644 --- a/src/main/java/com/microsoft/graph/generated/shares/item/list/items/item/ListItemItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/shares/item/list/items/item/ListItemItemRequestBuilder.java @@ -119,18 +119,16 @@ public ListItemItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/shares/{sharedDriveItem%2Did}/list/items/{listItem%2Did}{?%24expand,%24select}", rawUrl); } /** - * Removes an item from a [list][]. + * Delete navigation property items for shares * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Removes an item from a [list][]. + * Delete navigation property items for shares * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -139,21 +137,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Returns the metadata for an [item][] in a [list][]. + * All items contained in the list. * @return a {@link ListItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListItem get() { return get(null); } /** - * Returns the metadata for an [item][] in a [list][]. + * All items contained in the list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ListItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListItem get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -202,7 +198,7 @@ public ListItem patch(@jakarta.annotation.Nonnull final ListItem body, @jakarta. return this.requestAdapter.send(requestInfo, errorMapping, ListItem::createFromDiscriminatorValue); } /** - * Removes an item from a [list][]. + * Delete navigation property items for shares * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -210,7 +206,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Removes an item from a [list][]. + * Delete navigation property items for shares * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -222,7 +218,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Returns the metadata for an [item][] in a [list][]. + * All items contained in the list. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -230,7 +226,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Returns the metadata for an [item][] in a [list][]. + * All items contained in the list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -282,7 +278,7 @@ public ListItemItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Returns the metadata for an [item][] in a [list][]. + * All items contained in the list. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/shares/item/list/items/item/documentsetversions/DocumentSetVersionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/shares/item/list/items/item/documentsetversions/DocumentSetVersionsRequestBuilder.java index edcc93d4d10..ca1ea9a23f3 100644 --- a/src/main/java/com/microsoft/graph/generated/shares/item/list/items/item/documentsetversions/DocumentSetVersionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/shares/item/list/items/item/documentsetversions/DocumentSetVersionsRequestBuilder.java @@ -60,21 +60,19 @@ public DocumentSetVersionsRequestBuilder(@jakarta.annotation.Nonnull final Strin super(requestAdapter, "{+baseurl}/shares/{sharedDriveItem%2Did}/list/items/{listItem%2Did}/documentSetVersions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the versions of a document set item in a list. + * Version information for a document set version created by a user. * @return a {@link DocumentSetVersionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DocumentSetVersionCollectionResponse get() { return get(null); } /** - * Get a list of the versions of a document set item in a list. + * Version information for a document set version created by a user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DocumentSetVersionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DocumentSetVersionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public DocumentSetVersionCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, DocumentSetVersionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new version of a document set item in a list. + * Create new navigation property to documentSetVersions for shares * @param body The request body * @return a {@link DocumentSetVersion} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DocumentSetVersion post(@jakarta.annotation.Nonnull final DocumentSetVersion body) { return post(body, null); } /** - * Create a new version of a document set item in a list. + * Create new navigation property to documentSetVersions for shares * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DocumentSetVersion} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DocumentSetVersion post(@jakarta.annotation.Nonnull final DocumentSetVersion body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public DocumentSetVersion post(@jakarta.annotation.Nonnull final DocumentSetVers return this.requestAdapter.send(requestInfo, errorMapping, DocumentSetVersion::createFromDiscriminatorValue); } /** - * Get a list of the versions of a document set item in a list. + * Version information for a document set version created by a user. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the versions of a document set item in a list. + * Version information for a document set version created by a user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new version of a document set item in a list. + * Create new navigation property to documentSetVersions for shares * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new version of a document set item in a list. + * Create new navigation property to documentSetVersions for shares * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public DocumentSetVersionsRequestBuilder withUrl(@jakarta.annotation.Nonnull fin return new DocumentSetVersionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the versions of a document set item in a list. + * Version information for a document set version created by a user. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/shares/item/list/items/item/documentsetversions/item/DocumentSetVersionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/shares/item/list/items/item/documentsetversions/item/DocumentSetVersionItemRequestBuilder.java index 5e0b457b25e..2922ad39281 100644 --- a/src/main/java/com/microsoft/graph/generated/shares/item/list/items/item/documentsetversions/item/DocumentSetVersionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/shares/item/list/items/item/documentsetversions/item/DocumentSetVersionItemRequestBuilder.java @@ -55,18 +55,16 @@ public DocumentSetVersionItemRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/shares/{sharedDriveItem%2Did}/list/items/{listItem%2Did}/documentSetVersions/{documentSetVersion%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a version of a document set in a list. + * Delete navigation property documentSetVersions for shares * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a version of a document set in a list. + * Delete navigation property documentSetVersions for shares * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -75,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a documentSetVersion object. + * Version information for a document set version created by a user. * @return a {@link DocumentSetVersion} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DocumentSetVersion get() { return get(null); } /** - * Read the properties and relationships of a documentSetVersion object. + * Version information for a document set version created by a user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DocumentSetVersion} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DocumentSetVersion get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +120,7 @@ public DocumentSetVersion patch(@jakarta.annotation.Nonnull final DocumentSetVer return this.requestAdapter.send(requestInfo, errorMapping, DocumentSetVersion::createFromDiscriminatorValue); } /** - * Delete a version of a document set in a list. + * Delete navigation property documentSetVersions for shares * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +128,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a version of a document set in a list. + * Delete navigation property documentSetVersions for shares * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -144,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a documentSetVersion object. + * Version information for a document set version created by a user. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -152,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a documentSetVersion object. + * Version information for a document set version created by a user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -204,7 +200,7 @@ public DocumentSetVersionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a documentSetVersion object. + * Version information for a document set version created by a user. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/shares/item/list/items/item/driveitem/DriveItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/shares/item/list/items/item/driveitem/DriveItemRequestBuilder.java index e0976438481..17be82d14be 100644 --- a/src/main/java/com/microsoft/graph/generated/shares/item/list/items/item/driveitem/DriveItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/shares/item/list/items/item/driveitem/DriveItemRequestBuilder.java @@ -46,7 +46,7 @@ public DriveItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/shares/{sharedDriveItem%2Did}/list/items/{listItem%2Did}/driveItem{?%24expand,%24select}", rawUrl); } /** - * For document libraries, the driveItem relationship exposes the listItem as a [driveItem][] + * For document libraries, the driveItem relationship exposes the listItem as a driveItem * @return a {@link DriveItem} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -55,7 +55,7 @@ public DriveItem get() { return get(null); } /** - * For document libraries, the driveItem relationship exposes the listItem as a [driveItem][] + * For document libraries, the driveItem relationship exposes the listItem as a driveItem * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DriveItem} * @throws ODataError When receiving a 4XX or 5XX status code @@ -68,7 +68,7 @@ public DriveItem get(@jakarta.annotation.Nullable final java.util.function.Consu return this.requestAdapter.send(requestInfo, errorMapping, DriveItem::createFromDiscriminatorValue); } /** - * For document libraries, the driveItem relationship exposes the listItem as a [driveItem][] + * For document libraries, the driveItem relationship exposes the listItem as a driveItem * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -76,7 +76,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * For document libraries, the driveItem relationship exposes the listItem as a [driveItem][] + * For document libraries, the driveItem relationship exposes the listItem as a driveItem * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -98,7 +98,7 @@ public DriveItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new DriveItemRequestBuilder(rawUrl, requestAdapter); } /** - * For document libraries, the driveItem relationship exposes the listItem as a [driveItem][] + * For document libraries, the driveItem relationship exposes the listItem as a driveItem */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/shares/item/list/items/item/fields/FieldsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/shares/item/list/items/item/fields/FieldsRequestBuilder.java index a2b972dfb52..9e174076236 100644 --- a/src/main/java/com/microsoft/graph/generated/shares/item/list/items/item/fields/FieldsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/shares/item/list/items/item/fields/FieldsRequestBuilder.java @@ -77,23 +77,21 @@ public FieldValueSet get(@jakarta.annotation.Nullable final java.util.function.C return this.requestAdapter.send(requestInfo, errorMapping, FieldValueSet::createFromDiscriminatorValue); } /** - * Update the properties on a [listItem][]. + * Update the navigation property fields in shares * @param body The request body * @return a {@link FieldValueSet} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public FieldValueSet patch(@jakarta.annotation.Nonnull final FieldValueSet body) { return patch(body, null); } /** - * Update the properties on a [listItem][]. + * Update the navigation property fields in shares * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FieldValueSet} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public FieldValueSet patch(@jakarta.annotation.Nonnull final FieldValueSet body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -144,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties on a [listItem][]. + * Update the navigation property fields in shares * @param body The request body * @return a {@link RequestInformation} */ @@ -153,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties on a [listItem][]. + * Update the navigation property fields in shares * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/shares/item/list/items/item/versions/VersionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/shares/item/list/items/item/versions/VersionsRequestBuilder.java index 0664a017ec3..659e344ac03 100644 --- a/src/main/java/com/microsoft/graph/generated/shares/item/list/items/item/versions/VersionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/shares/item/list/items/item/versions/VersionsRequestBuilder.java @@ -60,21 +60,19 @@ public VersionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/shares/{sharedDriveItem%2Did}/list/items/{listItem%2Did}/versions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * SharePoint can be configured to retain the history for list items. Previous versions may be retained for a finite period of time depending on admin settings which may be unique per user or location. + * The list of previous versions of the list item. * @return a {@link ListItemVersionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListItemVersionCollectionResponse get() { return get(null); } /** - * SharePoint can be configured to retain the history for list items. Previous versions may be retained for a finite period of time depending on admin settings which may be unique per user or location. + * The list of previous versions of the list item. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ListItemVersionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListItemVersionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ListItemVersion post(@jakarta.annotation.Nonnull final ListItemVersion bo return this.requestAdapter.send(requestInfo, errorMapping, ListItemVersion::createFromDiscriminatorValue); } /** - * SharePoint can be configured to retain the history for list items. Previous versions may be retained for a finite period of time depending on admin settings which may be unique per user or location. + * The list of previous versions of the list item. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * SharePoint can be configured to retain the history for list items. Previous versions may be retained for a finite period of time depending on admin settings which may be unique per user or location. + * The list of previous versions of the list item. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public VersionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new VersionsRequestBuilder(rawUrl, requestAdapter); } /** - * SharePoint can be configured to retain the history for list items. Previous versions may be retained for a finite period of time depending on admin settings which may be unique per user or location. + * The list of previous versions of the list item. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/shares/item/list/items/item/versions/item/ListItemVersionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/shares/item/list/items/item/versions/item/ListItemVersionItemRequestBuilder.java index 98110964220..d67257f7d2d 100644 --- a/src/main/java/com/microsoft/graph/generated/shares/item/list/items/item/versions/item/ListItemVersionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/shares/item/list/items/item/versions/item/ListItemVersionItemRequestBuilder.java @@ -73,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the metadata for a specific version of a ListItem. + * The list of previous versions of the list item. * @return a {@link ListItemVersion} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListItemVersion get() { return get(null); } /** - * Retrieve the metadata for a specific version of a ListItem. + * The list of previous versions of the list item. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ListItemVersion} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListItemVersion get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -142,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the metadata for a specific version of a ListItem. + * The list of previous versions of the list item. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -150,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the metadata for a specific version of a ListItem. + * The list of previous versions of the list item. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -202,7 +200,7 @@ public ListItemVersionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fin public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the metadata for a specific version of a ListItem. + * The list of previous versions of the list item. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/shares/item/permission/grant/GrantRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/shares/item/permission/grant/GrantRequestBuilder.java index 994a3322bee..7b3633f8768 100644 --- a/src/main/java/com/microsoft/graph/generated/shares/item/permission/grant/GrantRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/shares/item/permission/grant/GrantRequestBuilder.java @@ -35,7 +35,7 @@ public GrantRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/shares/{sharedDriveItem%2Did}/permission/grant", rawUrl); } /** - * Grant users access to a link represented by a [permission][]. + * Grant users access to a link represented by a permission. * @param body The request body * @return a {@link GrantPostResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -46,7 +46,7 @@ public GrantPostResponse post(@jakarta.annotation.Nonnull final GrantPostRequest return post(body, null); } /** - * Grant users access to a link represented by a [permission][]. + * Grant users access to a link represented by a permission. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GrantPostResponse} @@ -62,7 +62,7 @@ public GrantPostResponse post(@jakarta.annotation.Nonnull final GrantPostRequest return this.requestAdapter.send(requestInfo, errorMapping, GrantPostResponse::createFromDiscriminatorValue); } /** - * Grant users access to a link represented by a [permission][]. + * Grant users access to a link represented by a permission. * @param body The request body * @return a {@link RequestInformation} */ @@ -71,7 +71,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Grant users access to a link represented by a [permission][]. + * Grant users access to a link represented by a permission. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/sites/SitesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/SitesRequestBuilder.java index e6916820416..261ae8d06b0 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/SitesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/SitesRequestBuilder.java @@ -95,7 +95,7 @@ public SitesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/sites{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Search across a SharePoint tenant for [sites][] that match keywords provided. The only property that works for sorting is createdDateTime. The search filter is a free text search that uses multiple properties when retrieving the search results. + * Search across a SharePoint tenant for sites that match keywords provided. The only property that works for sorting is createdDateTime. The search filter is a free text search that uses multiple properties when retrieving the search results. * @return a {@link SiteCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code * @see Find more info here @@ -105,7 +105,7 @@ public SiteCollectionResponse get() { return get(null); } /** - * Search across a SharePoint tenant for [sites][] that match keywords provided. The only property that works for sorting is createdDateTime. The search filter is a free text search that uses multiple properties when retrieving the search results. + * Search across a SharePoint tenant for sites that match keywords provided. The only property that works for sorting is createdDateTime. The search filter is a free text search that uses multiple properties when retrieving the search results. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SiteCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -119,7 +119,7 @@ public SiteCollectionResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, SiteCollectionResponse::createFromDiscriminatorValue); } /** - * Search across a SharePoint tenant for [sites][] that match keywords provided. The only property that works for sorting is createdDateTime. The search filter is a free text search that uses multiple properties when retrieving the search results. + * Search across a SharePoint tenant for sites that match keywords provided. The only property that works for sorting is createdDateTime. The search filter is a free text search that uses multiple properties when retrieving the search results. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -127,7 +127,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Search across a SharePoint tenant for [sites][] that match keywords provided. The only property that works for sorting is createdDateTime. The search filter is a free text search that uses multiple properties when retrieving the search results. + * Search across a SharePoint tenant for sites that match keywords provided. The only property that works for sorting is createdDateTime. The search filter is a free text search that uses multiple properties when retrieving the search results. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -149,7 +149,7 @@ public SitesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new SitesRequestBuilder(rawUrl, requestAdapter); } /** - * Search across a SharePoint tenant for [sites][] that match keywords provided. The only property that works for sorting is createdDateTime. The search filter is a free text search that uses multiple properties when retrieving the search results. + * Search across a SharePoint tenant for sites that match keywords provided. The only property that works for sorting is createdDateTime. The search filter is a free text search that uses multiple properties when retrieving the search results. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/delta/DeltaRequestBuilder.java index cc466dca7e0..2d11be64a8b 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/sites/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Get newly created, updated, or deleted sites without having to perform a full read of the entire sites collection. A delta function call for sites is similar to a GET request, except that by appropriately applying state tokens in one or more of these calls,you can query for incremental changes in the sites. It allows you to maintain and synchronize a local store of a user's sites without having to fetch all the sites from the server every time.The application calls the API without specifying any parameters.The service begins enumerating sites and returns pages of changes to these sites, accompanied by either an @odata.nextLink or an @odata.deltaLink.Your application should continue making calls using the @odata.nextLink until there's an @odata.deltaLink in the response. After you receive all the changes, you can apply them to your local state.To monitor future changes, call the delta API by using the @odata.deltaLink in the previous response. Any resources marked as deleted should be removed from your local state. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Get newly created, updated, or deleted sites without having to perform a full read of the entire sites collection. A delta function call for sites is similar to a GET request, except that by appropriately applying state tokens in one or more of these calls,you can query for incremental changes in the sites. It allows you to maintain and synchronize a local store of a user's sites without having to fetch all the sites from the server every time.The application calls the API without specifying any parameters.The service begins enumerating sites and returns pages of changes to these sites, accompanied by either an @odata.nextLink or an @odata.deltaLink.Your application should continue making calls using the @odata.nextLink until there's an @odata.deltaLink in the response. After you receive all the changes, you can apply them to your local state.To monitor future changes, call the delta API by using the @odata.deltaLink in the previous response. Any resources marked as deleted should be removed from your local state. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Get newly created, updated, or deleted sites without having to perform a full read of the entire sites collection. A delta function call for sites is similar to a GET request, except that by appropriately applying state tokens in one or more of these calls,you can query for incremental changes in the sites. It allows you to maintain and synchronize a local store of a user's sites without having to fetch all the sites from the server every time.The application calls the API without specifying any parameters.The service begins enumerating sites and returns pages of changes to these sites, accompanied by either an @odata.nextLink or an @odata.deltaLink.Your application should continue making calls using the @odata.nextLink until there's an @odata.deltaLink in the response. After you receive all the changes, you can apply them to your local state.To monitor future changes, call the delta API by using the @odata.deltaLink in the previous response. Any resources marked as deleted should be removed from your local state. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Get newly created, updated, or deleted sites without having to perform a full read of the entire sites collection. A delta function call for sites is similar to a GET request, except that by appropriately applying state tokens in one or more of these calls,you can query for incremental changes in the sites. It allows you to maintain and synchronize a local store of a user's sites without having to fetch all the sites from the server every time.The application calls the API without specifying any parameters.The service begins enumerating sites and returns pages of changes to these sites, accompanied by either an @odata.nextLink or an @odata.deltaLink.Your application should continue making calls using the @odata.nextLink until there's an @odata.deltaLink in the response. After you receive all the changes, you can apply them to your local state.To monitor future changes, call the delta API by using the @odata.deltaLink in the previous response. Any resources marked as deleted should be removed from your local state. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Get newly created, updated, or deleted sites without having to perform a full read of the entire sites collection. A delta function call for sites is similar to a GET request, except that by appropriately applying state tokens in one or more of these calls,you can query for incremental changes in the sites. It allows you to maintain and synchronize a local store of a user's sites without having to fetch all the sites from the server every time.The application calls the API without specifying any parameters.The service begins enumerating sites and returns pages of changes to these sites, accompanied by either an @odata.nextLink or an @odata.deltaLink.Your application should continue making calls using the @odata.nextLink until there's an @odata.deltaLink in the response. After you receive all the changes, you can apply them to your local state.To monitor future changes, call the delta API by using the @odata.deltaLink in the previous response. Any resources marked as deleted should be removed from your local state. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/getallsites/GetAllSitesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/getallsites/GetAllSitesRequestBuilder.java index dd3d56daad1..f30e334ba39 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/getallsites/GetAllSitesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/getallsites/GetAllSitesRequestBuilder.java @@ -36,19 +36,21 @@ public GetAllSitesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/sites/getAllSites(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function getAllSites + * List sites across geographies in an organization. This API can also be used to enumerate all sites in a non-multi-geo tenant. For more information, see Best practices for discovering files and detecting changes at scale. * @return a {@link GetAllSitesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetAllSitesGetResponse get() { return get(null); } /** - * Invoke function getAllSites + * List sites across geographies in an organization. This API can also be used to enumerate all sites in a non-multi-geo tenant. For more information, see Best practices for discovering files and detecting changes at scale. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GetAllSitesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetAllSitesGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public GetAllSitesGetResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, GetAllSitesGetResponse::createFromDiscriminatorValue); } /** - * Invoke function getAllSites + * List sites across geographies in an organization. This API can also be used to enumerate all sites in a non-multi-geo tenant. For more information, see Best practices for discovering files and detecting changes at scale. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getAllSites + * List sites across geographies in an organization. This API can also be used to enumerate all sites in a non-multi-geo tenant. For more information, see Best practices for discovering files and detecting changes at scale. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public GetAllSitesRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new GetAllSitesRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function getAllSites + * List sites across geographies in an organization. This API can also be used to enumerate all sites in a non-multi-geo tenant. For more information, see Best practices for discovering files and detecting changes at scale. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/SiteItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/SiteItemRequestBuilder.java index 6768e88628f..81b0ebcad57 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/SiteItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/SiteItemRequestBuilder.java @@ -202,7 +202,7 @@ public SiteItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/sites/{site%2Did}{?%24expand,%24select}", rawUrl); } /** - * Retrieve properties and relationships for a [site][] resource.A site resource represents a team site in SharePoint. + * Retrieve properties and relationships for a site resource.A site resource represents a team site in SharePoint. * @return a {@link Site} * @throws ODataError When receiving a 4XX or 5XX status code * @see Find more info here @@ -212,7 +212,7 @@ public Site get() { return get(null); } /** - * Retrieve properties and relationships for a [site][] resource.A site resource represents a team site in SharePoint. + * Retrieve properties and relationships for a site resource.A site resource represents a team site in SharePoint. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Site} * @throws ODataError When receiving a 4XX or 5XX status code @@ -285,7 +285,7 @@ public Site patch(@jakarta.annotation.Nonnull final Site body, @jakarta.annotati return this.requestAdapter.send(requestInfo, errorMapping, Site::createFromDiscriminatorValue); } /** - * Retrieve properties and relationships for a [site][] resource.A site resource represents a team site in SharePoint. + * Retrieve properties and relationships for a site resource.A site resource represents a team site in SharePoint. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -293,7 +293,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve properties and relationships for a [site][] resource.A site resource represents a team site in SharePoint. + * Retrieve properties and relationships for a site resource.A site resource represents a team site in SharePoint. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -339,7 +339,7 @@ public SiteItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new SiteItemRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve properties and relationships for a [site][] resource.A site resource represents a team site in SharePoint. + * Retrieve properties and relationships for a site resource.A site resource represents a team site in SharePoint. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/analytics/alltime/AllTimeRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/analytics/alltime/AllTimeRequestBuilder.java index 93a9e5e8848..09a60d2c506 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/analytics/alltime/AllTimeRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/analytics/alltime/AllTimeRequestBuilder.java @@ -37,21 +37,19 @@ public AllTimeRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/sites/{site%2Did}/analytics/allTime{?%24expand,%24select}", rawUrl); } /** - * Get [itemAnalytics][] about the views that took place under this resource.The itemAnalytics resource is a convenient way to get activity stats for allTime and the lastSevenDays.For a custom time range or interval, use the [getActivitiesByInterval][] API. + * Get allTime from sites * @return a {@link ItemActivityStat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ItemActivityStat get() { return get(null); } /** - * Get [itemAnalytics][] about the views that took place under this resource.The itemAnalytics resource is a convenient way to get activity stats for allTime and the lastSevenDays.For a custom time range or interval, use the [getActivitiesByInterval][] API. + * Get allTime from sites * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ItemActivityStat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ItemActivityStat get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -61,7 +59,7 @@ public ItemActivityStat get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, ItemActivityStat::createFromDiscriminatorValue); } /** - * Get [itemAnalytics][] about the views that took place under this resource.The itemAnalytics resource is a convenient way to get activity stats for allTime and the lastSevenDays.For a custom time range or interval, use the [getActivitiesByInterval][] API. + * Get allTime from sites * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -69,7 +67,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get [itemAnalytics][] about the views that took place under this resource.The itemAnalytics resource is a convenient way to get activity stats for allTime and the lastSevenDays.For a custom time range or interval, use the [getActivitiesByInterval][] API. + * Get allTime from sites * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -91,7 +89,7 @@ public AllTimeRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new AllTimeRequestBuilder(rawUrl, requestAdapter); } /** - * Get [itemAnalytics][] about the views that took place under this resource.The itemAnalytics resource is a convenient way to get activity stats for allTime and the lastSevenDays.For a custom time range or interval, use the [getActivitiesByInterval][] API. + * Get allTime from sites */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/columns/ColumnsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/columns/ColumnsRequestBuilder.java index 892d5c7bd9c..f9e659b9794 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/columns/ColumnsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/columns/ColumnsRequestBuilder.java @@ -60,21 +60,19 @@ public ColumnsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/sites/{site%2Did}/columns{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [site][site]. + * The collection of column definitions reusable across lists under this site. * @return a {@link ColumnDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinitionCollectionResponse get() { return get(null); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [site][site]. + * The collection of column definitions reusable across lists under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinitionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public ColumnDefinitionCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinitionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a column for a [site][site] with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for sites * @param body The request body * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition body) { return post(body, null); } /** - * Create a column for a [site][site] with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinition::createFromDiscriminatorValue); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [site][site]. + * The collection of column definitions reusable across lists under this site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [site][site]. + * The collection of column definitions reusable across lists under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a column for a [site][site] with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for sites * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a column for a [site][site] with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ColumnsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new ColumnsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [site][site]. + * The collection of column definitions reusable across lists under this site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/ContentTypesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/ContentTypesRequestBuilder.java index b6913aa7d06..b99069aaa7e 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/ContentTypesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/ContentTypesRequestBuilder.java @@ -87,21 +87,19 @@ public ContentTypesRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/sites/{site%2Did}/contentTypes{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the collection of [contentType][contentType] resources in a [site][]. + * The collection of content types defined for this site. * @return a {@link ContentTypeCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentTypeCollectionResponse get() { return get(null); } /** - * Get the collection of [contentType][contentType] resources in a [site][]. + * The collection of content types defined for this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ContentTypeCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentTypeCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,23 +109,21 @@ public ContentTypeCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, ContentTypeCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new [contentType][] in a [site][]. + * Create new navigation property to contentTypes for sites * @param body The request body * @return a {@link ContentType} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentType post(@jakarta.annotation.Nonnull final ContentType body) { return post(body, null); } /** - * Create a new [contentType][] in a [site][]. + * Create new navigation property to contentTypes for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ContentType} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentType post(@jakarta.annotation.Nonnull final ContentType body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -138,7 +134,7 @@ public ContentType post(@jakarta.annotation.Nonnull final ContentType body, @jak return this.requestAdapter.send(requestInfo, errorMapping, ContentType::createFromDiscriminatorValue); } /** - * Get the collection of [contentType][contentType] resources in a [site][]. + * The collection of content types defined for this site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the collection of [contentType][contentType] resources in a [site][]. + * The collection of content types defined for this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -158,7 +154,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new [contentType][] in a [site][]. + * Create new navigation property to contentTypes for sites * @param body The request body * @return a {@link RequestInformation} */ @@ -167,7 +163,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new [contentType][] in a [site][]. + * Create new navigation property to contentTypes for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -192,7 +188,7 @@ public ContentTypesRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri return new ContentTypesRequestBuilder(rawUrl, requestAdapter); } /** - * Get the collection of [contentType][contentType] resources in a [site][]. + * The collection of content types defined for this site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/addcopy/AddCopyRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/addcopy/AddCopyRequestBuilder.java index 9713cd96d6b..963823dbab9 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/addcopy/AddCopyRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/addcopy/AddCopyRequestBuilder.java @@ -36,7 +36,7 @@ public AddCopyRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/sites/{site%2Did}/contentTypes/addCopy", rawUrl); } /** - * Add a copy of a [content type][contentType] from a [site][site] to a [list][list]. + * Add a copy of a content type from a site to a list. * @param body The request body * @return a {@link ContentType} * @throws ODataError When receiving a 4XX or 5XX status code @@ -47,7 +47,7 @@ public ContentType post(@jakarta.annotation.Nonnull final AddCopyPostRequestBody return post(body, null); } /** - * Add a copy of a [content type][contentType] from a [site][site] to a [list][list]. + * Add a copy of a content type from a site to a list. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ContentType} @@ -63,7 +63,7 @@ public ContentType post(@jakarta.annotation.Nonnull final AddCopyPostRequestBody return this.requestAdapter.send(requestInfo, errorMapping, ContentType::createFromDiscriminatorValue); } /** - * Add a copy of a [content type][contentType] from a [site][site] to a [list][list]. + * Add a copy of a content type from a site to a list. * @param body The request body * @return a {@link RequestInformation} */ @@ -72,7 +72,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add a copy of a [content type][contentType] from a [site][site] to a [list][list]. + * Add a copy of a content type from a site to a list. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/getcompatiblehubcontenttypes/GetCompatibleHubContentTypesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/getcompatiblehubcontenttypes/GetCompatibleHubContentTypesRequestBuilder.java index f3c4e3801c5..809a5be2f66 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/getcompatiblehubcontenttypes/GetCompatibleHubContentTypesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/getcompatiblehubcontenttypes/GetCompatibleHubContentTypesRequestBuilder.java @@ -36,19 +36,21 @@ public GetCompatibleHubContentTypesRequestBuilder(@jakarta.annotation.Nonnull fi super(requestAdapter, "{+baseurl}/sites/{site%2Did}/contentTypes/getCompatibleHubContentTypes(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function getCompatibleHubContentTypes + * Get a list of compatible content types from the content type hub that can be added to a target site or a list. This method is part of the content type publishing changes to optimize the syncing of published content types to sites and lists, effectively switching from a 'push everywhere' to 'pull as needed' approach. The method allows users to pull content types directly from the content type hub to a site or list. For more information, see contentType: addCopyFromContentTypeHub and the blog post Syntex Product Updates August 2021. * @return a {@link GetCompatibleHubContentTypesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetCompatibleHubContentTypesGetResponse get() { return get(null); } /** - * Invoke function getCompatibleHubContentTypes + * Get a list of compatible content types from the content type hub that can be added to a target site or a list. This method is part of the content type publishing changes to optimize the syncing of published content types to sites and lists, effectively switching from a 'push everywhere' to 'pull as needed' approach. The method allows users to pull content types directly from the content type hub to a site or list. For more information, see contentType: addCopyFromContentTypeHub and the blog post Syntex Product Updates August 2021. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GetCompatibleHubContentTypesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetCompatibleHubContentTypesGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public GetCompatibleHubContentTypesGetResponse get(@jakarta.annotation.Nullable return this.requestAdapter.send(requestInfo, errorMapping, GetCompatibleHubContentTypesGetResponse::createFromDiscriminatorValue); } /** - * Invoke function getCompatibleHubContentTypes + * Get a list of compatible content types from the content type hub that can be added to a target site or a list. This method is part of the content type publishing changes to optimize the syncing of published content types to sites and lists, effectively switching from a 'push everywhere' to 'pull as needed' approach. The method allows users to pull content types directly from the content type hub to a site or list. For more information, see contentType: addCopyFromContentTypeHub and the blog post Syntex Product Updates August 2021. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getCompatibleHubContentTypes + * Get a list of compatible content types from the content type hub that can be added to a target site or a list. This method is part of the content type publishing changes to optimize the syncing of published content types to sites and lists, effectively switching from a 'push everywhere' to 'pull as needed' approach. The method allows users to pull content types directly from the content type hub to a site or list. For more information, see contentType: addCopyFromContentTypeHub and the blog post Syntex Product Updates August 2021. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public GetCompatibleHubContentTypesRequestBuilder withUrl(@jakarta.annotation.No return new GetCompatibleHubContentTypesRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function getCompatibleHubContentTypes + * Get a list of compatible content types from the content type hub that can be added to a target site or a list. This method is part of the content type publishing changes to optimize the syncing of published content types to sites and lists, effectively switching from a 'push everywhere' to 'pull as needed' approach. The method allows users to pull content types directly from the content type hub to a site or list. For more information, see contentType: addCopyFromContentTypeHub and the blog post Syntex Product Updates August 2021. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/item/ContentTypeItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/item/ContentTypeItemRequestBuilder.java index dd28e5ba2f6..fe62b454ace 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/item/ContentTypeItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/item/ContentTypeItemRequestBuilder.java @@ -127,18 +127,16 @@ public ContentTypeItemRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/sites/{site%2Did}/contentTypes/{contentType%2Did}{?%24expand,%24select}", rawUrl); } /** - * Remove a [content type][contentType] from a [list][] or a [site][]. + * Delete navigation property contentTypes for sites * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove a [content type][contentType] from a [list][] or a [site][]. + * Delete navigation property contentTypes for sites * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -147,21 +145,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the metadata for a [content type][contentType] in a [site][] or a [list][]. + * The collection of content types defined for this site. * @return a {@link ContentType} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentType get() { return get(null); } /** - * Retrieve the metadata for a [content type][contentType] in a [site][] or a [list][]. + * The collection of content types defined for this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ContentType} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentType get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -171,23 +167,21 @@ public ContentType get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.send(requestInfo, errorMapping, ContentType::createFromDiscriminatorValue); } /** - * Update a [content type][contentType]. + * Update the navigation property contentTypes in sites * @param body The request body * @return a {@link ContentType} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentType patch(@jakarta.annotation.Nonnull final ContentType body) { return patch(body, null); } /** - * Update a [content type][contentType]. + * Update the navigation property contentTypes in sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ContentType} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentType patch(@jakarta.annotation.Nonnull final ContentType body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -198,7 +192,7 @@ public ContentType patch(@jakarta.annotation.Nonnull final ContentType body, @ja return this.requestAdapter.send(requestInfo, errorMapping, ContentType::createFromDiscriminatorValue); } /** - * Remove a [content type][contentType] from a [list][] or a [site][]. + * Delete navigation property contentTypes for sites * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -206,7 +200,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove a [content type][contentType] from a [list][] or a [site][]. + * Delete navigation property contentTypes for sites * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -218,7 +212,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the metadata for a [content type][contentType] in a [site][] or a [list][]. + * The collection of content types defined for this site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -226,7 +220,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the metadata for a [content type][contentType] in a [site][] or a [list][]. + * The collection of content types defined for this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -238,7 +232,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update a [content type][contentType]. + * Update the navigation property contentTypes in sites * @param body The request body * @return a {@link RequestInformation} */ @@ -247,7 +241,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update a [content type][contentType]. + * Update the navigation property contentTypes in sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -278,7 +272,7 @@ public ContentTypeItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final S public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the metadata for a [content type][contentType] in a [site][] or a [list][]. + * The collection of content types defined for this site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/item/associatewithhubsites/AssociateWithHubSitesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/item/associatewithhubsites/AssociateWithHubSitesRequestBuilder.java index 1513afc5859..5834991cc9e 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/item/associatewithhubsites/AssociateWithHubSitesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/item/associatewithhubsites/AssociateWithHubSitesRequestBuilder.java @@ -35,7 +35,7 @@ public AssociateWithHubSitesRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/sites/{site%2Did}/contentTypes/{contentType%2Did}/associateWithHubSites", rawUrl); } /** - * Associate a published [content type][contentType] present in a content type hub with a list of hub sites. + * Associate a published content type present in a content type hub with a list of hub sites. * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code * @see Find more info here @@ -44,7 +44,7 @@ public void post(@jakarta.annotation.Nonnull final AssociateWithHubSitesPostRequ post(body, null); } /** - * Associate a published [content type][contentType] present in a content type hub with a list of hub sites. + * Associate a published content type present in a content type hub with a list of hub sites. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code @@ -58,7 +58,7 @@ public void post(@jakarta.annotation.Nonnull final AssociateWithHubSitesPostRequ this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Associate a published [content type][contentType] present in a content type hub with a list of hub sites. + * Associate a published content type present in a content type hub with a list of hub sites. * @param body The request body * @return a {@link RequestInformation} */ @@ -67,7 +67,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Associate a published [content type][contentType] present in a content type hub with a list of hub sites. + * Associate a published content type present in a content type hub with a list of hub sites. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/item/columns/ColumnsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/item/columns/ColumnsRequestBuilder.java index f604ad63508..5de01a57558 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/item/columns/ColumnsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/item/columns/ColumnsRequestBuilder.java @@ -60,21 +60,19 @@ public ColumnsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/sites/{site%2Did}/contentTypes/{contentType%2Did}/columns{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [content type][contentType]. + * The collection of column definitions for this content type. * @return a {@link ColumnDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinitionCollectionResponse get() { return get(null); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [content type][contentType]. + * The collection of column definitions for this content type. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinitionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public ColumnDefinitionCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinitionCollectionResponse::createFromDiscriminatorValue); } /** - * Add a column to a [content type][contentType] in a site, or a list with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for sites * @param body The request body * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition body) { return post(body, null); } /** - * Add a column to a [content type][contentType] in a site, or a list with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinition::createFromDiscriminatorValue); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [content type][contentType]. + * The collection of column definitions for this content type. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [content type][contentType]. + * The collection of column definitions for this content type. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add a column to a [content type][contentType] in a site, or a list with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for sites * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add a column to a [content type][contentType] in a site, or a list with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ColumnsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new ColumnsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [content type][contentType]. + * The collection of column definitions for this content type. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/item/columns/item/ColumnDefinitionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/item/columns/item/ColumnDefinitionItemRequestBuilder.java index daf322c4ece..3ff883018fe 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/item/columns/item/ColumnDefinitionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/item/columns/item/ColumnDefinitionItemRequestBuilder.java @@ -46,18 +46,16 @@ public ColumnDefinitionItemRequestBuilder(@jakarta.annotation.Nonnull final Stri super(requestAdapter, "{+baseurl}/sites/{site%2Did}/contentTypes/{contentType%2Did}/columns/{columnDefinition%2Did}{?%24expand,%24select}", rawUrl); } /** - * Remove a [column][columndefinition] from a [site][], a [list][], or a [content type][contentType]. + * Delete navigation property columns for sites * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove a [column][columndefinition] from a [site][], a [list][], or a [content type][contentType]. + * Delete navigation property columns for sites * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the metadata for a [site][], a [list][], or a [contentType][] [column][columnDefinition]. + * The collection of column definitions for this content type. * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition get() { return get(null); } /** - * Retrieve the metadata for a [site][], a [list][], or a [contentType][] [column][columnDefinition]. + * The collection of column definitions for this content type. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public ColumnDefinition get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinition::createFromDiscriminatorValue); } /** - * Update a [site][], a [list][], or a [content type][contentType] [column][columnDefinition]. + * Update the navigation property columns in sites * @param body The request body * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition patch(@jakarta.annotation.Nonnull final ColumnDefinition body) { return patch(body, null); } /** - * Update a [site][], a [list][], or a [content type][contentType] [column][columnDefinition]. + * Update the navigation property columns in sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition patch(@jakarta.annotation.Nonnull final ColumnDefinition body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public ColumnDefinition patch(@jakarta.annotation.Nonnull final ColumnDefinition return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinition::createFromDiscriminatorValue); } /** - * Remove a [column][columndefinition] from a [site][], a [list][], or a [content type][contentType]. + * Delete navigation property columns for sites * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove a [column][columndefinition] from a [site][], a [list][], or a [content type][contentType]. + * Delete navigation property columns for sites * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the metadata for a [site][], a [list][], or a [contentType][] [column][columnDefinition]. + * The collection of column definitions for this content type. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the metadata for a [site][], a [list][], or a [contentType][] [column][columnDefinition]. + * The collection of column definitions for this content type. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update a [site][], a [list][], or a [content type][contentType] [column][columnDefinition]. + * Update the navigation property columns in sites * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update a [site][], a [list][], or a [content type][contentType] [column][columnDefinition]. + * Update the navigation property columns in sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public ColumnDefinitionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fi public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the metadata for a [site][], a [list][], or a [contentType][] [column][columnDefinition]. + * The collection of column definitions for this content type. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/item/copytodefaultcontentlocation/CopyToDefaultContentLocationRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/item/copytodefaultcontentlocation/CopyToDefaultContentLocationRequestBuilder.java index 81936b67ba5..f2d63424493 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/item/copytodefaultcontentlocation/CopyToDefaultContentLocationRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/item/copytodefaultcontentlocation/CopyToDefaultContentLocationRequestBuilder.java @@ -35,7 +35,7 @@ public CopyToDefaultContentLocationRequestBuilder(@jakarta.annotation.Nonnull fi super(requestAdapter, "{+baseurl}/sites/{site%2Did}/contentTypes/{contentType%2Did}/copyToDefaultContentLocation", rawUrl); } /** - * Copy a file to a default content location in a [content type][contentType]. The file can then be added as a default file or template via a POST operation. + * Copy a file to a default content location in a content type. The file can then be added as a default file or template via a POST operation. * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code * @see Find more info here @@ -44,7 +44,7 @@ public void post(@jakarta.annotation.Nonnull final CopyToDefaultContentLocationP post(body, null); } /** - * Copy a file to a default content location in a [content type][contentType]. The file can then be added as a default file or template via a POST operation. + * Copy a file to a default content location in a content type. The file can then be added as a default file or template via a POST operation. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code @@ -58,7 +58,7 @@ public void post(@jakarta.annotation.Nonnull final CopyToDefaultContentLocationP this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Copy a file to a default content location in a [content type][contentType]. The file can then be added as a default file or template via a POST operation. + * Copy a file to a default content location in a content type. The file can then be added as a default file or template via a POST operation. * @param body The request body * @return a {@link RequestInformation} */ @@ -67,7 +67,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Copy a file to a default content location in a [content type][contentType]. The file can then be added as a default file or template via a POST operation. + * Copy a file to a default content location in a content type. The file can then be added as a default file or template via a POST operation. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/item/ispublished/IsPublishedRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/item/ispublished/IsPublishedRequestBuilder.java index a0781f13e19..a26e4ea7873 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/item/ispublished/IsPublishedRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/item/ispublished/IsPublishedRequestBuilder.java @@ -35,19 +35,21 @@ public IsPublishedRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/sites/{site%2Did}/contentTypes/{contentType%2Did}/isPublished()", rawUrl); } /** - * Invoke function isPublished + * Check the publishing status of a contentType in a content type hub site. * @return a {@link IsPublishedGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public IsPublishedGetResponse get() { return get(null); } /** - * Invoke function isPublished + * Check the publishing status of a contentType in a content type hub site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link IsPublishedGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public IsPublishedGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -57,7 +59,7 @@ public IsPublishedGetResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, IsPublishedGetResponse::createFromDiscriminatorValue); } /** - * Invoke function isPublished + * Check the publishing status of a contentType in a content type hub site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -65,7 +67,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function isPublished + * Check the publishing status of a contentType in a content type hub site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/item/publish/PublishRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/item/publish/PublishRequestBuilder.java index d07f60c9467..d202244e906 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/item/publish/PublishRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/item/publish/PublishRequestBuilder.java @@ -35,7 +35,7 @@ public PublishRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/sites/{site%2Did}/contentTypes/{contentType%2Did}/publish", rawUrl); } /** - * Publishes a [contentType][] present in the content type hub site. + * Publishes a contentType present in the content type hub site. * @throws ODataError When receiving a 4XX or 5XX status code * @see Find more info here */ @@ -43,7 +43,7 @@ public void post() { post(null); } /** - * Publishes a [contentType][] present in the content type hub site. + * Publishes a contentType present in the content type hub site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code * @see Find more info here @@ -55,7 +55,7 @@ public void post(@jakarta.annotation.Nullable final java.util.function.Consumer< this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Publishes a [contentType][] present in the content type hub site. + * Publishes a contentType present in the content type hub site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -63,7 +63,7 @@ public RequestInformation toPostRequestInformation() { return toPostRequestInformation(null); } /** - * Publishes a [contentType][] present in the content type hub site. + * Publishes a contentType present in the content type hub site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/item/unpublish/UnpublishRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/item/unpublish/UnpublishRequestBuilder.java index 1856906715f..10e17be61b1 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/item/unpublish/UnpublishRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/contenttypes/item/unpublish/UnpublishRequestBuilder.java @@ -35,7 +35,7 @@ public UnpublishRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/sites/{site%2Did}/contentTypes/{contentType%2Did}/unpublish", rawUrl); } /** - * Unpublish a [contentType][] from a content type hub site. + * Unpublish a contentType from a content type hub site. * @throws ODataError When receiving a 4XX or 5XX status code * @see Find more info here */ @@ -43,7 +43,7 @@ public void post() { post(null); } /** - * Unpublish a [contentType][] from a content type hub site. + * Unpublish a contentType from a content type hub site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code * @see Find more info here @@ -55,7 +55,7 @@ public void post(@jakarta.annotation.Nullable final java.util.function.Consumer< this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Unpublish a [contentType][] from a content type hub site. + * Unpublish a contentType from a content type hub site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -63,7 +63,7 @@ public RequestInformation toPostRequestInformation() { return toPostRequestInformation(null); } /** - * Unpublish a [contentType][] from a content type hub site. + * Unpublish a contentType from a content type hub site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/getapplicablecontenttypesforlistwithlistid/GetApplicableContentTypesForListWithListIdRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/getapplicablecontenttypesforlistwithlistid/GetApplicableContentTypesForListWithListIdRequestBuilder.java index 0b124a3697d..7d1ba3efdbf 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/getapplicablecontenttypesforlistwithlistid/GetApplicableContentTypesForListWithListIdRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/getapplicablecontenttypesforlistwithlistid/GetApplicableContentTypesForListWithListIdRequestBuilder.java @@ -38,19 +38,21 @@ public GetApplicableContentTypesForListWithListIdRequestBuilder(@jakarta.annotat super(requestAdapter, "{+baseurl}/sites/{site%2Did}/getApplicableContentTypesForList(listId='{listId}'){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function getApplicableContentTypesForList + * Get site contentTypes that can be added to a list. * @return a {@link GetApplicableContentTypesForListWithListIdGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetApplicableContentTypesForListWithListIdGetResponse get() { return get(null); } /** - * Invoke function getApplicableContentTypesForList + * Get site contentTypes that can be added to a list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GetApplicableContentTypesForListWithListIdGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetApplicableContentTypesForListWithListIdGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public GetApplicableContentTypesForListWithListIdGetResponse get(@jakarta.annota return this.requestAdapter.send(requestInfo, errorMapping, GetApplicableContentTypesForListWithListIdGetResponse::createFromDiscriminatorValue); } /** - * Invoke function getApplicableContentTypesForList + * Get site contentTypes that can be added to a list. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getApplicableContentTypesForList + * Get site contentTypes that can be added to a list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -90,7 +92,7 @@ public GetApplicableContentTypesForListWithListIdRequestBuilder withUrl(@jakarta return new GetApplicableContentTypesForListWithListIdRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function getApplicableContentTypesForList + * Get site contentTypes that can be added to a list. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/columns/ColumnsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/columns/ColumnsRequestBuilder.java index 587b9731078..7a27709b877 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/columns/ColumnsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/columns/ColumnsRequestBuilder.java @@ -38,21 +38,19 @@ public ColumnsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/sites/{site%2Did}/getByPath(path='{path}')/columns{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [site][site]. + * The collection of column definitions reusable across lists under this site. * @return a {@link ColumnDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinitionCollectionResponse get() { return get(null); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [site][site]. + * The collection of column definitions reusable across lists under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinitionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -62,23 +60,21 @@ public ColumnDefinitionCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinitionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a column for a [site][site] with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for sites * @param body The request body * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition body) { return post(body, null); } /** - * Create a column for a [site][site] with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -89,7 +85,7 @@ public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinition::createFromDiscriminatorValue); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [site][site]. + * The collection of column definitions reusable across lists under this site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -97,7 +93,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [site][site]. + * The collection of column definitions reusable across lists under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -109,7 +105,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a column for a [site][site] with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for sites * @param body The request body * @return a {@link RequestInformation} */ @@ -118,7 +114,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a column for a [site][site] with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -143,7 +139,7 @@ public ColumnsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new ColumnsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [site][site]. + * The collection of column definitions reusable across lists under this site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/contenttypes/ContentTypesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/contenttypes/ContentTypesRequestBuilder.java index 73c7c00bd71..05e979b84e7 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/contenttypes/ContentTypesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/contenttypes/ContentTypesRequestBuilder.java @@ -38,21 +38,19 @@ public ContentTypesRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/sites/{site%2Did}/getByPath(path='{path}')/contentTypes{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the collection of [contentType][contentType] resources in a [site][]. + * The collection of content types defined for this site. * @return a {@link ContentTypeCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentTypeCollectionResponse get() { return get(null); } /** - * Get the collection of [contentType][contentType] resources in a [site][]. + * The collection of content types defined for this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ContentTypeCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentTypeCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -62,23 +60,21 @@ public ContentTypeCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, ContentTypeCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new [contentType][] in a [site][]. + * Create new navigation property to contentTypes for sites * @param body The request body * @return a {@link ContentType} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentType post(@jakarta.annotation.Nonnull final ContentType body) { return post(body, null); } /** - * Create a new [contentType][] in a [site][]. + * Create new navigation property to contentTypes for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ContentType} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentType post(@jakarta.annotation.Nonnull final ContentType body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -89,7 +85,7 @@ public ContentType post(@jakarta.annotation.Nonnull final ContentType body, @jak return this.requestAdapter.send(requestInfo, errorMapping, ContentType::createFromDiscriminatorValue); } /** - * Get the collection of [contentType][contentType] resources in a [site][]. + * The collection of content types defined for this site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -97,7 +93,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the collection of [contentType][contentType] resources in a [site][]. + * The collection of content types defined for this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -109,7 +105,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new [contentType][] in a [site][]. + * Create new navigation property to contentTypes for sites * @param body The request body * @return a {@link RequestInformation} */ @@ -118,7 +114,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new [contentType][] in a [site][]. + * Create new navigation property to contentTypes for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -143,7 +139,7 @@ public ContentTypesRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri return new ContentTypesRequestBuilder(rawUrl, requestAdapter); } /** - * Get the collection of [contentType][contentType] resources in a [site][]. + * The collection of content types defined for this site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/getapplicablecontenttypesforlistwithlistid/GetApplicableContentTypesForListWithListIdRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/getapplicablecontenttypesforlistwithlistid/GetApplicableContentTypesForListWithListIdRequestBuilder.java index 7f5307a634f..6862d494082 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/getapplicablecontenttypesforlistwithlistid/GetApplicableContentTypesForListWithListIdRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/getapplicablecontenttypesforlistwithlistid/GetApplicableContentTypesForListWithListIdRequestBuilder.java @@ -38,19 +38,21 @@ public GetApplicableContentTypesForListWithListIdRequestBuilder(@jakarta.annotat super(requestAdapter, "{+baseurl}/sites/{site%2Did}/getByPath(path='{path}')/getApplicableContentTypesForList(listId='{listId}'){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function getApplicableContentTypesForList + * Get site contentTypes that can be added to a list. * @return a {@link GetApplicableContentTypesForListWithListIdGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetApplicableContentTypesForListWithListIdGetResponse get() { return get(null); } /** - * Invoke function getApplicableContentTypesForList + * Get site contentTypes that can be added to a list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GetApplicableContentTypesForListWithListIdGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetApplicableContentTypesForListWithListIdGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public GetApplicableContentTypesForListWithListIdGetResponse get(@jakarta.annota return this.requestAdapter.send(requestInfo, errorMapping, GetApplicableContentTypesForListWithListIdGetResponse::createFromDiscriminatorValue); } /** - * Invoke function getApplicableContentTypesForList + * Get site contentTypes that can be added to a list. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getApplicableContentTypesForList + * Get site contentTypes that can be added to a list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -90,7 +92,7 @@ public GetApplicableContentTypesForListWithListIdRequestBuilder withUrl(@jakarta return new GetApplicableContentTypesForListWithListIdRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function getApplicableContentTypesForList + * Get site contentTypes that can be added to a list. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/getbypathwithpath1/columns/ColumnsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/getbypathwithpath1/columns/ColumnsRequestBuilder.java index a9c8468a520..34c0daa426d 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/getbypathwithpath1/columns/ColumnsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/getbypathwithpath1/columns/ColumnsRequestBuilder.java @@ -38,21 +38,19 @@ public ColumnsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/sites/{site%2Did}/getByPath(path='{path}')/getByPath(path='{path1}')/columns{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [site][site]. + * The collection of column definitions reusable across lists under this site. * @return a {@link ColumnDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinitionCollectionResponse get() { return get(null); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [site][site]. + * The collection of column definitions reusable across lists under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinitionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -62,23 +60,21 @@ public ColumnDefinitionCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinitionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a column for a [site][site] with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for sites * @param body The request body * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition body) { return post(body, null); } /** - * Create a column for a [site][site] with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -89,7 +85,7 @@ public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinition::createFromDiscriminatorValue); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [site][site]. + * The collection of column definitions reusable across lists under this site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -97,7 +93,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [site][site]. + * The collection of column definitions reusable across lists under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -109,7 +105,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a column for a [site][site] with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for sites * @param body The request body * @return a {@link RequestInformation} */ @@ -118,7 +114,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a column for a [site][site] with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -143,7 +139,7 @@ public ColumnsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new ColumnsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [site][site]. + * The collection of column definitions reusable across lists under this site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/getbypathwithpath1/contenttypes/ContentTypesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/getbypathwithpath1/contenttypes/ContentTypesRequestBuilder.java index c368c9196e7..7dcfe4379af 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/getbypathwithpath1/contenttypes/ContentTypesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/getbypathwithpath1/contenttypes/ContentTypesRequestBuilder.java @@ -38,21 +38,19 @@ public ContentTypesRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/sites/{site%2Did}/getByPath(path='{path}')/getByPath(path='{path1}')/contentTypes{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the collection of [contentType][contentType] resources in a [site][]. + * The collection of content types defined for this site. * @return a {@link ContentTypeCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentTypeCollectionResponse get() { return get(null); } /** - * Get the collection of [contentType][contentType] resources in a [site][]. + * The collection of content types defined for this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ContentTypeCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentTypeCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -62,23 +60,21 @@ public ContentTypeCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, ContentTypeCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new [contentType][] in a [site][]. + * Create new navigation property to contentTypes for sites * @param body The request body * @return a {@link ContentType} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentType post(@jakarta.annotation.Nonnull final ContentType body) { return post(body, null); } /** - * Create a new [contentType][] in a [site][]. + * Create new navigation property to contentTypes for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ContentType} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentType post(@jakarta.annotation.Nonnull final ContentType body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -89,7 +85,7 @@ public ContentType post(@jakarta.annotation.Nonnull final ContentType body, @jak return this.requestAdapter.send(requestInfo, errorMapping, ContentType::createFromDiscriminatorValue); } /** - * Get the collection of [contentType][contentType] resources in a [site][]. + * The collection of content types defined for this site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -97,7 +93,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the collection of [contentType][contentType] resources in a [site][]. + * The collection of content types defined for this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -109,7 +105,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new [contentType][] in a [site][]. + * Create new navigation property to contentTypes for sites * @param body The request body * @return a {@link RequestInformation} */ @@ -118,7 +114,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new [contentType][] in a [site][]. + * Create new navigation property to contentTypes for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -143,7 +139,7 @@ public ContentTypesRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri return new ContentTypesRequestBuilder(rawUrl, requestAdapter); } /** - * Get the collection of [contentType][contentType] resources in a [site][]. + * The collection of content types defined for this site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/getbypathwithpath1/lists/ListsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/getbypathwithpath1/lists/ListsRequestBuilder.java index c1d6fec4354..16f3bd9a573 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/getbypathwithpath1/lists/ListsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/getbypathwithpath1/lists/ListsRequestBuilder.java @@ -38,21 +38,19 @@ public ListsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/sites/{site%2Did}/getByPath(path='{path}')/getByPath(path='{path1}')/lists{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the collection of [lists][] for a [site][]. Lists with the [system][] facet are hidden by default.To list them, include system in your $select statement. + * The collection of lists under this site. * @return a {@link ListCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListCollectionResponse get() { return get(null); } /** - * Get the collection of [lists][] for a [site][]. Lists with the [system][] facet are hidden by default.To list them, include system in your $select statement. + * The collection of lists under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ListCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -62,23 +60,21 @@ public ListCollectionResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, ListCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new [list][] in a [site][]. + * Create new navigation property to lists for sites * @param body The request body * @return a {@link List} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public List post(@jakarta.annotation.Nonnull final List body) { return post(body, null); } /** - * Create a new [list][] in a [site][]. + * Create new navigation property to lists for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link List} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public List post(@jakarta.annotation.Nonnull final List body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -89,7 +85,7 @@ public List post(@jakarta.annotation.Nonnull final List body, @jakarta.annotatio return this.requestAdapter.send(requestInfo, errorMapping, List::createFromDiscriminatorValue); } /** - * Get the collection of [lists][] for a [site][]. Lists with the [system][] facet are hidden by default.To list them, include system in your $select statement. + * The collection of lists under this site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -97,7 +93,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the collection of [lists][] for a [site][]. Lists with the [system][] facet are hidden by default.To list them, include system in your $select statement. + * The collection of lists under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -109,7 +105,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new [list][] in a [site][]. + * Create new navigation property to lists for sites * @param body The request body * @return a {@link RequestInformation} */ @@ -118,7 +114,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new [list][] in a [site][]. + * Create new navigation property to lists for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -143,7 +139,7 @@ public ListsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new ListsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the collection of [lists][] for a [site][]. Lists with the [system][] facet are hidden by default.To list them, include system in your $select statement. + * The collection of lists under this site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/getbypathwithpath1/operations/OperationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/getbypathwithpath1/operations/OperationsRequestBuilder.java index 802ff563e07..0d44a2de3da 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/getbypathwithpath1/operations/OperationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/getbypathwithpath1/operations/OperationsRequestBuilder.java @@ -38,21 +38,19 @@ public OperationsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/sites/{site%2Did}/getByPath(path='{path}')/getByPath(path='{path1}')/operations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of rich long-running operations associated with a site. + * The collection of long-running operations on the site. * @return a {@link RichLongRunningOperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RichLongRunningOperationCollectionResponse get() { return get(null); } /** - * Get a list of rich long-running operations associated with a site. + * The collection of long-running operations on the site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RichLongRunningOperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RichLongRunningOperationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -87,7 +85,7 @@ public RichLongRunningOperation post(@jakarta.annotation.Nonnull final RichLongR return this.requestAdapter.send(requestInfo, errorMapping, RichLongRunningOperation::createFromDiscriminatorValue); } /** - * Get a list of rich long-running operations associated with a site. + * The collection of long-running operations on the site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -95,7 +93,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of rich long-running operations associated with a site. + * The collection of long-running operations on the site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -141,7 +139,7 @@ public OperationsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new OperationsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of rich long-running operations associated with a site. + * The collection of long-running operations on the site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/getbypathwithpath1/pages/PagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/getbypathwithpath1/pages/PagesRequestBuilder.java index ab8ef14f441..a3f7d228027 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/getbypathwithpath1/pages/PagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/getbypathwithpath1/pages/PagesRequestBuilder.java @@ -38,21 +38,19 @@ public PagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/sites/{site%2Did}/getByPath(path='{path}')/getByPath(path='{path1}')/pages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the collection of [baseSitePage][] objects from the site pages [list][] in a [site][]. All pages in the site are returned (with pagination). Sort alphabetically by name in ascending order. The following table lists the available subtypes. + * The collection of pages in the baseSitePages list in this site. * @return a {@link BaseSitePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BaseSitePageCollectionResponse get() { return get(null); } /** - * Get the collection of [baseSitePage][] objects from the site pages [list][] in a [site][]. All pages in the site are returned (with pagination). Sort alphabetically by name in ascending order. The following table lists the available subtypes. + * The collection of pages in the baseSitePages list in this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BaseSitePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BaseSitePageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -62,23 +60,21 @@ public BaseSitePageCollectionResponse get(@jakarta.annotation.Nullable final jav return this.requestAdapter.send(requestInfo, errorMapping, BaseSitePageCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new [sitePage][] in the site pages [list][] in a [site][]. + * Create new navigation property to pages for sites * @param body The request body * @return a {@link BaseSitePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BaseSitePage post(@jakarta.annotation.Nonnull final BaseSitePage body) { return post(body, null); } /** - * Create a new [sitePage][] in the site pages [list][] in a [site][]. + * Create new navigation property to pages for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BaseSitePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BaseSitePage post(@jakarta.annotation.Nonnull final BaseSitePage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -89,7 +85,7 @@ public BaseSitePage post(@jakarta.annotation.Nonnull final BaseSitePage body, @j return this.requestAdapter.send(requestInfo, errorMapping, BaseSitePage::createFromDiscriminatorValue); } /** - * Get the collection of [baseSitePage][] objects from the site pages [list][] in a [site][]. All pages in the site are returned (with pagination). Sort alphabetically by name in ascending order. The following table lists the available subtypes. + * The collection of pages in the baseSitePages list in this site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -97,7 +93,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the collection of [baseSitePage][] objects from the site pages [list][] in a [site][]. All pages in the site are returned (with pagination). Sort alphabetically by name in ascending order. The following table lists the available subtypes. + * The collection of pages in the baseSitePages list in this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -109,7 +105,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new [sitePage][] in the site pages [list][] in a [site][]. + * Create new navigation property to pages for sites * @param body The request body * @return a {@link RequestInformation} */ @@ -118,7 +114,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new [sitePage][] in the site pages [list][] in a [site][]. + * Create new navigation property to pages for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -143,7 +139,7 @@ public PagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new PagesRequestBuilder(rawUrl, requestAdapter); } /** - * Get the collection of [baseSitePage][] objects from the site pages [list][] in a [site][]. All pages in the site are returned (with pagination). Sort alphabetically by name in ascending order. The following table lists the available subtypes. + * The collection of pages in the baseSitePages list in this site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/getbypathwithpath1/permissions/PermissionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/getbypathwithpath1/permissions/PermissionsRequestBuilder.java index 03889311cf5..ee288b7ca8a 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/getbypathwithpath1/permissions/PermissionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/getbypathwithpath1/permissions/PermissionsRequestBuilder.java @@ -38,21 +38,19 @@ public PermissionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/sites/{site%2Did}/getByPath(path='{path}')/getByPath(path='{path1}')/permissions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the permission resources from the permissions navigation property on a site. + * The permissions associated with the site. Nullable. * @return a {@link PermissionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PermissionCollectionResponse get() { return get(null); } /** - * Get the permission resources from the permissions navigation property on a site. + * The permissions associated with the site. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PermissionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PermissionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -62,23 +60,21 @@ public PermissionCollectionResponse get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, PermissionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new permission object on a site. + * Create new navigation property to permissions for sites * @param body The request body * @return a {@link Permission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Permission post(@jakarta.annotation.Nonnull final Permission body) { return post(body, null); } /** - * Create a new permission object on a site. + * Create new navigation property to permissions for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Permission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Permission post(@jakarta.annotation.Nonnull final Permission body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -89,7 +85,7 @@ public Permission post(@jakarta.annotation.Nonnull final Permission body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, Permission::createFromDiscriminatorValue); } /** - * Get the permission resources from the permissions navigation property on a site. + * The permissions associated with the site. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -97,7 +93,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the permission resources from the permissions navigation property on a site. + * The permissions associated with the site. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -109,7 +105,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new permission object on a site. + * Create new navigation property to permissions for sites * @param body The request body * @return a {@link RequestInformation} */ @@ -118,7 +114,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new permission object on a site. + * Create new navigation property to permissions for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -143,7 +139,7 @@ public PermissionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new PermissionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the permission resources from the permissions navigation property on a site. + * The permissions associated with the site. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/getbypathwithpath1/sites/SitesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/getbypathwithpath1/sites/SitesRequestBuilder.java index 3a1f1a7c0c5..00f42e71606 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/getbypathwithpath1/sites/SitesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/getbypathwithpath1/sites/SitesRequestBuilder.java @@ -37,21 +37,19 @@ public SitesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/sites/{site%2Did}/getByPath(path='{path}')/getByPath(path='{path1}')/sites{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a collection of subsites defined for a [site][]. + * The collection of the sub-sites under this site. * @return a {@link SiteCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SiteCollectionResponse get() { return get(null); } /** - * Get a collection of subsites defined for a [site][]. + * The collection of the sub-sites under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SiteCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SiteCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -61,7 +59,7 @@ public SiteCollectionResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, SiteCollectionResponse::createFromDiscriminatorValue); } /** - * Get a collection of subsites defined for a [site][]. + * The collection of the sub-sites under this site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -69,7 +67,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a collection of subsites defined for a [site][]. + * The collection of the sub-sites under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -91,7 +89,7 @@ public SitesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new SitesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a collection of subsites defined for a [site][]. + * The collection of the sub-sites under this site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/getbypathwithpath1/termstore/TermStoreRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/getbypathwithpath1/termstore/TermStoreRequestBuilder.java index ddd6e97016a..d93069fb30f 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/getbypathwithpath1/termstore/TermStoreRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/getbypathwithpath1/termstore/TermStoreRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a store object. + * The default termStore under this site. * @return a {@link Store} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Store get() { return get(null); } /** - * Read the properties and relationships of a store object. + * The default termStore under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Store} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Store get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public Store get(@jakarta.annotation.Nullable final java.util.function.Consumer< return this.requestAdapter.send(requestInfo, errorMapping, Store::createFromDiscriminatorValue); } /** - * Update the properties of a store object. + * Update the navigation property termStore in sites * @param body The request body * @return a {@link Store} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Store patch(@jakarta.annotation.Nonnull final Store body) { return patch(body, null); } /** - * Update the properties of a store object. + * Update the navigation property termStore in sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Store} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Store patch(@jakarta.annotation.Nonnull final Store body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a store object. + * The default termStore under this site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a store object. + * The default termStore under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a store object. + * Update the navigation property termStore in sites * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a store object. + * Update the navigation property termStore in sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public TermStoreRequestBuilder withUrl(@jakarta.annotation.Nonnull final String public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a store object. + * The default termStore under this site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/lists/ListsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/lists/ListsRequestBuilder.java index 8eb40a7c483..c8be8ea0a7f 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/lists/ListsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/lists/ListsRequestBuilder.java @@ -38,21 +38,19 @@ public ListsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/sites/{site%2Did}/getByPath(path='{path}')/lists{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the collection of [lists][] for a [site][]. Lists with the [system][] facet are hidden by default.To list them, include system in your $select statement. + * The collection of lists under this site. * @return a {@link ListCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListCollectionResponse get() { return get(null); } /** - * Get the collection of [lists][] for a [site][]. Lists with the [system][] facet are hidden by default.To list them, include system in your $select statement. + * The collection of lists under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ListCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -62,23 +60,21 @@ public ListCollectionResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, ListCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new [list][] in a [site][]. + * Create new navigation property to lists for sites * @param body The request body * @return a {@link List} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public List post(@jakarta.annotation.Nonnull final List body) { return post(body, null); } /** - * Create a new [list][] in a [site][]. + * Create new navigation property to lists for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link List} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public List post(@jakarta.annotation.Nonnull final List body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -89,7 +85,7 @@ public List post(@jakarta.annotation.Nonnull final List body, @jakarta.annotatio return this.requestAdapter.send(requestInfo, errorMapping, List::createFromDiscriminatorValue); } /** - * Get the collection of [lists][] for a [site][]. Lists with the [system][] facet are hidden by default.To list them, include system in your $select statement. + * The collection of lists under this site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -97,7 +93,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the collection of [lists][] for a [site][]. Lists with the [system][] facet are hidden by default.To list them, include system in your $select statement. + * The collection of lists under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -109,7 +105,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new [list][] in a [site][]. + * Create new navigation property to lists for sites * @param body The request body * @return a {@link RequestInformation} */ @@ -118,7 +114,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new [list][] in a [site][]. + * Create new navigation property to lists for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -143,7 +139,7 @@ public ListsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new ListsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the collection of [lists][] for a [site][]. Lists with the [system][] facet are hidden by default.To list them, include system in your $select statement. + * The collection of lists under this site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/operations/OperationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/operations/OperationsRequestBuilder.java index 569f93fafce..6502267827b 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/operations/OperationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/operations/OperationsRequestBuilder.java @@ -38,21 +38,19 @@ public OperationsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/sites/{site%2Did}/getByPath(path='{path}')/operations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of rich long-running operations associated with a site. + * The collection of long-running operations on the site. * @return a {@link RichLongRunningOperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RichLongRunningOperationCollectionResponse get() { return get(null); } /** - * Get a list of rich long-running operations associated with a site. + * The collection of long-running operations on the site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RichLongRunningOperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RichLongRunningOperationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -87,7 +85,7 @@ public RichLongRunningOperation post(@jakarta.annotation.Nonnull final RichLongR return this.requestAdapter.send(requestInfo, errorMapping, RichLongRunningOperation::createFromDiscriminatorValue); } /** - * Get a list of rich long-running operations associated with a site. + * The collection of long-running operations on the site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -95,7 +93,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of rich long-running operations associated with a site. + * The collection of long-running operations on the site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -141,7 +139,7 @@ public OperationsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new OperationsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of rich long-running operations associated with a site. + * The collection of long-running operations on the site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/pages/PagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/pages/PagesRequestBuilder.java index cef2fc1b088..d3b82ba293f 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/pages/PagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/pages/PagesRequestBuilder.java @@ -38,21 +38,19 @@ public PagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/sites/{site%2Did}/getByPath(path='{path}')/pages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the collection of [baseSitePage][] objects from the site pages [list][] in a [site][]. All pages in the site are returned (with pagination). Sort alphabetically by name in ascending order. The following table lists the available subtypes. + * The collection of pages in the baseSitePages list in this site. * @return a {@link BaseSitePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BaseSitePageCollectionResponse get() { return get(null); } /** - * Get the collection of [baseSitePage][] objects from the site pages [list][] in a [site][]. All pages in the site are returned (with pagination). Sort alphabetically by name in ascending order. The following table lists the available subtypes. + * The collection of pages in the baseSitePages list in this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BaseSitePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BaseSitePageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -62,23 +60,21 @@ public BaseSitePageCollectionResponse get(@jakarta.annotation.Nullable final jav return this.requestAdapter.send(requestInfo, errorMapping, BaseSitePageCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new [sitePage][] in the site pages [list][] in a [site][]. + * Create new navigation property to pages for sites * @param body The request body * @return a {@link BaseSitePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BaseSitePage post(@jakarta.annotation.Nonnull final BaseSitePage body) { return post(body, null); } /** - * Create a new [sitePage][] in the site pages [list][] in a [site][]. + * Create new navigation property to pages for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BaseSitePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BaseSitePage post(@jakarta.annotation.Nonnull final BaseSitePage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -89,7 +85,7 @@ public BaseSitePage post(@jakarta.annotation.Nonnull final BaseSitePage body, @j return this.requestAdapter.send(requestInfo, errorMapping, BaseSitePage::createFromDiscriminatorValue); } /** - * Get the collection of [baseSitePage][] objects from the site pages [list][] in a [site][]. All pages in the site are returned (with pagination). Sort alphabetically by name in ascending order. The following table lists the available subtypes. + * The collection of pages in the baseSitePages list in this site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -97,7 +93,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the collection of [baseSitePage][] objects from the site pages [list][] in a [site][]. All pages in the site are returned (with pagination). Sort alphabetically by name in ascending order. The following table lists the available subtypes. + * The collection of pages in the baseSitePages list in this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -109,7 +105,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new [sitePage][] in the site pages [list][] in a [site][]. + * Create new navigation property to pages for sites * @param body The request body * @return a {@link RequestInformation} */ @@ -118,7 +114,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new [sitePage][] in the site pages [list][] in a [site][]. + * Create new navigation property to pages for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -143,7 +139,7 @@ public PagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new PagesRequestBuilder(rawUrl, requestAdapter); } /** - * Get the collection of [baseSitePage][] objects from the site pages [list][] in a [site][]. All pages in the site are returned (with pagination). Sort alphabetically by name in ascending order. The following table lists the available subtypes. + * The collection of pages in the baseSitePages list in this site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/permissions/PermissionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/permissions/PermissionsRequestBuilder.java index b23aafd0ece..1d391d5d90a 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/permissions/PermissionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/permissions/PermissionsRequestBuilder.java @@ -38,21 +38,19 @@ public PermissionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/sites/{site%2Did}/getByPath(path='{path}')/permissions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the permission resources from the permissions navigation property on a site. + * The permissions associated with the site. Nullable. * @return a {@link PermissionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PermissionCollectionResponse get() { return get(null); } /** - * Get the permission resources from the permissions navigation property on a site. + * The permissions associated with the site. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PermissionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PermissionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -62,23 +60,21 @@ public PermissionCollectionResponse get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, PermissionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new permission object on a site. + * Create new navigation property to permissions for sites * @param body The request body * @return a {@link Permission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Permission post(@jakarta.annotation.Nonnull final Permission body) { return post(body, null); } /** - * Create a new permission object on a site. + * Create new navigation property to permissions for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Permission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Permission post(@jakarta.annotation.Nonnull final Permission body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -89,7 +85,7 @@ public Permission post(@jakarta.annotation.Nonnull final Permission body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, Permission::createFromDiscriminatorValue); } /** - * Get the permission resources from the permissions navigation property on a site. + * The permissions associated with the site. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -97,7 +93,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the permission resources from the permissions navigation property on a site. + * The permissions associated with the site. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -109,7 +105,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new permission object on a site. + * Create new navigation property to permissions for sites * @param body The request body * @return a {@link RequestInformation} */ @@ -118,7 +114,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new permission object on a site. + * Create new navigation property to permissions for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -143,7 +139,7 @@ public PermissionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new PermissionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the permission resources from the permissions navigation property on a site. + * The permissions associated with the site. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/sites/SitesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/sites/SitesRequestBuilder.java index c4ed5e10d85..ec40aa7c7ea 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/sites/SitesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/sites/SitesRequestBuilder.java @@ -37,21 +37,19 @@ public SitesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/sites/{site%2Did}/getByPath(path='{path}')/sites{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a collection of subsites defined for a [site][]. + * The collection of the sub-sites under this site. * @return a {@link SiteCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SiteCollectionResponse get() { return get(null); } /** - * Get a collection of subsites defined for a [site][]. + * The collection of the sub-sites under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SiteCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SiteCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -61,7 +59,7 @@ public SiteCollectionResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, SiteCollectionResponse::createFromDiscriminatorValue); } /** - * Get a collection of subsites defined for a [site][]. + * The collection of the sub-sites under this site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -69,7 +67,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a collection of subsites defined for a [site][]. + * The collection of the sub-sites under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -91,7 +89,7 @@ public SitesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new SitesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a collection of subsites defined for a [site][]. + * The collection of the sub-sites under this site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/termstore/TermStoreRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/termstore/TermStoreRequestBuilder.java index a0daba46232..4522da5c3cb 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/termstore/TermStoreRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/getbypathwithpath/termstore/TermStoreRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a store object. + * The default termStore under this site. * @return a {@link Store} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Store get() { return get(null); } /** - * Read the properties and relationships of a store object. + * The default termStore under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Store} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Store get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public Store get(@jakarta.annotation.Nullable final java.util.function.Consumer< return this.requestAdapter.send(requestInfo, errorMapping, Store::createFromDiscriminatorValue); } /** - * Update the properties of a store object. + * Update the navigation property termStore in sites * @param body The request body * @return a {@link Store} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Store patch(@jakarta.annotation.Nonnull final Store body) { return patch(body, null); } /** - * Update the properties of a store object. + * Update the navigation property termStore in sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Store} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Store patch(@jakarta.annotation.Nonnull final Store body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a store object. + * The default termStore under this site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a store object. + * The default termStore under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a store object. + * Update the navigation property termStore in sites * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a store object. + * Update the navigation property termStore in sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public TermStoreRequestBuilder withUrl(@jakarta.annotation.Nonnull final String public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a store object. + * The default termStore under this site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/lists/ListsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/lists/ListsRequestBuilder.java index a8aa566190a..29469112847 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/lists/ListsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/lists/ListsRequestBuilder.java @@ -60,21 +60,19 @@ public ListsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/sites/{site%2Did}/lists{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the collection of [lists][] for a [site][]. Lists with the [system][] facet are hidden by default.To list them, include system in your $select statement. + * The collection of lists under this site. * @return a {@link ListCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListCollectionResponse get() { return get(null); } /** - * Get the collection of [lists][] for a [site][]. Lists with the [system][] facet are hidden by default.To list them, include system in your $select statement. + * The collection of lists under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ListCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public ListCollectionResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, ListCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new [list][] in a [site][]. + * Create new navigation property to lists for sites * @param body The request body * @return a {@link List} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public List post(@jakarta.annotation.Nonnull final List body) { return post(body, null); } /** - * Create a new [list][] in a [site][]. + * Create new navigation property to lists for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link List} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public List post(@jakarta.annotation.Nonnull final List body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public List post(@jakarta.annotation.Nonnull final List body, @jakarta.annotatio return this.requestAdapter.send(requestInfo, errorMapping, List::createFromDiscriminatorValue); } /** - * Get the collection of [lists][] for a [site][]. Lists with the [system][] facet are hidden by default.To list them, include system in your $select statement. + * The collection of lists under this site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the collection of [lists][] for a [site][]. Lists with the [system][] facet are hidden by default.To list them, include system in your $select statement. + * The collection of lists under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new [list][] in a [site][]. + * Create new navigation property to lists for sites * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new [list][] in a [site][]. + * Create new navigation property to lists for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ListsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new ListsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the collection of [lists][] for a [site][]. Lists with the [system][] facet are hidden by default.To list them, include system in your $select statement. + * The collection of lists under this site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/ListItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/ListItemRequestBuilder.java index 9200de41d23..75508624490 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/ListItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/ListItemRequestBuilder.java @@ -127,21 +127,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Returns the metadata for a [list][]. + * The collection of lists under this site. * @return a {@link List} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public List get() { return get(null); } /** - * Returns the metadata for a [list][]. + * The collection of lists under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link List} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public List get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -196,7 +194,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Returns the metadata for a [list][]. + * The collection of lists under this site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -204,7 +202,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Returns the metadata for a [list][]. + * The collection of lists under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -256,7 +254,7 @@ public ListItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Returns the metadata for a [list][]. + * The collection of lists under this site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/columns/ColumnsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/columns/ColumnsRequestBuilder.java index 26da4419445..f548103be8a 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/columns/ColumnsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/columns/ColumnsRequestBuilder.java @@ -60,21 +60,19 @@ public ColumnsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/sites/{site%2Did}/lists/{list%2Did}/columns{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [list][list]. + * The collection of field definitions for this list. * @return a {@link ColumnDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinitionCollectionResponse get() { return get(null); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [list][list]. + * The collection of field definitions for this list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinitionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public ColumnDefinitionCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinitionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a column for a [list][list] with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for sites * @param body The request body * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition body) { return post(body, null); } /** - * Create a column for a [list][list] with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinition::createFromDiscriminatorValue); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [list][list]. + * The collection of field definitions for this list. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [list][list]. + * The collection of field definitions for this list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a column for a [list][list] with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for sites * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a column for a [list][list] with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ColumnsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new ColumnsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [list][list]. + * The collection of field definitions for this list. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/contenttypes/ContentTypesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/contenttypes/ContentTypesRequestBuilder.java index f9103c8b361..32c34e8d656 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/contenttypes/ContentTypesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/contenttypes/ContentTypesRequestBuilder.java @@ -87,21 +87,19 @@ public ContentTypesRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/sites/{site%2Did}/lists/{list%2Did}/contentTypes{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the collection of [contentType][contentType] resources in a [list][]. + * The collection of content types present in this list. * @return a {@link ContentTypeCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentTypeCollectionResponse get() { return get(null); } /** - * Get the collection of [contentType][contentType] resources in a [list][]. + * The collection of content types present in this list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ContentTypeCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContentTypeCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -136,7 +134,7 @@ public ContentType post(@jakarta.annotation.Nonnull final ContentType body, @jak return this.requestAdapter.send(requestInfo, errorMapping, ContentType::createFromDiscriminatorValue); } /** - * Get the collection of [contentType][contentType] resources in a [list][]. + * The collection of content types present in this list. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -144,7 +142,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the collection of [contentType][contentType] resources in a [list][]. + * The collection of content types present in this list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -190,7 +188,7 @@ public ContentTypesRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri return new ContentTypesRequestBuilder(rawUrl, requestAdapter); } /** - * Get the collection of [contentType][contentType] resources in a [list][]. + * The collection of content types present in this list. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/contenttypes/addcopy/AddCopyRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/contenttypes/addcopy/AddCopyRequestBuilder.java index c7bed99c684..46a497afe03 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/contenttypes/addcopy/AddCopyRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/contenttypes/addcopy/AddCopyRequestBuilder.java @@ -36,7 +36,7 @@ public AddCopyRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/sites/{site%2Did}/lists/{list%2Did}/contentTypes/addCopy", rawUrl); } /** - * Add a copy of a [content type][contentType] from a [site][site] to a [list][list]. + * Add a copy of a content type from a site to a list. * @param body The request body * @return a {@link ContentType} * @throws ODataError When receiving a 4XX or 5XX status code @@ -47,7 +47,7 @@ public ContentType post(@jakarta.annotation.Nonnull final AddCopyPostRequestBody return post(body, null); } /** - * Add a copy of a [content type][contentType] from a [site][site] to a [list][list]. + * Add a copy of a content type from a site to a list. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ContentType} @@ -63,7 +63,7 @@ public ContentType post(@jakarta.annotation.Nonnull final AddCopyPostRequestBody return this.requestAdapter.send(requestInfo, errorMapping, ContentType::createFromDiscriminatorValue); } /** - * Add a copy of a [content type][contentType] from a [site][site] to a [list][list]. + * Add a copy of a content type from a site to a list. * @param body The request body * @return a {@link RequestInformation} */ @@ -72,7 +72,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add a copy of a [content type][contentType] from a [site][site] to a [list][list]. + * Add a copy of a content type from a site to a list. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/contenttypes/getcompatiblehubcontenttypes/GetCompatibleHubContentTypesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/contenttypes/getcompatiblehubcontenttypes/GetCompatibleHubContentTypesRequestBuilder.java index 49b7861fdeb..678ee213982 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/contenttypes/getcompatiblehubcontenttypes/GetCompatibleHubContentTypesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/contenttypes/getcompatiblehubcontenttypes/GetCompatibleHubContentTypesRequestBuilder.java @@ -36,19 +36,21 @@ public GetCompatibleHubContentTypesRequestBuilder(@jakarta.annotation.Nonnull fi super(requestAdapter, "{+baseurl}/sites/{site%2Did}/lists/{list%2Did}/contentTypes/getCompatibleHubContentTypes(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function getCompatibleHubContentTypes + * Get a list of compatible content types from the content type hub that can be added to a target site or a list. This method is part of the content type publishing changes to optimize the syncing of published content types to sites and lists, effectively switching from a 'push everywhere' to 'pull as needed' approach. The method allows users to pull content types directly from the content type hub to a site or list. For more information, see contentType: addCopyFromContentTypeHub and the blog post Syntex Product Updates August 2021. * @return a {@link GetCompatibleHubContentTypesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetCompatibleHubContentTypesGetResponse get() { return get(null); } /** - * Invoke function getCompatibleHubContentTypes + * Get a list of compatible content types from the content type hub that can be added to a target site or a list. This method is part of the content type publishing changes to optimize the syncing of published content types to sites and lists, effectively switching from a 'push everywhere' to 'pull as needed' approach. The method allows users to pull content types directly from the content type hub to a site or list. For more information, see contentType: addCopyFromContentTypeHub and the blog post Syntex Product Updates August 2021. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GetCompatibleHubContentTypesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetCompatibleHubContentTypesGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public GetCompatibleHubContentTypesGetResponse get(@jakarta.annotation.Nullable return this.requestAdapter.send(requestInfo, errorMapping, GetCompatibleHubContentTypesGetResponse::createFromDiscriminatorValue); } /** - * Invoke function getCompatibleHubContentTypes + * Get a list of compatible content types from the content type hub that can be added to a target site or a list. This method is part of the content type publishing changes to optimize the syncing of published content types to sites and lists, effectively switching from a 'push everywhere' to 'pull as needed' approach. The method allows users to pull content types directly from the content type hub to a site or list. For more information, see contentType: addCopyFromContentTypeHub and the blog post Syntex Product Updates August 2021. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getCompatibleHubContentTypes + * Get a list of compatible content types from the content type hub that can be added to a target site or a list. This method is part of the content type publishing changes to optimize the syncing of published content types to sites and lists, effectively switching from a 'push everywhere' to 'pull as needed' approach. The method allows users to pull content types directly from the content type hub to a site or list. For more information, see contentType: addCopyFromContentTypeHub and the blog post Syntex Product Updates August 2021. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public GetCompatibleHubContentTypesRequestBuilder withUrl(@jakarta.annotation.No return new GetCompatibleHubContentTypesRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function getCompatibleHubContentTypes + * Get a list of compatible content types from the content type hub that can be added to a target site or a list. This method is part of the content type publishing changes to optimize the syncing of published content types to sites and lists, effectively switching from a 'push everywhere' to 'pull as needed' approach. The method allows users to pull content types directly from the content type hub to a site or list. For more information, see contentType: addCopyFromContentTypeHub and the blog post Syntex Product Updates August 2021. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/contenttypes/item/associatewithhubsites/AssociateWithHubSitesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/contenttypes/item/associatewithhubsites/AssociateWithHubSitesRequestBuilder.java index 9e274562776..29316b6f8e5 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/contenttypes/item/associatewithhubsites/AssociateWithHubSitesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/contenttypes/item/associatewithhubsites/AssociateWithHubSitesRequestBuilder.java @@ -35,7 +35,7 @@ public AssociateWithHubSitesRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/sites/{site%2Did}/lists/{list%2Did}/contentTypes/{contentType%2Did}/associateWithHubSites", rawUrl); } /** - * Associate a published [content type][contentType] present in a content type hub with a list of hub sites. + * Associate a published content type present in a content type hub with a list of hub sites. * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code * @see Find more info here @@ -44,7 +44,7 @@ public void post(@jakarta.annotation.Nonnull final AssociateWithHubSitesPostRequ post(body, null); } /** - * Associate a published [content type][contentType] present in a content type hub with a list of hub sites. + * Associate a published content type present in a content type hub with a list of hub sites. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code @@ -58,7 +58,7 @@ public void post(@jakarta.annotation.Nonnull final AssociateWithHubSitesPostRequ this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Associate a published [content type][contentType] present in a content type hub with a list of hub sites. + * Associate a published content type present in a content type hub with a list of hub sites. * @param body The request body * @return a {@link RequestInformation} */ @@ -67,7 +67,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Associate a published [content type][contentType] present in a content type hub with a list of hub sites. + * Associate a published content type present in a content type hub with a list of hub sites. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/contenttypes/item/columns/ColumnsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/contenttypes/item/columns/ColumnsRequestBuilder.java index ec902c0ebad..9c83e002cfe 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/contenttypes/item/columns/ColumnsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/contenttypes/item/columns/ColumnsRequestBuilder.java @@ -60,21 +60,19 @@ public ColumnsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/sites/{site%2Did}/lists/{list%2Did}/contentTypes/{contentType%2Did}/columns{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [content type][contentType]. + * The collection of column definitions for this content type. * @return a {@link ColumnDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinitionCollectionResponse get() { return get(null); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [content type][contentType]. + * The collection of column definitions for this content type. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinitionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinitionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public ColumnDefinitionCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinitionCollectionResponse::createFromDiscriminatorValue); } /** - * Add a column to a [content type][contentType] in a site, or a list with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for sites * @param body The request body * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition body) { return post(body, null); } /** - * Add a column to a [content type][contentType] in a site, or a list with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public ColumnDefinition post(@jakarta.annotation.Nonnull final ColumnDefinition return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinition::createFromDiscriminatorValue); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [content type][contentType]. + * The collection of column definitions for this content type. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [content type][contentType]. + * The collection of column definitions for this content type. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add a column to a [content type][contentType] in a site, or a list with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for sites * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add a column to a [content type][contentType] in a site, or a list with a request that specifies a [columnDefinition][columnDefinition]. + * Create new navigation property to columns for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ColumnsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new ColumnsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the collection of columns represented as [columnDefinition][columnDefinition] resources in a [content type][contentType]. + * The collection of column definitions for this content type. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/contenttypes/item/columns/item/ColumnDefinitionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/contenttypes/item/columns/item/ColumnDefinitionItemRequestBuilder.java index d67e18afde3..7c47ba22485 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/contenttypes/item/columns/item/ColumnDefinitionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/contenttypes/item/columns/item/ColumnDefinitionItemRequestBuilder.java @@ -46,18 +46,16 @@ public ColumnDefinitionItemRequestBuilder(@jakarta.annotation.Nonnull final Stri super(requestAdapter, "{+baseurl}/sites/{site%2Did}/lists/{list%2Did}/contentTypes/{contentType%2Did}/columns/{columnDefinition%2Did}{?%24expand,%24select}", rawUrl); } /** - * Remove a [column][columndefinition] from a [site][], a [list][], or a [content type][contentType]. + * Delete navigation property columns for sites * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove a [column][columndefinition] from a [site][], a [list][], or a [content type][contentType]. + * Delete navigation property columns for sites * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the metadata for a [site][], a [list][], or a [contentType][] [column][columnDefinition]. + * The collection of column definitions for this content type. * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition get() { return get(null); } /** - * Retrieve the metadata for a [site][], a [list][], or a [contentType][] [column][columnDefinition]. + * The collection of column definitions for this content type. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public ColumnDefinition get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinition::createFromDiscriminatorValue); } /** - * Update a [site][], a [list][], or a [content type][contentType] [column][columnDefinition]. + * Update the navigation property columns in sites * @param body The request body * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition patch(@jakarta.annotation.Nonnull final ColumnDefinition body) { return patch(body, null); } /** - * Update a [site][], a [list][], or a [content type][contentType] [column][columnDefinition]. + * Update the navigation property columns in sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ColumnDefinition} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ColumnDefinition patch(@jakarta.annotation.Nonnull final ColumnDefinition body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public ColumnDefinition patch(@jakarta.annotation.Nonnull final ColumnDefinition return this.requestAdapter.send(requestInfo, errorMapping, ColumnDefinition::createFromDiscriminatorValue); } /** - * Remove a [column][columndefinition] from a [site][], a [list][], or a [content type][contentType]. + * Delete navigation property columns for sites * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove a [column][columndefinition] from a [site][], a [list][], or a [content type][contentType]. + * Delete navigation property columns for sites * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the metadata for a [site][], a [list][], or a [contentType][] [column][columnDefinition]. + * The collection of column definitions for this content type. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the metadata for a [site][], a [list][], or a [contentType][] [column][columnDefinition]. + * The collection of column definitions for this content type. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update a [site][], a [list][], or a [content type][contentType] [column][columnDefinition]. + * Update the navigation property columns in sites * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update a [site][], a [list][], or a [content type][contentType] [column][columnDefinition]. + * Update the navigation property columns in sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public ColumnDefinitionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fi public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the metadata for a [site][], a [list][], or a [contentType][] [column][columnDefinition]. + * The collection of column definitions for this content type. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/contenttypes/item/copytodefaultcontentlocation/CopyToDefaultContentLocationRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/contenttypes/item/copytodefaultcontentlocation/CopyToDefaultContentLocationRequestBuilder.java index 2f7f6b8336d..a717e4bbb62 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/contenttypes/item/copytodefaultcontentlocation/CopyToDefaultContentLocationRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/contenttypes/item/copytodefaultcontentlocation/CopyToDefaultContentLocationRequestBuilder.java @@ -35,7 +35,7 @@ public CopyToDefaultContentLocationRequestBuilder(@jakarta.annotation.Nonnull fi super(requestAdapter, "{+baseurl}/sites/{site%2Did}/lists/{list%2Did}/contentTypes/{contentType%2Did}/copyToDefaultContentLocation", rawUrl); } /** - * Copy a file to a default content location in a [content type][contentType]. The file can then be added as a default file or template via a POST operation. + * Copy a file to a default content location in a content type. The file can then be added as a default file or template via a POST operation. * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code * @see Find more info here @@ -44,7 +44,7 @@ public void post(@jakarta.annotation.Nonnull final CopyToDefaultContentLocationP post(body, null); } /** - * Copy a file to a default content location in a [content type][contentType]. The file can then be added as a default file or template via a POST operation. + * Copy a file to a default content location in a content type. The file can then be added as a default file or template via a POST operation. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code @@ -58,7 +58,7 @@ public void post(@jakarta.annotation.Nonnull final CopyToDefaultContentLocationP this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Copy a file to a default content location in a [content type][contentType]. The file can then be added as a default file or template via a POST operation. + * Copy a file to a default content location in a content type. The file can then be added as a default file or template via a POST operation. * @param body The request body * @return a {@link RequestInformation} */ @@ -67,7 +67,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Copy a file to a default content location in a [content type][contentType]. The file can then be added as a default file or template via a POST operation. + * Copy a file to a default content location in a content type. The file can then be added as a default file or template via a POST operation. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/contenttypes/item/ispublished/IsPublishedRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/contenttypes/item/ispublished/IsPublishedRequestBuilder.java index 08e141162a4..f7450de4508 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/contenttypes/item/ispublished/IsPublishedRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/contenttypes/item/ispublished/IsPublishedRequestBuilder.java @@ -35,19 +35,21 @@ public IsPublishedRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/sites/{site%2Did}/lists/{list%2Did}/contentTypes/{contentType%2Did}/isPublished()", rawUrl); } /** - * Invoke function isPublished + * Check the publishing status of a contentType in a content type hub site. * @return a {@link IsPublishedGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public IsPublishedGetResponse get() { return get(null); } /** - * Invoke function isPublished + * Check the publishing status of a contentType in a content type hub site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link IsPublishedGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public IsPublishedGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -57,7 +59,7 @@ public IsPublishedGetResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, IsPublishedGetResponse::createFromDiscriminatorValue); } /** - * Invoke function isPublished + * Check the publishing status of a contentType in a content type hub site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -65,7 +67,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function isPublished + * Check the publishing status of a contentType in a content type hub site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/contenttypes/item/publish/PublishRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/contenttypes/item/publish/PublishRequestBuilder.java index 98f96706834..351dc4a0a5b 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/contenttypes/item/publish/PublishRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/contenttypes/item/publish/PublishRequestBuilder.java @@ -35,7 +35,7 @@ public PublishRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/sites/{site%2Did}/lists/{list%2Did}/contentTypes/{contentType%2Did}/publish", rawUrl); } /** - * Publishes a [contentType][] present in the content type hub site. + * Publishes a contentType present in the content type hub site. * @throws ODataError When receiving a 4XX or 5XX status code * @see Find more info here */ @@ -43,7 +43,7 @@ public void post() { post(null); } /** - * Publishes a [contentType][] present in the content type hub site. + * Publishes a contentType present in the content type hub site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code * @see Find more info here @@ -55,7 +55,7 @@ public void post(@jakarta.annotation.Nullable final java.util.function.Consumer< this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Publishes a [contentType][] present in the content type hub site. + * Publishes a contentType present in the content type hub site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -63,7 +63,7 @@ public RequestInformation toPostRequestInformation() { return toPostRequestInformation(null); } /** - * Publishes a [contentType][] present in the content type hub site. + * Publishes a contentType present in the content type hub site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/contenttypes/item/unpublish/UnpublishRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/contenttypes/item/unpublish/UnpublishRequestBuilder.java index c160365f1f9..d4d3d5ef944 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/contenttypes/item/unpublish/UnpublishRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/contenttypes/item/unpublish/UnpublishRequestBuilder.java @@ -35,7 +35,7 @@ public UnpublishRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/sites/{site%2Did}/lists/{list%2Did}/contentTypes/{contentType%2Did}/unpublish", rawUrl); } /** - * Unpublish a [contentType][] from a content type hub site. + * Unpublish a contentType from a content type hub site. * @throws ODataError When receiving a 4XX or 5XX status code * @see Find more info here */ @@ -43,7 +43,7 @@ public void post() { post(null); } /** - * Unpublish a [contentType][] from a content type hub site. + * Unpublish a contentType from a content type hub site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code * @see Find more info here @@ -55,7 +55,7 @@ public void post(@jakarta.annotation.Nullable final java.util.function.Consumer< this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Unpublish a [contentType][] from a content type hub site. + * Unpublish a contentType from a content type hub site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -63,7 +63,7 @@ public RequestInformation toPostRequestInformation() { return toPostRequestInformation(null); } /** - * Unpublish a [contentType][] from a content type hub site. + * Unpublish a contentType from a content type hub site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/items/ItemsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/items/ItemsRequestBuilder.java index 6bda7775f98..96fc220e9ab 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/items/ItemsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/items/ItemsRequestBuilder.java @@ -71,21 +71,19 @@ public DeltaWithTokenRequestBuilder deltaWithToken(@jakarta.annotation.Nonnull f return new DeltaWithTokenRequestBuilder(pathParameters, requestAdapter, token); } /** - * Get the collection of [items][item] in a [list][]. + * All items contained in the list. * @return a {@link ListItemCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListItemCollectionResponse get() { return get(null); } /** - * Get the collection of [items][item] in a [list][]. + * All items contained in the list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ListItemCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListItemCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -95,23 +93,21 @@ public ListItemCollectionResponse get(@jakarta.annotation.Nullable final java.ut return this.requestAdapter.send(requestInfo, errorMapping, ListItemCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new [listItem][] in a [list][]. + * Create new navigation property to items for sites * @param body The request body * @return a {@link ListItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListItem post(@jakarta.annotation.Nonnull final ListItem body) { return post(body, null); } /** - * Create a new [listItem][] in a [list][]. + * Create new navigation property to items for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ListItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListItem post(@jakarta.annotation.Nonnull final ListItem body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -122,7 +118,7 @@ public ListItem post(@jakarta.annotation.Nonnull final ListItem body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, ListItem::createFromDiscriminatorValue); } /** - * Get the collection of [items][item] in a [list][]. + * All items contained in the list. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -130,7 +126,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the collection of [items][item] in a [list][]. + * All items contained in the list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -142,7 +138,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new [listItem][] in a [list][]. + * Create new navigation property to items for sites * @param body The request body * @return a {@link RequestInformation} */ @@ -151,7 +147,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new [listItem][] in a [list][]. + * Create new navigation property to items for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -176,7 +172,7 @@ public ItemsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new ItemsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the collection of [items][item] in a [list][]. + * All items contained in the list. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/items/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/items/delta/DeltaRequestBuilder.java index 88611a2c17e..16507fcb569 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/items/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/items/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/sites/{site%2Did}/lists/{list%2Did}/items/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Get newly created, updated, or deleted list items without having to perform a full read of the entire items collection. Your app begins by calling delta without any parameters.The service starts enumerating the hierarchy of the list, returning pages of items, and either an @odata.nextLink or an @odata.deltaLink.Your app should continue calling with the @odata.nextLink until you see an @odata.deltaLink returned. After you received all thechanges, you can apply them to your local state.To check for changes in thefuture, call delta again with the @odata.deltaLink from the previous response. The delta feed shows the latest state for each item, not each change. If an item was renamed twice, it only shows up once, with its latest name.The same item might appear more than once in a delta feed, for various reasons. You should use the last occurrence you see. Items with this property should be removed from your local state. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Get newly created, updated, or deleted list items without having to perform a full read of the entire items collection. Your app begins by calling delta without any parameters.The service starts enumerating the hierarchy of the list, returning pages of items, and either an @odata.nextLink or an @odata.deltaLink.Your app should continue calling with the @odata.nextLink until you see an @odata.deltaLink returned. After you received all thechanges, you can apply them to your local state.To check for changes in thefuture, call delta again with the @odata.deltaLink from the previous response. The delta feed shows the latest state for each item, not each change. If an item was renamed twice, it only shows up once, with its latest name.The same item might appear more than once in a delta feed, for various reasons. You should use the last occurrence you see. Items with this property should be removed from your local state. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Get newly created, updated, or deleted list items without having to perform a full read of the entire items collection. Your app begins by calling delta without any parameters.The service starts enumerating the hierarchy of the list, returning pages of items, and either an @odata.nextLink or an @odata.deltaLink.Your app should continue calling with the @odata.nextLink until you see an @odata.deltaLink returned. After you received all thechanges, you can apply them to your local state.To check for changes in thefuture, call delta again with the @odata.deltaLink from the previous response. The delta feed shows the latest state for each item, not each change. If an item was renamed twice, it only shows up once, with its latest name.The same item might appear more than once in a delta feed, for various reasons. You should use the last occurrence you see. Items with this property should be removed from your local state. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Get newly created, updated, or deleted list items without having to perform a full read of the entire items collection. Your app begins by calling delta without any parameters.The service starts enumerating the hierarchy of the list, returning pages of items, and either an @odata.nextLink or an @odata.deltaLink.Your app should continue calling with the @odata.nextLink until you see an @odata.deltaLink returned. After you received all thechanges, you can apply them to your local state.To check for changes in thefuture, call delta again with the @odata.deltaLink from the previous response. The delta feed shows the latest state for each item, not each change. If an item was renamed twice, it only shows up once, with its latest name.The same item might appear more than once in a delta feed, for various reasons. You should use the last occurrence you see. Items with this property should be removed from your local state. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Get newly created, updated, or deleted list items without having to perform a full read of the entire items collection. Your app begins by calling delta without any parameters.The service starts enumerating the hierarchy of the list, returning pages of items, and either an @odata.nextLink or an @odata.deltaLink.Your app should continue calling with the @odata.nextLink until you see an @odata.deltaLink returned. After you received all thechanges, you can apply them to your local state.To check for changes in thefuture, call delta again with the @odata.deltaLink from the previous response. The delta feed shows the latest state for each item, not each change. If an item was renamed twice, it only shows up once, with its latest name.The same item might appear more than once in a delta feed, for various reasons. You should use the last occurrence you see. Items with this property should be removed from your local state. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/items/item/ListItemItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/items/item/ListItemItemRequestBuilder.java index f46b8b0ac5d..b531675f074 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/items/item/ListItemItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/items/item/ListItemItemRequestBuilder.java @@ -119,18 +119,16 @@ public ListItemItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/sites/{site%2Did}/lists/{list%2Did}/items/{listItem%2Did}{?%24expand,%24select}", rawUrl); } /** - * Removes an item from a [list][]. + * Delete navigation property items for sites * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Removes an item from a [list][]. + * Delete navigation property items for sites * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -139,21 +137,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Returns the metadata for an [item][] in a [list][]. + * All items contained in the list. * @return a {@link ListItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListItem get() { return get(null); } /** - * Returns the metadata for an [item][] in a [list][]. + * All items contained in the list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ListItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListItem get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -202,7 +198,7 @@ public ListItem patch(@jakarta.annotation.Nonnull final ListItem body, @jakarta. return this.requestAdapter.send(requestInfo, errorMapping, ListItem::createFromDiscriminatorValue); } /** - * Removes an item from a [list][]. + * Delete navigation property items for sites * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -210,7 +206,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Removes an item from a [list][]. + * Delete navigation property items for sites * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -222,7 +218,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Returns the metadata for an [item][] in a [list][]. + * All items contained in the list. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -230,7 +226,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Returns the metadata for an [item][] in a [list][]. + * All items contained in the list. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -282,7 +278,7 @@ public ListItemItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Returns the metadata for an [item][] in a [list][]. + * All items contained in the list. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/items/item/documentsetversions/DocumentSetVersionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/items/item/documentsetversions/DocumentSetVersionsRequestBuilder.java index a754834e358..1a4b02abe09 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/items/item/documentsetversions/DocumentSetVersionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/items/item/documentsetversions/DocumentSetVersionsRequestBuilder.java @@ -60,21 +60,19 @@ public DocumentSetVersionsRequestBuilder(@jakarta.annotation.Nonnull final Strin super(requestAdapter, "{+baseurl}/sites/{site%2Did}/lists/{list%2Did}/items/{listItem%2Did}/documentSetVersions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the versions of a document set item in a list. + * Version information for a document set version created by a user. * @return a {@link DocumentSetVersionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DocumentSetVersionCollectionResponse get() { return get(null); } /** - * Get a list of the versions of a document set item in a list. + * Version information for a document set version created by a user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DocumentSetVersionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DocumentSetVersionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public DocumentSetVersionCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, DocumentSetVersionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new version of a document set item in a list. + * Create new navigation property to documentSetVersions for sites * @param body The request body * @return a {@link DocumentSetVersion} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DocumentSetVersion post(@jakarta.annotation.Nonnull final DocumentSetVersion body) { return post(body, null); } /** - * Create a new version of a document set item in a list. + * Create new navigation property to documentSetVersions for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DocumentSetVersion} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DocumentSetVersion post(@jakarta.annotation.Nonnull final DocumentSetVersion body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public DocumentSetVersion post(@jakarta.annotation.Nonnull final DocumentSetVers return this.requestAdapter.send(requestInfo, errorMapping, DocumentSetVersion::createFromDiscriminatorValue); } /** - * Get a list of the versions of a document set item in a list. + * Version information for a document set version created by a user. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the versions of a document set item in a list. + * Version information for a document set version created by a user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new version of a document set item in a list. + * Create new navigation property to documentSetVersions for sites * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new version of a document set item in a list. + * Create new navigation property to documentSetVersions for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public DocumentSetVersionsRequestBuilder withUrl(@jakarta.annotation.Nonnull fin return new DocumentSetVersionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the versions of a document set item in a list. + * Version information for a document set version created by a user. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/items/item/documentsetversions/item/DocumentSetVersionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/items/item/documentsetversions/item/DocumentSetVersionItemRequestBuilder.java index dabfda7c82b..6fe51b3b9ae 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/items/item/documentsetversions/item/DocumentSetVersionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/items/item/documentsetversions/item/DocumentSetVersionItemRequestBuilder.java @@ -55,18 +55,16 @@ public DocumentSetVersionItemRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/sites/{site%2Did}/lists/{list%2Did}/items/{listItem%2Did}/documentSetVersions/{documentSetVersion%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a version of a document set in a list. + * Delete navigation property documentSetVersions for sites * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a version of a document set in a list. + * Delete navigation property documentSetVersions for sites * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -75,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a documentSetVersion object. + * Version information for a document set version created by a user. * @return a {@link DocumentSetVersion} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DocumentSetVersion get() { return get(null); } /** - * Read the properties and relationships of a documentSetVersion object. + * Version information for a document set version created by a user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DocumentSetVersion} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DocumentSetVersion get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +120,7 @@ public DocumentSetVersion patch(@jakarta.annotation.Nonnull final DocumentSetVer return this.requestAdapter.send(requestInfo, errorMapping, DocumentSetVersion::createFromDiscriminatorValue); } /** - * Delete a version of a document set in a list. + * Delete navigation property documentSetVersions for sites * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +128,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a version of a document set in a list. + * Delete navigation property documentSetVersions for sites * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -144,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a documentSetVersion object. + * Version information for a document set version created by a user. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -152,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a documentSetVersion object. + * Version information for a document set version created by a user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -204,7 +200,7 @@ public DocumentSetVersionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a documentSetVersion object. + * Version information for a document set version created by a user. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/items/item/driveitem/DriveItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/items/item/driveitem/DriveItemRequestBuilder.java index 61768fca629..89cc6ef06cf 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/items/item/driveitem/DriveItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/items/item/driveitem/DriveItemRequestBuilder.java @@ -46,7 +46,7 @@ public DriveItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/sites/{site%2Did}/lists/{list%2Did}/items/{listItem%2Did}/driveItem{?%24expand,%24select}", rawUrl); } /** - * For document libraries, the driveItem relationship exposes the listItem as a [driveItem][] + * For document libraries, the driveItem relationship exposes the listItem as a driveItem * @return a {@link DriveItem} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -55,7 +55,7 @@ public DriveItem get() { return get(null); } /** - * For document libraries, the driveItem relationship exposes the listItem as a [driveItem][] + * For document libraries, the driveItem relationship exposes the listItem as a driveItem * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DriveItem} * @throws ODataError When receiving a 4XX or 5XX status code @@ -68,7 +68,7 @@ public DriveItem get(@jakarta.annotation.Nullable final java.util.function.Consu return this.requestAdapter.send(requestInfo, errorMapping, DriveItem::createFromDiscriminatorValue); } /** - * For document libraries, the driveItem relationship exposes the listItem as a [driveItem][] + * For document libraries, the driveItem relationship exposes the listItem as a driveItem * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -76,7 +76,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * For document libraries, the driveItem relationship exposes the listItem as a [driveItem][] + * For document libraries, the driveItem relationship exposes the listItem as a driveItem * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -98,7 +98,7 @@ public DriveItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new DriveItemRequestBuilder(rawUrl, requestAdapter); } /** - * For document libraries, the driveItem relationship exposes the listItem as a [driveItem][] + * For document libraries, the driveItem relationship exposes the listItem as a driveItem */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/items/item/fields/FieldsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/items/item/fields/FieldsRequestBuilder.java index 2e76bb4a9ab..a84cb2895ab 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/items/item/fields/FieldsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/items/item/fields/FieldsRequestBuilder.java @@ -77,23 +77,21 @@ public FieldValueSet get(@jakarta.annotation.Nullable final java.util.function.C return this.requestAdapter.send(requestInfo, errorMapping, FieldValueSet::createFromDiscriminatorValue); } /** - * Update the properties on a [listItem][]. + * Update the navigation property fields in sites * @param body The request body * @return a {@link FieldValueSet} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public FieldValueSet patch(@jakarta.annotation.Nonnull final FieldValueSet body) { return patch(body, null); } /** - * Update the properties on a [listItem][]. + * Update the navigation property fields in sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link FieldValueSet} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public FieldValueSet patch(@jakarta.annotation.Nonnull final FieldValueSet body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -144,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties on a [listItem][]. + * Update the navigation property fields in sites * @param body The request body * @return a {@link RequestInformation} */ @@ -153,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties on a [listItem][]. + * Update the navigation property fields in sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/items/item/versions/VersionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/items/item/versions/VersionsRequestBuilder.java index 87d75cdf403..b8ecb97c7ab 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/items/item/versions/VersionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/items/item/versions/VersionsRequestBuilder.java @@ -60,21 +60,19 @@ public VersionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/sites/{site%2Did}/lists/{list%2Did}/items/{listItem%2Did}/versions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * SharePoint can be configured to retain the history for list items. Previous versions may be retained for a finite period of time depending on admin settings which may be unique per user or location. + * The list of previous versions of the list item. * @return a {@link ListItemVersionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListItemVersionCollectionResponse get() { return get(null); } /** - * SharePoint can be configured to retain the history for list items. Previous versions may be retained for a finite period of time depending on admin settings which may be unique per user or location. + * The list of previous versions of the list item. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ListItemVersionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListItemVersionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ListItemVersion post(@jakarta.annotation.Nonnull final ListItemVersion bo return this.requestAdapter.send(requestInfo, errorMapping, ListItemVersion::createFromDiscriminatorValue); } /** - * SharePoint can be configured to retain the history for list items. Previous versions may be retained for a finite period of time depending on admin settings which may be unique per user or location. + * The list of previous versions of the list item. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * SharePoint can be configured to retain the history for list items. Previous versions may be retained for a finite period of time depending on admin settings which may be unique per user or location. + * The list of previous versions of the list item. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public VersionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new VersionsRequestBuilder(rawUrl, requestAdapter); } /** - * SharePoint can be configured to retain the history for list items. Previous versions may be retained for a finite period of time depending on admin settings which may be unique per user or location. + * The list of previous versions of the list item. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/items/item/versions/item/ListItemVersionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/items/item/versions/item/ListItemVersionItemRequestBuilder.java index 720030ef767..b5957c7c24a 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/items/item/versions/item/ListItemVersionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/lists/item/items/item/versions/item/ListItemVersionItemRequestBuilder.java @@ -73,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the metadata for a specific version of a ListItem. + * The list of previous versions of the list item. * @return a {@link ListItemVersion} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListItemVersion get() { return get(null); } /** - * Retrieve the metadata for a specific version of a ListItem. + * The list of previous versions of the list item. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ListItemVersion} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ListItemVersion get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -142,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the metadata for a specific version of a ListItem. + * The list of previous versions of the list item. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -150,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the metadata for a specific version of a ListItem. + * The list of previous versions of the list item. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -202,7 +200,7 @@ public ListItemVersionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fin public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the metadata for a specific version of a ListItem. + * The list of previous versions of the list item. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/NotebooksRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/NotebooksRequestBuilder.java index a58e1d37949..2825c022a08 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/NotebooksRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/NotebooksRequestBuilder.java @@ -70,21 +70,19 @@ public NotebooksRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/sites/{site%2Did}/onenote/notebooks{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of notebook objects. + * The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link NotebookCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public NotebookCollectionResponse get() { return get(null); } /** - * Retrieve a list of notebook objects. + * The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link NotebookCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public NotebookCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -104,23 +102,21 @@ public GetRecentNotebooksWithIncludePersonalNotebooksRequestBuilder getRecentNot return new GetRecentNotebooksWithIncludePersonalNotebooksRequestBuilder(pathParameters, requestAdapter, includePersonalNotebooks); } /** - * Create a new OneNote notebook. + * Create new navigation property to notebooks for sites * @param body The request body * @return a {@link Notebook} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Notebook post(@jakarta.annotation.Nonnull final Notebook body) { return post(body, null); } /** - * Create a new OneNote notebook. + * Create new navigation property to notebooks for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Notebook} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Notebook post(@jakarta.annotation.Nonnull final Notebook body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -131,7 +127,7 @@ public Notebook post(@jakarta.annotation.Nonnull final Notebook body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, Notebook::createFromDiscriminatorValue); } /** - * Retrieve a list of notebook objects. + * The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -139,7 +135,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of notebook objects. + * The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -151,7 +147,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new OneNote notebook. + * Create new navigation property to notebooks for sites * @param body The request body * @return a {@link RequestInformation} */ @@ -160,7 +156,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new OneNote notebook. + * Create new navigation property to notebooks for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -185,7 +181,7 @@ public NotebooksRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new NotebooksRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of notebook objects. + * The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/getrecentnotebookswithincludepersonalnotebooks/GetRecentNotebooksWithIncludePersonalNotebooksRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/getrecentnotebookswithincludepersonalnotebooks/GetRecentNotebooksWithIncludePersonalNotebooksRequestBuilder.java index 746e4c39771..1780bc70965 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/getrecentnotebookswithincludepersonalnotebooks/GetRecentNotebooksWithIncludePersonalNotebooksRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/getrecentnotebookswithincludepersonalnotebooks/GetRecentNotebooksWithIncludePersonalNotebooksRequestBuilder.java @@ -38,19 +38,21 @@ public GetRecentNotebooksWithIncludePersonalNotebooksRequestBuilder(@jakarta.ann super(requestAdapter, "{+baseurl}/sites/{site%2Did}/onenote/notebooks/getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks}){?%24count,%24filter,%24search,%24skip,%24top}", rawUrl); } /** - * Invoke function getRecentNotebooks + * Get a list of recentNotebook instances that have been accessed by the signed-in user. * @return a {@link GetRecentNotebooksWithIncludePersonalNotebooksGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetRecentNotebooksWithIncludePersonalNotebooksGetResponse get() { return get(null); } /** - * Invoke function getRecentNotebooks + * Get a list of recentNotebook instances that have been accessed by the signed-in user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GetRecentNotebooksWithIncludePersonalNotebooksGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetRecentNotebooksWithIncludePersonalNotebooksGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public GetRecentNotebooksWithIncludePersonalNotebooksGetResponse get(@jakarta.an return this.requestAdapter.send(requestInfo, errorMapping, GetRecentNotebooksWithIncludePersonalNotebooksGetResponse::createFromDiscriminatorValue); } /** - * Invoke function getRecentNotebooks + * Get a list of recentNotebook instances that have been accessed by the signed-in user. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getRecentNotebooks + * Get a list of recentNotebook instances that have been accessed by the signed-in user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -90,7 +92,7 @@ public GetRecentNotebooksWithIncludePersonalNotebooksRequestBuilder withUrl(@jak return new GetRecentNotebooksWithIncludePersonalNotebooksRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function getRecentNotebooks + * Get a list of recentNotebook instances that have been accessed by the signed-in user. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/item/NotebookItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/item/NotebookItemRequestBuilder.java index 9df97a27dbe..f756b0199ab 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/item/NotebookItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/item/NotebookItemRequestBuilder.java @@ -82,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a notebook object. + * The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link Notebook} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Notebook get() { return get(null); } /** - * Retrieve the properties and relationships of a notebook object. + * The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Notebook} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Notebook get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -151,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a notebook object. + * The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -159,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a notebook object. + * The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -211,7 +209,7 @@ public NotebookItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a notebook object. + * The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/item/sectiongroups/SectionGroupsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/item/sectiongroups/SectionGroupsRequestBuilder.java index 7db0dbb647d..bb3102d4147 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/item/sectiongroups/SectionGroupsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/item/sectiongroups/SectionGroupsRequestBuilder.java @@ -60,21 +60,19 @@ public SectionGroupsRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/sites/{site%2Did}/onenote/notebooks/{notebook%2Did}/sectionGroups{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of section groups from the specified notebook. + * The section groups in the notebook. Read-only. Nullable. * @return a {@link SectionGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroupCollectionResponse get() { return get(null); } /** - * Retrieve a list of section groups from the specified notebook. + * The section groups in the notebook. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SectionGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroupCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public SectionGroupCollectionResponse get(@jakarta.annotation.Nullable final jav return this.requestAdapter.send(requestInfo, errorMapping, SectionGroupCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new section group in the specified notebook. + * Create new navigation property to sectionGroups for sites * @param body The request body * @return a {@link SectionGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroup post(@jakarta.annotation.Nonnull final SectionGroup body) { return post(body, null); } /** - * Create a new section group in the specified notebook. + * Create new navigation property to sectionGroups for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SectionGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroup post(@jakarta.annotation.Nonnull final SectionGroup body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public SectionGroup post(@jakarta.annotation.Nonnull final SectionGroup body, @j return this.requestAdapter.send(requestInfo, errorMapping, SectionGroup::createFromDiscriminatorValue); } /** - * Retrieve a list of section groups from the specified notebook. + * The section groups in the notebook. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of section groups from the specified notebook. + * The section groups in the notebook. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new section group in the specified notebook. + * Create new navigation property to sectionGroups for sites * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new section group in the specified notebook. + * Create new navigation property to sectionGroups for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public SectionGroupsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new SectionGroupsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of section groups from the specified notebook. + * The section groups in the notebook. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/item/sectiongroups/item/sectiongroups/SectionGroupsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/item/sectiongroups/item/sectiongroups/SectionGroupsRequestBuilder.java index 82acb61da79..9e9cd53aeef 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/item/sectiongroups/item/sectiongroups/SectionGroupsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/item/sectiongroups/item/sectiongroups/SectionGroupsRequestBuilder.java @@ -59,21 +59,19 @@ public SectionGroupsRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/sites/{site%2Did}/onenote/notebooks/{notebook%2Did}/sectionGroups/{sectionGroup%2Did}/sectionGroups{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of section groups from the specified section group. + * The section groups in the section. Read-only. Nullable. * @return a {@link SectionGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroupCollectionResponse get() { return get(null); } /** - * Retrieve a list of section groups from the specified section group. + * The section groups in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SectionGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroupCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public SectionGroupCollectionResponse get(@jakarta.annotation.Nullable final jav return this.requestAdapter.send(requestInfo, errorMapping, SectionGroupCollectionResponse::createFromDiscriminatorValue); } /** - * Retrieve a list of section groups from the specified section group. + * The section groups in the section. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of section groups from the specified section group. + * The section groups in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public SectionGroupsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new SectionGroupsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of section groups from the specified section group. + * The section groups in the section. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/item/sectiongroups/item/sections/SectionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/item/sectiongroups/item/sections/SectionsRequestBuilder.java index 1c16dd5b0ed..96336134ffc 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/item/sectiongroups/item/sections/SectionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/item/sectiongroups/item/sections/SectionsRequestBuilder.java @@ -60,21 +60,19 @@ public SectionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/sites/{site%2Did}/onenote/notebooks/{notebook%2Did}/sectionGroups/{sectionGroup%2Did}/sections{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of onenoteSection objects from the specified section group. + * The sections in the section group. Read-only. Nullable. * @return a {@link OnenoteSectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSectionCollectionResponse get() { return get(null); } /** - * Retrieve a list of onenoteSection objects from the specified section group. + * The sections in the section group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenoteSectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSectionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OnenoteSectionCollectionResponse get(@jakarta.annotation.Nullable final j return this.requestAdapter.send(requestInfo, errorMapping, OnenoteSectionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new onenoteSection in the specified section group. + * Create new navigation property to sections for sites * @param body The request body * @return a {@link OnenoteSection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSection post(@jakarta.annotation.Nonnull final OnenoteSection body) { return post(body, null); } /** - * Create a new onenoteSection in the specified section group. + * Create new navigation property to sections for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenoteSection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSection post(@jakarta.annotation.Nonnull final OnenoteSection body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OnenoteSection post(@jakarta.annotation.Nonnull final OnenoteSection body return this.requestAdapter.send(requestInfo, errorMapping, OnenoteSection::createFromDiscriminatorValue); } /** - * Retrieve a list of onenoteSection objects from the specified section group. + * The sections in the section group. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of onenoteSection objects from the specified section group. + * The sections in the section group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new onenoteSection in the specified section group. + * Create new navigation property to sections for sites * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new onenoteSection in the specified section group. + * Create new navigation property to sections for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public SectionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new SectionsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of onenoteSection objects from the specified section group. + * The sections in the section group. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/item/sectiongroups/item/sections/item/pages/PagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/item/sectiongroups/item/sections/item/pages/PagesRequestBuilder.java index 46cad8c691e..d03829393cb 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/item/sectiongroups/item/sections/item/pages/PagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/item/sectiongroups/item/sections/item/pages/PagesRequestBuilder.java @@ -60,21 +60,19 @@ public PagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/sites/{site%2Did}/onenote/notebooks/{notebook%2Did}/sectionGroups/{sectionGroup%2Did}/sections/{onenoteSection%2Did}/pages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @return a {@link OnenotePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePageCollectionResponse get() { return get(null); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OnenotePageCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, OnenotePageCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for sites * @param body The request body * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body) { return post(body, null); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body, @jak return this.requestAdapter.send(requestInfo, errorMapping, OnenotePage::createFromDiscriminatorValue); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new page in the specified section. + * Create new navigation property to pages for sites * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public PagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new PagesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/item/sectiongroups/item/sections/item/pages/item/content/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/item/sectiongroups/item/sections/item/pages/item/content/ContentRequestBuilder.java index da0d2bc03a3..bf0e1aad8c2 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/item/sectiongroups/item/sections/item/pages/item/content/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/item/sectiongroups/item/sections/item/pages/item/content/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * The page's HTML content. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/item/sections/SectionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/item/sections/SectionsRequestBuilder.java index c6e2cab4048..d8b160bb695 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/item/sections/SectionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/item/sections/SectionsRequestBuilder.java @@ -60,21 +60,19 @@ public SectionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/sites/{site%2Did}/onenote/notebooks/{notebook%2Did}/sections{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of onenoteSection objects from the specified notebook. + * The sections in the notebook. Read-only. Nullable. * @return a {@link OnenoteSectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSectionCollectionResponse get() { return get(null); } /** - * Retrieve a list of onenoteSection objects from the specified notebook. + * The sections in the notebook. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenoteSectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSectionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OnenoteSectionCollectionResponse get(@jakarta.annotation.Nullable final j return this.requestAdapter.send(requestInfo, errorMapping, OnenoteSectionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new onenoteSection in the specified notebook. + * Create new navigation property to sections for sites * @param body The request body * @return a {@link OnenoteSection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSection post(@jakarta.annotation.Nonnull final OnenoteSection body) { return post(body, null); } /** - * Create a new onenoteSection in the specified notebook. + * Create new navigation property to sections for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenoteSection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSection post(@jakarta.annotation.Nonnull final OnenoteSection body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OnenoteSection post(@jakarta.annotation.Nonnull final OnenoteSection body return this.requestAdapter.send(requestInfo, errorMapping, OnenoteSection::createFromDiscriminatorValue); } /** - * Retrieve a list of onenoteSection objects from the specified notebook. + * The sections in the notebook. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of onenoteSection objects from the specified notebook. + * The sections in the notebook. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new onenoteSection in the specified notebook. + * Create new navigation property to sections for sites * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new onenoteSection in the specified notebook. + * Create new navigation property to sections for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public SectionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new SectionsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of onenoteSection objects from the specified notebook. + * The sections in the notebook. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/item/sections/item/pages/PagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/item/sections/item/pages/PagesRequestBuilder.java index 2fb22ef441b..67a910e31c2 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/item/sections/item/pages/PagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/item/sections/item/pages/PagesRequestBuilder.java @@ -60,21 +60,19 @@ public PagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/sites/{site%2Did}/onenote/notebooks/{notebook%2Did}/sections/{onenoteSection%2Did}/pages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @return a {@link OnenotePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePageCollectionResponse get() { return get(null); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OnenotePageCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, OnenotePageCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for sites * @param body The request body * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body) { return post(body, null); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body, @jak return this.requestAdapter.send(requestInfo, errorMapping, OnenotePage::createFromDiscriminatorValue); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new page in the specified section. + * Create new navigation property to pages for sites * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public PagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new PagesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/item/sections/item/pages/item/content/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/item/sections/item/pages/item/content/ContentRequestBuilder.java index 8a17ca5654f..8f4db7d5e75 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/item/sections/item/pages/item/content/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/notebooks/item/sections/item/pages/item/content/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * The page's HTML content. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/operations/OperationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/operations/OperationsRequestBuilder.java index bb83175b346..d18bc05ac8d 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/operations/OperationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/operations/OperationsRequestBuilder.java @@ -60,7 +60,7 @@ public OperationsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/sites/{site%2Did}/onenote/operations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the status of a long-running OneNote operation. This applies to operations that return the Operation-Location header in the response, such as CopyNotebook, CopyToNotebook, CopyToSectionGroup, and CopyToSection. You can poll the Operation-Location endpoint until the status property returns completed or failed. If the status is completed, the resourceLocation property contains the resource endpoint URI. If the status is failed, the error and @api.diagnostics properties provide error information. + * The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. * @return a {@link OnenoteOperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public OnenoteOperationCollectionResponse get() { return get(null); } /** - * Get the status of a long-running OneNote operation. This applies to operations that return the Operation-Location header in the response, such as CopyNotebook, CopyToNotebook, CopyToSectionGroup, and CopyToSection. You can poll the Operation-Location endpoint until the status property returns completed or failed. If the status is completed, the resourceLocation property contains the resource endpoint URI. If the status is failed, the error and @api.diagnostics properties provide error information. + * The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenoteOperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public OnenoteOperation post(@jakarta.annotation.Nonnull final OnenoteOperation return this.requestAdapter.send(requestInfo, errorMapping, OnenoteOperation::createFromDiscriminatorValue); } /** - * Get the status of a long-running OneNote operation. This applies to operations that return the Operation-Location header in the response, such as CopyNotebook, CopyToNotebook, CopyToSectionGroup, and CopyToSection. You can poll the Operation-Location endpoint until the status property returns completed or failed. If the status is completed, the resourceLocation property contains the resource endpoint URI. If the status is failed, the error and @api.diagnostics properties provide error information. + * The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the status of a long-running OneNote operation. This applies to operations that return the Operation-Location header in the response, such as CopyNotebook, CopyToNotebook, CopyToSectionGroup, and CopyToSection. You can poll the Operation-Location endpoint until the status property returns completed or failed. If the status is completed, the resourceLocation property contains the resource endpoint URI. If the status is failed, the error and @api.diagnostics properties provide error information. + * The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public OperationsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new OperationsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the status of a long-running OneNote operation. This applies to operations that return the Operation-Location header in the response, such as CopyNotebook, CopyToNotebook, CopyToSectionGroup, and CopyToSection. You can poll the Operation-Location endpoint until the status property returns completed or failed. If the status is completed, the resourceLocation property contains the resource endpoint URI. If the status is failed, the error and @api.diagnostics properties provide error information. + * The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/operations/item/OnenoteOperationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/operations/item/OnenoteOperationItemRequestBuilder.java index 7290dabac54..28683fbda62 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/operations/item/OnenoteOperationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/operations/item/OnenoteOperationItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the status of a long-running OneNote operation. This applies to operations that return the Operation-Location header in the response, such as CopyNotebook, CopyToNotebook, CopyToSectionGroup, and CopyToSection. You can poll the Operation-Location endpoint until the status property returns completed or failed. If the status is completed, the resourceLocation property contains the resource endpoint URI. If the status is failed, the error and @api.diagnostics properties provide error information. + * The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. * @return a {@link OnenoteOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteOperation get() { return get(null); } /** - * Get the status of a long-running OneNote operation. This applies to operations that return the Operation-Location header in the response, such as CopyNotebook, CopyToNotebook, CopyToSectionGroup, and CopyToSection. You can poll the Operation-Location endpoint until the status property returns completed or failed. If the status is completed, the resourceLocation property contains the resource endpoint URI. If the status is failed, the error and @api.diagnostics properties provide error information. + * The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenoteOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteOperation get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the status of a long-running OneNote operation. This applies to operations that return the Operation-Location header in the response, such as CopyNotebook, CopyToNotebook, CopyToSectionGroup, and CopyToSection. You can poll the Operation-Location endpoint until the status property returns completed or failed. If the status is completed, the resourceLocation property contains the resource endpoint URI. If the status is failed, the error and @api.diagnostics properties provide error information. + * The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the status of a long-running OneNote operation. This applies to operations that return the Operation-Location header in the response, such as CopyNotebook, CopyToNotebook, CopyToSectionGroup, and CopyToSection. You can poll the Operation-Location endpoint until the status property returns completed or failed. If the status is completed, the resourceLocation property contains the resource endpoint URI. If the status is failed, the error and @api.diagnostics properties provide error information. + * The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public OnenoteOperationItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fi public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the status of a long-running OneNote operation. This applies to operations that return the Operation-Location header in the response, such as CopyNotebook, CopyToNotebook, CopyToSectionGroup, and CopyToSection. You can poll the Operation-Location endpoint until the status property returns completed or failed. If the status is completed, the resourceLocation property contains the resource endpoint URI. If the status is failed, the error and @api.diagnostics properties provide error information. + * The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/pages/PagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/pages/PagesRequestBuilder.java index 96d472dd848..a3a0e1236af 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/pages/PagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/pages/PagesRequestBuilder.java @@ -60,21 +60,19 @@ public PagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/sites/{site%2Did}/onenote/pages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of page objects. + * The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link OnenotePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePageCollectionResponse get() { return get(null); } /** - * Retrieve a list of page objects. + * The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OnenotePageCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, OnenotePageCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new OneNote page in the default section of the default notebook. To create a page in a different section in the default notebook, you can use the sectionName query parameter. Example: ../onenote/pages?sectionName=My%20section The POST /onenote/pages operation is used only to create pages in the current user's default notebook. If you're targeting other notebooks, you can create pages in a specified section. + * Create new navigation property to pages for sites * @param body The request body * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body) { return post(body, null); } /** - * Create a new OneNote page in the default section of the default notebook. To create a page in a different section in the default notebook, you can use the sectionName query parameter. Example: ../onenote/pages?sectionName=My%20section The POST /onenote/pages operation is used only to create pages in the current user's default notebook. If you're targeting other notebooks, you can create pages in a specified section. + * Create new navigation property to pages for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body, @jak return this.requestAdapter.send(requestInfo, errorMapping, OnenotePage::createFromDiscriminatorValue); } /** - * Retrieve a list of page objects. + * The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of page objects. + * The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new OneNote page in the default section of the default notebook. To create a page in a different section in the default notebook, you can use the sectionName query parameter. Example: ../onenote/pages?sectionName=My%20section The POST /onenote/pages operation is used only to create pages in the current user's default notebook. If you're targeting other notebooks, you can create pages in a specified section. + * Create new navigation property to pages for sites * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new OneNote page in the default section of the default notebook. To create a page in a different section in the default notebook, you can use the sectionName query parameter. Example: ../onenote/pages?sectionName=My%20section The POST /onenote/pages operation is used only to create pages in the current user's default notebook. If you're targeting other notebooks, you can create pages in a specified section. + * Create new navigation property to pages for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public PagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new PagesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of page objects. + * The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/pages/item/OnenotePageItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/pages/item/OnenotePageItemRequestBuilder.java index 8ad04a2fa5a..2b7db269f3d 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/pages/item/OnenotePageItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/pages/item/OnenotePageItemRequestBuilder.java @@ -91,18 +91,16 @@ public OnenotePageItemRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/sites/{site%2Did}/onenote/pages/{onenotePage%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a OneNote page. + * Delete navigation property pages for sites * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a OneNote page. + * Delete navigation property pages for sites * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -111,21 +109,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a page object. Getting page information Access a page's metadata by page identifier: Getting page content You can use the page's content endpoint to get the HTML content of a page: The includeIDs=true query option is used to update pages. + * The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage get() { return get(null); } /** - * Retrieve the properties and relationships of a page object. Getting page information Access a page's metadata by page identifier: Getting page content You can use the page's content endpoint to get the HTML content of a page: The includeIDs=true query option is used to update pages. + * The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -160,7 +156,7 @@ public OnenotePage patch(@jakarta.annotation.Nonnull final OnenotePage body, @ja return this.requestAdapter.send(requestInfo, errorMapping, OnenotePage::createFromDiscriminatorValue); } /** - * Delete a OneNote page. + * Delete navigation property pages for sites * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -168,7 +164,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a OneNote page. + * Delete navigation property pages for sites * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -180,7 +176,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a page object. Getting page information Access a page's metadata by page identifier: Getting page content You can use the page's content endpoint to get the HTML content of a page: The includeIDs=true query option is used to update pages. + * The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -188,7 +184,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a page object. Getting page information Access a page's metadata by page identifier: Getting page content You can use the page's content endpoint to get the HTML content of a page: The includeIDs=true query option is used to update pages. + * The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -240,7 +236,7 @@ public OnenotePageItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final S public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a page object. Getting page information Access a page's metadata by page identifier: Getting page content You can use the page's content endpoint to get the HTML content of a page: The includeIDs=true query option is used to update pages. + * The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/pages/item/content/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/pages/item/content/ContentRequestBuilder.java index e743162af3b..7d8ba6f60e6 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/pages/item/content/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/pages/item/content/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * The page's HTML content. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/sectiongroups/SectionGroupsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/sectiongroups/SectionGroupsRequestBuilder.java index 34fe1ec740c..39d2c72a275 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/sectiongroups/SectionGroupsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/sectiongroups/SectionGroupsRequestBuilder.java @@ -60,21 +60,19 @@ public SectionGroupsRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/sites/{site%2Did}/onenote/sectionGroups{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of sectionGroup objects. + * The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link SectionGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroupCollectionResponse get() { return get(null); } /** - * Retrieve a list of sectionGroup objects. + * The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SectionGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroupCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public SectionGroup post(@jakarta.annotation.Nonnull final SectionGroup body, @j return this.requestAdapter.send(requestInfo, errorMapping, SectionGroup::createFromDiscriminatorValue); } /** - * Retrieve a list of sectionGroup objects. + * The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of sectionGroup objects. + * The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public SectionGroupsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new SectionGroupsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of sectionGroup objects. + * The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/sectiongroups/item/SectionGroupItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/sectiongroups/item/SectionGroupItemRequestBuilder.java index f4428a91159..3afee28c13a 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/sectiongroups/item/SectionGroupItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/sectiongroups/item/SectionGroupItemRequestBuilder.java @@ -91,21 +91,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a sectionGroup object. + * The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link SectionGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroup get() { return get(null); } /** - * Retrieve the properties and relationships of a sectionGroup object. + * The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SectionGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroup get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -160,7 +158,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a sectionGroup object. + * The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -168,7 +166,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a sectionGroup object. + * The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -220,7 +218,7 @@ public SectionGroupItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a sectionGroup object. + * The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/sectiongroups/item/sectiongroups/SectionGroupsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/sectiongroups/item/sectiongroups/SectionGroupsRequestBuilder.java index 7170052d139..a4af23321bf 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/sectiongroups/item/sectiongroups/SectionGroupsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/sectiongroups/item/sectiongroups/SectionGroupsRequestBuilder.java @@ -59,21 +59,19 @@ public SectionGroupsRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/sites/{site%2Did}/onenote/sectionGroups/{sectionGroup%2Did}/sectionGroups{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of section groups from the specified section group. + * The section groups in the section. Read-only. Nullable. * @return a {@link SectionGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroupCollectionResponse get() { return get(null); } /** - * Retrieve a list of section groups from the specified section group. + * The section groups in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SectionGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroupCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public SectionGroupCollectionResponse get(@jakarta.annotation.Nullable final jav return this.requestAdapter.send(requestInfo, errorMapping, SectionGroupCollectionResponse::createFromDiscriminatorValue); } /** - * Retrieve a list of section groups from the specified section group. + * The section groups in the section. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of section groups from the specified section group. + * The section groups in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public SectionGroupsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new SectionGroupsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of section groups from the specified section group. + * The section groups in the section. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/sectiongroups/item/sections/SectionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/sectiongroups/item/sections/SectionsRequestBuilder.java index 67149376d7d..3233b0083a2 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/sectiongroups/item/sections/SectionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/sectiongroups/item/sections/SectionsRequestBuilder.java @@ -60,21 +60,19 @@ public SectionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/sites/{site%2Did}/onenote/sectionGroups/{sectionGroup%2Did}/sections{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of onenoteSection objects from the specified section group. + * The sections in the section group. Read-only. Nullable. * @return a {@link OnenoteSectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSectionCollectionResponse get() { return get(null); } /** - * Retrieve a list of onenoteSection objects from the specified section group. + * The sections in the section group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenoteSectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSectionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OnenoteSectionCollectionResponse get(@jakarta.annotation.Nullable final j return this.requestAdapter.send(requestInfo, errorMapping, OnenoteSectionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new onenoteSection in the specified section group. + * Create new navigation property to sections for sites * @param body The request body * @return a {@link OnenoteSection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSection post(@jakarta.annotation.Nonnull final OnenoteSection body) { return post(body, null); } /** - * Create a new onenoteSection in the specified section group. + * Create new navigation property to sections for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenoteSection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSection post(@jakarta.annotation.Nonnull final OnenoteSection body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OnenoteSection post(@jakarta.annotation.Nonnull final OnenoteSection body return this.requestAdapter.send(requestInfo, errorMapping, OnenoteSection::createFromDiscriminatorValue); } /** - * Retrieve a list of onenoteSection objects from the specified section group. + * The sections in the section group. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of onenoteSection objects from the specified section group. + * The sections in the section group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new onenoteSection in the specified section group. + * Create new navigation property to sections for sites * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new onenoteSection in the specified section group. + * Create new navigation property to sections for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public SectionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new SectionsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of onenoteSection objects from the specified section group. + * The sections in the section group. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/sectiongroups/item/sections/item/pages/PagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/sectiongroups/item/sections/item/pages/PagesRequestBuilder.java index 21eae68c297..4a33f6c38e3 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/sectiongroups/item/sections/item/pages/PagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/sectiongroups/item/sections/item/pages/PagesRequestBuilder.java @@ -60,21 +60,19 @@ public PagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/sites/{site%2Did}/onenote/sectionGroups/{sectionGroup%2Did}/sections/{onenoteSection%2Did}/pages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @return a {@link OnenotePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePageCollectionResponse get() { return get(null); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OnenotePageCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, OnenotePageCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for sites * @param body The request body * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body) { return post(body, null); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body, @jak return this.requestAdapter.send(requestInfo, errorMapping, OnenotePage::createFromDiscriminatorValue); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new page in the specified section. + * Create new navigation property to pages for sites * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public PagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new PagesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/sectiongroups/item/sections/item/pages/item/content/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/sectiongroups/item/sections/item/pages/item/content/ContentRequestBuilder.java index a9bf449321d..230a1667a95 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/sectiongroups/item/sections/item/pages/item/content/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/sectiongroups/item/sections/item/pages/item/content/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * The page's HTML content. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/sections/SectionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/sections/SectionsRequestBuilder.java index e940c53717d..64f54412d98 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/sections/SectionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/sections/SectionsRequestBuilder.java @@ -60,21 +60,19 @@ public SectionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/sites/{site%2Did}/onenote/sections{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of onenoteSection objects. + * The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link OnenoteSectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSectionCollectionResponse get() { return get(null); } /** - * Retrieve a list of onenoteSection objects. + * The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenoteSectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSectionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public OnenoteSection post(@jakarta.annotation.Nonnull final OnenoteSection body return this.requestAdapter.send(requestInfo, errorMapping, OnenoteSection::createFromDiscriminatorValue); } /** - * Retrieve a list of onenoteSection objects. + * The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of onenoteSection objects. + * The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public SectionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new SectionsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of onenoteSection objects. + * The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/sections/item/OnenoteSectionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/sections/item/OnenoteSectionItemRequestBuilder.java index 139bb8ce26d..42c2092a034 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/sections/item/OnenoteSectionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/sections/item/OnenoteSectionItemRequestBuilder.java @@ -100,21 +100,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a onenoteSection object. + * The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link OnenoteSection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSection get() { return get(null); } /** - * Retrieve the properties and relationships of a onenoteSection object. + * The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenoteSection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSection get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -169,7 +167,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a onenoteSection object. + * The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -177,7 +175,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a onenoteSection object. + * The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -229,7 +227,7 @@ public OnenoteSectionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fina public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a onenoteSection object. + * The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/sections/item/pages/PagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/sections/item/pages/PagesRequestBuilder.java index 37b5ba2ea20..c75075fa9fb 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/sections/item/pages/PagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/sections/item/pages/PagesRequestBuilder.java @@ -60,21 +60,19 @@ public PagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/sites/{site%2Did}/onenote/sections/{onenoteSection%2Did}/pages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @return a {@link OnenotePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePageCollectionResponse get() { return get(null); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OnenotePageCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, OnenotePageCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for sites * @param body The request body * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body) { return post(body, null); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body, @jak return this.requestAdapter.send(requestInfo, errorMapping, OnenotePage::createFromDiscriminatorValue); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new page in the specified section. + * Create new navigation property to pages for sites * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public PagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new PagesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/sections/item/pages/item/content/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/sections/item/pages/item/content/ContentRequestBuilder.java index 3a8321930f5..e02f262fdcd 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/onenote/sections/item/pages/item/content/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/onenote/sections/item/pages/item/content/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * The page's HTML content. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/operations/OperationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/operations/OperationsRequestBuilder.java index a97380332bb..53ae10f55bd 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/operations/OperationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/operations/OperationsRequestBuilder.java @@ -60,21 +60,19 @@ public OperationsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/sites/{site%2Did}/operations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of rich long-running operations associated with a site. + * The collection of long-running operations on the site. * @return a {@link RichLongRunningOperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RichLongRunningOperationCollectionResponse get() { return get(null); } /** - * Get a list of rich long-running operations associated with a site. + * The collection of long-running operations on the site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RichLongRunningOperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RichLongRunningOperationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public RichLongRunningOperation post(@jakarta.annotation.Nonnull final RichLongR return this.requestAdapter.send(requestInfo, errorMapping, RichLongRunningOperation::createFromDiscriminatorValue); } /** - * Get a list of rich long-running operations associated with a site. + * The collection of long-running operations on the site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of rich long-running operations associated with a site. + * The collection of long-running operations on the site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public OperationsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new OperationsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of rich long-running operations associated with a site. + * The collection of long-running operations on the site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/operations/item/RichLongRunningOperationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/operations/item/RichLongRunningOperationItemRequestBuilder.java index 2fbebccff9f..47f86e41681 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/operations/item/RichLongRunningOperationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/operations/item/RichLongRunningOperationItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the status of a rich long-running operation on a site or a list. + * The collection of long-running operations on the site. * @return a {@link RichLongRunningOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RichLongRunningOperation get() { return get(null); } /** - * Get the status of a rich long-running operation on a site or a list. + * The collection of long-running operations on the site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RichLongRunningOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RichLongRunningOperation get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the status of a rich long-running operation on a site or a list. + * The collection of long-running operations on the site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the status of a rich long-running operation on a site or a list. + * The collection of long-running operations on the site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public RichLongRunningOperationItemRequestBuilder withUrl(@jakarta.annotation.No public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the status of a rich long-running operation on a site or a list. + * The collection of long-running operations on the site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/pages/PagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/pages/PagesRequestBuilder.java index a87c637639b..4c66ef450e6 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/pages/PagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/pages/PagesRequestBuilder.java @@ -69,21 +69,19 @@ public PagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/sites/{site%2Did}/pages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the collection of [baseSitePage][] objects from the site pages [list][] in a [site][]. All pages in the site are returned (with pagination). Sort alphabetically by name in ascending order. The following table lists the available subtypes. + * The collection of pages in the baseSitePages list in this site. * @return a {@link BaseSitePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BaseSitePageCollectionResponse get() { return get(null); } /** - * Get the collection of [baseSitePage][] objects from the site pages [list][] in a [site][]. All pages in the site are returned (with pagination). Sort alphabetically by name in ascending order. The following table lists the available subtypes. + * The collection of pages in the baseSitePages list in this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BaseSitePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BaseSitePageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public BaseSitePageCollectionResponse get(@jakarta.annotation.Nullable final jav return this.requestAdapter.send(requestInfo, errorMapping, BaseSitePageCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new [sitePage][] in the site pages [list][] in a [site][]. + * Create new navigation property to pages for sites * @param body The request body * @return a {@link BaseSitePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BaseSitePage post(@jakarta.annotation.Nonnull final BaseSitePage body) { return post(body, null); } /** - * Create a new [sitePage][] in the site pages [list][] in a [site][]. + * Create new navigation property to pages for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BaseSitePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BaseSitePage post(@jakarta.annotation.Nonnull final BaseSitePage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public BaseSitePage post(@jakarta.annotation.Nonnull final BaseSitePage body, @j return this.requestAdapter.send(requestInfo, errorMapping, BaseSitePage::createFromDiscriminatorValue); } /** - * Get the collection of [baseSitePage][] objects from the site pages [list][] in a [site][]. All pages in the site are returned (with pagination). Sort alphabetically by name in ascending order. The following table lists the available subtypes. + * The collection of pages in the baseSitePages list in this site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the collection of [baseSitePage][] objects from the site pages [list][] in a [site][]. All pages in the site are returned (with pagination). Sort alphabetically by name in ascending order. The following table lists the available subtypes. + * The collection of pages in the baseSitePages list in this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new [sitePage][] in the site pages [list][] in a [site][]. + * Create new navigation property to pages for sites * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new [sitePage][] in the site pages [list][] in a [site][]. + * Create new navigation property to pages for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public PagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new PagesRequestBuilder(rawUrl, requestAdapter); } /** - * Get the collection of [baseSitePage][] objects from the site pages [list][] in a [site][]. All pages in the site are returned (with pagination). Sort alphabetically by name in ascending order. The following table lists the available subtypes. + * The collection of pages in the baseSitePages list in this site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/pages/item/BaseSitePageItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/pages/item/BaseSitePageItemRequestBuilder.java index a57459f0260..06db72dcef3 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/pages/item/BaseSitePageItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/pages/item/BaseSitePageItemRequestBuilder.java @@ -64,18 +64,16 @@ public BaseSitePageItemRequestBuilder(@jakarta.annotation.Nonnull final String r super(requestAdapter, "{+baseurl}/sites/{site%2Did}/pages/{baseSitePage%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a [baseSitePage][] from the site pages [list][] in a [site][]. + * Delete navigation property pages for sites * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a [baseSitePage][] from the site pages [list][] in a [site][]. + * Delete navigation property pages for sites * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -84,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the metadata for a [baseSitePage][] in the site pages [list][] in a [site][]. + * The collection of pages in the baseSitePages list in this site. * @return a {@link BaseSitePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BaseSitePage get() { return get(null); } /** - * Get the metadata for a [baseSitePage][] in the site pages [list][] in a [site][]. + * The collection of pages in the baseSitePages list in this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BaseSitePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BaseSitePage get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +129,7 @@ public BaseSitePage patch(@jakarta.annotation.Nonnull final BaseSitePage body, @ return this.requestAdapter.send(requestInfo, errorMapping, BaseSitePage::createFromDiscriminatorValue); } /** - * Delete a [baseSitePage][] from the site pages [list][] in a [site][]. + * Delete navigation property pages for sites * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +137,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a [baseSitePage][] from the site pages [list][] in a [site][]. + * Delete navigation property pages for sites * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -153,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the metadata for a [baseSitePage][] in the site pages [list][] in a [site][]. + * The collection of pages in the baseSitePages list in this site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -161,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the metadata for a [baseSitePage][] in the site pages [list][] in a [site][]. + * The collection of pages in the baseSitePages list in this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -213,7 +209,7 @@ public BaseSitePageItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the metadata for a [baseSitePage][] in the site pages [list][] in a [site][]. + * The collection of pages in the baseSitePages list in this site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/permissions/PermissionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/permissions/PermissionsRequestBuilder.java index 79ada9cfb5c..b2d552076dd 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/permissions/PermissionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/permissions/PermissionsRequestBuilder.java @@ -60,21 +60,19 @@ public PermissionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/sites/{site%2Did}/permissions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the permission resources from the permissions navigation property on a site. + * The permissions associated with the site. Nullable. * @return a {@link PermissionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PermissionCollectionResponse get() { return get(null); } /** - * Get the permission resources from the permissions navigation property on a site. + * The permissions associated with the site. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PermissionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PermissionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public PermissionCollectionResponse get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, PermissionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new permission object on a site. + * Create new navigation property to permissions for sites * @param body The request body * @return a {@link Permission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Permission post(@jakarta.annotation.Nonnull final Permission body) { return post(body, null); } /** - * Create a new permission object on a site. + * Create new navigation property to permissions for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Permission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Permission post(@jakarta.annotation.Nonnull final Permission body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public Permission post(@jakarta.annotation.Nonnull final Permission body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, Permission::createFromDiscriminatorValue); } /** - * Get the permission resources from the permissions navigation property on a site. + * The permissions associated with the site. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the permission resources from the permissions navigation property on a site. + * The permissions associated with the site. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new permission object on a site. + * Create new navigation property to permissions for sites * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new permission object on a site. + * Create new navigation property to permissions for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public PermissionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new PermissionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the permission resources from the permissions navigation property on a site. + * The permissions associated with the site. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/permissions/item/PermissionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/permissions/item/PermissionItemRequestBuilder.java index c131f4c0079..f96a37afa6a 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/permissions/item/PermissionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/permissions/item/PermissionItemRequestBuilder.java @@ -46,18 +46,16 @@ public PermissionItemRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/sites/{site%2Did}/permissions/{permission%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a permission object on a site. + * Delete navigation property permissions for sites * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a permission object on a site. + * Delete navigation property permissions for sites * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a permission object on a site. + * The permissions associated with the site. Nullable. * @return a {@link Permission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Permission get() { return get(null); } /** - * Retrieve the properties and relationships of a permission object on a site. + * The permissions associated with the site. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Permission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Permission get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public Permission get(@jakarta.annotation.Nullable final java.util.function.Cons return this.requestAdapter.send(requestInfo, errorMapping, Permission::createFromDiscriminatorValue); } /** - * Update an application permission object on a site. + * Update the navigation property permissions in sites * @param body The request body * @return a {@link Permission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Permission patch(@jakarta.annotation.Nonnull final Permission body) { return patch(body, null); } /** - * Update an application permission object on a site. + * Update the navigation property permissions in sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Permission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Permission patch(@jakarta.annotation.Nonnull final Permission body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public Permission patch(@jakarta.annotation.Nonnull final Permission body, @jaka return this.requestAdapter.send(requestInfo, errorMapping, Permission::createFromDiscriminatorValue); } /** - * Delete a permission object on a site. + * Delete navigation property permissions for sites * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a permission object on a site. + * Delete navigation property permissions for sites * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a permission object on a site. + * The permissions associated with the site. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a permission object on a site. + * The permissions associated with the site. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update an application permission object on a site. + * Update the navigation property permissions in sites * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update an application permission object on a site. + * Update the navigation property permissions in sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public PermissionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final St public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a permission object on a site. + * The permissions associated with the site. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/permissions/item/grant/GrantRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/permissions/item/grant/GrantRequestBuilder.java index 3f671bcda15..47b62c9e10e 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/permissions/item/grant/GrantRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/permissions/item/grant/GrantRequestBuilder.java @@ -35,7 +35,7 @@ public GrantRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/sites/{site%2Did}/permissions/{permission%2Did}/grant", rawUrl); } /** - * Grant users access to a link represented by a [permission][]. + * Grant users access to a link represented by a permission. * @param body The request body * @return a {@link GrantPostResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -46,7 +46,7 @@ public GrantPostResponse post(@jakarta.annotation.Nonnull final GrantPostRequest return post(body, null); } /** - * Grant users access to a link represented by a [permission][]. + * Grant users access to a link represented by a permission. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GrantPostResponse} @@ -62,7 +62,7 @@ public GrantPostResponse post(@jakarta.annotation.Nonnull final GrantPostRequest return this.requestAdapter.send(requestInfo, errorMapping, GrantPostResponse::createFromDiscriminatorValue); } /** - * Grant users access to a link represented by a [permission][]. + * Grant users access to a link represented by a permission. * @param body The request body * @return a {@link RequestInformation} */ @@ -71,7 +71,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Grant users access to a link represented by a [permission][]. + * Grant users access to a link represented by a permission. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/sites/SitesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/sites/SitesRequestBuilder.java index d3dfb3c165d..3eaacb62056 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/sites/SitesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/sites/SitesRequestBuilder.java @@ -59,21 +59,19 @@ public SitesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/sites/{site%2Did}/sites{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a collection of subsites defined for a [site][]. + * The collection of the sub-sites under this site. * @return a {@link SiteCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SiteCollectionResponse get() { return get(null); } /** - * Get a collection of subsites defined for a [site][]. + * The collection of the sub-sites under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SiteCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SiteCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public SiteCollectionResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, SiteCollectionResponse::createFromDiscriminatorValue); } /** - * Get a collection of subsites defined for a [site][]. + * The collection of the sub-sites under this site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a collection of subsites defined for a [site][]. + * The collection of the sub-sites under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public SitesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new SitesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a collection of subsites defined for a [site][]. + * The collection of the sub-sites under this site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/termstore/TermStoreRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/termstore/TermStoreRequestBuilder.java index 8781771fbfc..acfc4d088f0 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/termstore/TermStoreRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/termstore/TermStoreRequestBuilder.java @@ -73,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a store object. + * The default termStore under this site. * @return a {@link Store} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Store get() { return get(null); } /** - * Read the properties and relationships of a store object. + * The default termStore under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Store} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Store get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -97,23 +95,21 @@ public Store get(@jakarta.annotation.Nullable final java.util.function.Consumer< return this.requestAdapter.send(requestInfo, errorMapping, Store::createFromDiscriminatorValue); } /** - * Update the properties of a store object. + * Update the navigation property termStore in sites * @param body The request body * @return a {@link Store} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Store patch(@jakarta.annotation.Nonnull final Store body) { return patch(body, null); } /** - * Update the properties of a store object. + * Update the navigation property termStore in sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Store} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Store patch(@jakarta.annotation.Nonnull final Store body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -144,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a store object. + * The default termStore under this site. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -152,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a store object. + * The default termStore under this site. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -164,7 +160,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a store object. + * Update the navigation property termStore in sites * @param body The request body * @return a {@link RequestInformation} */ @@ -173,7 +169,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a store object. + * Update the navigation property termStore in sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -204,7 +200,7 @@ public TermStoreRequestBuilder withUrl(@jakarta.annotation.Nonnull final String public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a store object. + * The default termStore under this site. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/termstore/groups/GroupsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/termstore/groups/GroupsRequestBuilder.java index 5183f984ee7..f1565241b56 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/termstore/groups/GroupsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/termstore/groups/GroupsRequestBuilder.java @@ -60,21 +60,19 @@ public GroupsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/sites/{site%2Did}/termStore/groups{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of group objects in a term store. + * Collection of all groups available in the term store. * @return a {@link GroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public GroupCollectionResponse get() { return get(null); } /** - * Get a list of group objects in a term store. + * Collection of all groups available in the term store. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public GroupCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public GroupCollectionResponse get(@jakarta.annotation.Nullable final java.util. return this.requestAdapter.send(requestInfo, errorMapping, GroupCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new group object in a term store. + * Create new navigation property to groups for sites * @param body The request body * @return a {@link Group} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Group post(@jakarta.annotation.Nonnull final Group body) { return post(body, null); } /** - * Create a new group object in a term store. + * Create new navigation property to groups for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Group} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Group post(@jakarta.annotation.Nonnull final Group body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public Group post(@jakarta.annotation.Nonnull final Group body, @jakarta.annotat return this.requestAdapter.send(requestInfo, errorMapping, Group::createFromDiscriminatorValue); } /** - * Get a list of group objects in a term store. + * Collection of all groups available in the term store. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of group objects in a term store. + * Collection of all groups available in the term store. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new group object in a term store. + * Create new navigation property to groups for sites * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new group object in a term store. + * Create new navigation property to groups for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public GroupsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw return new GroupsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of group objects in a term store. + * Collection of all groups available in the term store. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/termstore/groups/item/GroupItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/termstore/groups/item/GroupItemRequestBuilder.java index 0186847a9c0..701545b8e48 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/termstore/groups/item/GroupItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/termstore/groups/item/GroupItemRequestBuilder.java @@ -46,18 +46,16 @@ public GroupItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/sites/{site%2Did}/termStore/groups/{group%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a group object in a term [store]. + * Delete navigation property groups for sites * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a group object in a term [store]. + * Delete navigation property groups for sites * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a term store group object. + * Collection of all groups available in the term store. * @return a {@link Group} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Group get() { return get(null); } /** - * Read the properties and relationships of a term store group object. + * Collection of all groups available in the term store. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Group} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Group get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -115,7 +111,7 @@ public Group patch(@jakarta.annotation.Nonnull final Group body, @jakarta.annota return this.requestAdapter.send(requestInfo, errorMapping, Group::createFromDiscriminatorValue); } /** - * Delete a group object in a term [store]. + * Delete navigation property groups for sites * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -123,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a group object in a term [store]. + * Delete navigation property groups for sites * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -135,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a term store group object. + * Collection of all groups available in the term store. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a term store group object. + * Collection of all groups available in the term store. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -195,7 +191,7 @@ public GroupItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a term store group object. + * Collection of all groups available in the term store. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/termstore/groups/item/sets/SetsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/termstore/groups/item/sets/SetsRequestBuilder.java index 574ce546839..e9bab311efb 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/termstore/groups/item/sets/SetsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/termstore/groups/item/sets/SetsRequestBuilder.java @@ -60,21 +60,19 @@ public SetsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka super(requestAdapter, "{+baseurl}/sites/{site%2Did}/termStore/groups/{group%2Did}/sets{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the set objects and their properties. + * All sets under the group in a term [store]. * @return a {@link SetCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SetCollectionResponse get() { return get(null); } /** - * Get a list of the set objects and their properties. + * All sets under the group in a term [store]. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SetCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SetCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Set post(@jakarta.annotation.Nonnull final Set body, @jakarta.annotation. return this.requestAdapter.send(requestInfo, errorMapping, Set::createFromDiscriminatorValue); } /** - * Get a list of the set objects and their properties. + * All sets under the group in a term [store]. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the set objects and their properties. + * All sets under the group in a term [store]. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public SetsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr return new SetsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the set objects and their properties. + * All sets under the group in a term [store]. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/termstore/groups/item/sets/item/children/ChildrenRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/termstore/groups/item/sets/item/children/ChildrenRequestBuilder.java index 81cd850dcee..9a5340071b0 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/termstore/groups/item/sets/item/children/ChildrenRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/termstore/groups/item/sets/item/children/ChildrenRequestBuilder.java @@ -60,21 +60,19 @@ public ChildrenRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/sites/{site%2Did}/termStore/groups/{group%2Did}/sets/{set%2Did}/children{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermCollectionResponse get() { return get(null); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TermCollectionResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, TermCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new term object. + * Create new navigation property to children for sites * @param body The request body * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term post(@jakarta.annotation.Nonnull final Term body) { return post(body, null); } /** - * Create a new term object. + * Create new navigation property to children for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term post(@jakarta.annotation.Nonnull final Term body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public Term post(@jakarta.annotation.Nonnull final Term body, @jakarta.annotatio return this.requestAdapter.send(requestInfo, errorMapping, Term::createFromDiscriminatorValue); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new term object. + * Create new navigation property to children for sites * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new term object. + * Create new navigation property to children for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ChildrenRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new ChildrenRequestBuilder(rawUrl, requestAdapter); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/termstore/groups/item/sets/item/relations/RelationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/termstore/groups/item/sets/item/relations/RelationsRequestBuilder.java index 5605c57bc57..40cafb965bc 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/termstore/groups/item/sets/item/relations/RelationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/termstore/groups/item/sets/item/relations/RelationsRequestBuilder.java @@ -60,21 +60,19 @@ public RelationsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/sites/{site%2Did}/termStore/groups/{group%2Did}/sets/{set%2Did}/relations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @return a {@link RelationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RelationCollectionResponse get() { return get(null); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RelationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RelationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Relation post(@jakarta.annotation.Nonnull final Relation body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, Relation::createFromDiscriminatorValue); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public RelationsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new RelationsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/termstore/groups/item/sets/item/terms/TermsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/termstore/groups/item/sets/item/terms/TermsRequestBuilder.java index 05a490569c3..85bbaf2c7b1 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/termstore/groups/item/sets/item/terms/TermsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/termstore/groups/item/sets/item/terms/TermsRequestBuilder.java @@ -60,7 +60,7 @@ public TermsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/sites/{site%2Did}/termStore/groups/{group%2Did}/sets/{set%2Did}/terms{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public TermCollectionResponse get() { return get(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public Term post(@jakarta.annotation.Nonnull final Term body, @jakarta.annotatio return this.requestAdapter.send(requestInfo, errorMapping, Term::createFromDiscriminatorValue); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public TermsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new TermsRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/termstore/groups/item/sets/item/terms/item/TermItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/termstore/groups/item/sets/item/terms/item/TermItemRequestBuilder.java index 3a77c2c554d..d111750315a 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/termstore/groups/item/sets/item/terms/item/TermItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/termstore/groups/item/sets/item/terms/item/TermItemRequestBuilder.java @@ -64,18 +64,16 @@ public TermItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/sites/{site%2Did}/termStore/groups/{group%2Did}/sets/{set%2Did}/terms/{term%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a term object. + * Delete navigation property terms for sites * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a term object. + * Delete navigation property terms for sites * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -84,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term get() { return get(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,23 +104,21 @@ public Term get(@jakarta.annotation.Nullable final java.util.function.ConsumerFind more info here */ @jakarta.annotation.Nullable public Term patch(@jakarta.annotation.Nonnull final Term body) { return patch(body, null); } /** - * Update the properties of a term object. + * Update the navigation property terms in sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term patch(@jakarta.annotation.Nonnull final Term body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +129,7 @@ public Term patch(@jakarta.annotation.Nonnull final Term body, @jakarta.annotati return this.requestAdapter.send(requestInfo, errorMapping, Term::createFromDiscriminatorValue); } /** - * Delete a term object. + * Delete navigation property terms for sites * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +137,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a term object. + * Delete navigation property terms for sites * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -163,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -175,7 +169,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a term object. + * Update the navigation property terms in sites * @param body The request body * @return a {@link RequestInformation} */ @@ -184,7 +178,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a term object. + * Update the navigation property terms in sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -215,7 +209,7 @@ public TermItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a term object. + * All the terms under the set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/SetsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/SetsRequestBuilder.java index a6d6c921373..f8cabf70bcb 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/SetsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/SetsRequestBuilder.java @@ -60,7 +60,7 @@ public SetsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka super(requestAdapter, "{+baseurl}/sites/{site%2Did}/termStore/sets{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Read the properties and relationships of a set object. + * Collection of all sets available in the term store. This relationship can only be used to load a specific term set. * @return a {@link SetCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public SetCollectionResponse get() { return get(null); } /** - * Read the properties and relationships of a set object. + * Collection of all sets available in the term store. This relationship can only be used to load a specific term set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SetCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -82,23 +82,21 @@ public SetCollectionResponse get(@jakarta.annotation.Nullable final java.util.fu return this.requestAdapter.send(requestInfo, errorMapping, SetCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new set object. + * Create new navigation property to sets for sites * @param body The request body * @return a {@link Set} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Set post(@jakarta.annotation.Nonnull final Set body) { return post(body, null); } /** - * Create a new set object. + * Create new navigation property to sets for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Set} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Set post(@jakarta.annotation.Nonnull final Set body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Set post(@jakarta.annotation.Nonnull final Set body, @jakarta.annotation. return this.requestAdapter.send(requestInfo, errorMapping, Set::createFromDiscriminatorValue); } /** - * Read the properties and relationships of a set object. + * Collection of all sets available in the term store. This relationship can only be used to load a specific term set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a set object. + * Collection of all sets available in the term store. This relationship can only be used to load a specific term set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -129,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new set object. + * Create new navigation property to sets for sites * @param body The request body * @return a {@link RequestInformation} */ @@ -138,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new set object. + * Create new navigation property to sets for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -163,7 +161,7 @@ public SetsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr return new SetsRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of a set object. + * Collection of all sets available in the term store. This relationship can only be used to load a specific term set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/item/SetItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/item/SetItemRequestBuilder.java index cbda39c6964..b562a6c1dd9 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/item/SetItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/item/SetItemRequestBuilder.java @@ -73,18 +73,16 @@ public SetItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/sites/{site%2Did}/termStore/sets/{set%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a set object. + * Delete navigation property sets for sites * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a set object. + * Delete navigation property sets for sites * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -93,21 +91,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a set object. + * Collection of all sets available in the term store. This relationship can only be used to load a specific term set. * @return a {@link Set} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Set get() { return get(null); } /** - * Read the properties and relationships of a set object. + * Collection of all sets available in the term store. This relationship can only be used to load a specific term set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Set} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Set get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,23 +113,21 @@ public Set get(@jakarta.annotation.Nullable final java.util.function.ConsumerFind more info here */ @jakarta.annotation.Nullable public Set patch(@jakarta.annotation.Nonnull final Set body) { return patch(body, null); } /** - * Update the properties of a set object. + * Update the navigation property sets in sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Set} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Set patch(@jakarta.annotation.Nonnull final Set body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -144,7 +138,7 @@ public Set patch(@jakarta.annotation.Nonnull final Set body, @jakarta.annotation return this.requestAdapter.send(requestInfo, errorMapping, Set::createFromDiscriminatorValue); } /** - * Delete a set object. + * Delete navigation property sets for sites * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -152,7 +146,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a set object. + * Delete navigation property sets for sites * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -164,7 +158,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a set object. + * Collection of all sets available in the term store. This relationship can only be used to load a specific term set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -172,7 +166,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a set object. + * Collection of all sets available in the term store. This relationship can only be used to load a specific term set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +178,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a set object. + * Update the navigation property sets in sites * @param body The request body * @return a {@link RequestInformation} */ @@ -193,7 +187,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a set object. + * Update the navigation property sets in sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -224,7 +218,7 @@ public SetItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a set object. + * Collection of all sets available in the term store. This relationship can only be used to load a specific term set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/item/children/ChildrenRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/item/children/ChildrenRequestBuilder.java index d56d1d089d8..e734275f406 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/item/children/ChildrenRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/item/children/ChildrenRequestBuilder.java @@ -60,21 +60,19 @@ public ChildrenRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/sites/{site%2Did}/termStore/sets/{set%2Did}/children{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermCollectionResponse get() { return get(null); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TermCollectionResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, TermCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new term object. + * Create new navigation property to children for sites * @param body The request body * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term post(@jakarta.annotation.Nonnull final Term body) { return post(body, null); } /** - * Create a new term object. + * Create new navigation property to children for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term post(@jakarta.annotation.Nonnull final Term body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public Term post(@jakarta.annotation.Nonnull final Term body, @jakarta.annotatio return this.requestAdapter.send(requestInfo, errorMapping, Term::createFromDiscriminatorValue); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new term object. + * Create new navigation property to children for sites * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new term object. + * Create new navigation property to children for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ChildrenRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new ChildrenRequestBuilder(rawUrl, requestAdapter); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/item/parentgroup/sets/SetsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/item/parentgroup/sets/SetsRequestBuilder.java index 0e71f67ada0..0fa2c795926 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/item/parentgroup/sets/SetsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/item/parentgroup/sets/SetsRequestBuilder.java @@ -60,21 +60,19 @@ public SetsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka super(requestAdapter, "{+baseurl}/sites/{site%2Did}/termStore/sets/{set%2Did}/parentGroup/sets{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the set objects and their properties. + * All sets under the group in a term [store]. * @return a {@link SetCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SetCollectionResponse get() { return get(null); } /** - * Get a list of the set objects and their properties. + * All sets under the group in a term [store]. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SetCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SetCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Set post(@jakarta.annotation.Nonnull final Set body, @jakarta.annotation. return this.requestAdapter.send(requestInfo, errorMapping, Set::createFromDiscriminatorValue); } /** - * Get a list of the set objects and their properties. + * All sets under the group in a term [store]. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the set objects and their properties. + * All sets under the group in a term [store]. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public SetsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr return new SetsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the set objects and their properties. + * All sets under the group in a term [store]. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/item/parentgroup/sets/item/children/ChildrenRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/item/parentgroup/sets/item/children/ChildrenRequestBuilder.java index 62266aab33a..05efdf33503 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/item/parentgroup/sets/item/children/ChildrenRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/item/parentgroup/sets/item/children/ChildrenRequestBuilder.java @@ -60,21 +60,19 @@ public ChildrenRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/sites/{site%2Did}/termStore/sets/{set%2Did}/parentGroup/sets/{set%2Did1}/children{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermCollectionResponse get() { return get(null); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TermCollectionResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, TermCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new term object. + * Create new navigation property to children for sites * @param body The request body * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term post(@jakarta.annotation.Nonnull final Term body) { return post(body, null); } /** - * Create a new term object. + * Create new navigation property to children for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term post(@jakarta.annotation.Nonnull final Term body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public Term post(@jakarta.annotation.Nonnull final Term body, @jakarta.annotatio return this.requestAdapter.send(requestInfo, errorMapping, Term::createFromDiscriminatorValue); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new term object. + * Create new navigation property to children for sites * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new term object. + * Create new navigation property to children for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ChildrenRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new ChildrenRequestBuilder(rawUrl, requestAdapter); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/item/parentgroup/sets/item/relations/RelationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/item/parentgroup/sets/item/relations/RelationsRequestBuilder.java index fdd2268bed6..50d64bebdcf 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/item/parentgroup/sets/item/relations/RelationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/item/parentgroup/sets/item/relations/RelationsRequestBuilder.java @@ -60,21 +60,19 @@ public RelationsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/sites/{site%2Did}/termStore/sets/{set%2Did}/parentGroup/sets/{set%2Did1}/relations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @return a {@link RelationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RelationCollectionResponse get() { return get(null); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RelationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RelationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Relation post(@jakarta.annotation.Nonnull final Relation body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, Relation::createFromDiscriminatorValue); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public RelationsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new RelationsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/item/parentgroup/sets/item/terms/TermsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/item/parentgroup/sets/item/terms/TermsRequestBuilder.java index 236e5593f98..ce1701e159a 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/item/parentgroup/sets/item/terms/TermsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/item/parentgroup/sets/item/terms/TermsRequestBuilder.java @@ -60,7 +60,7 @@ public TermsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/sites/{site%2Did}/termStore/sets/{set%2Did}/parentGroup/sets/{set%2Did1}/terms{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public TermCollectionResponse get() { return get(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public Term post(@jakarta.annotation.Nonnull final Term body, @jakarta.annotatio return this.requestAdapter.send(requestInfo, errorMapping, Term::createFromDiscriminatorValue); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public TermsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new TermsRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/item/parentgroup/sets/item/terms/item/TermItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/item/parentgroup/sets/item/terms/item/TermItemRequestBuilder.java index 0b93a3c3075..d2b0b64d67e 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/item/parentgroup/sets/item/terms/item/TermItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/item/parentgroup/sets/item/terms/item/TermItemRequestBuilder.java @@ -64,18 +64,16 @@ public TermItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/sites/{site%2Did}/termStore/sets/{set%2Did}/parentGroup/sets/{set%2Did1}/terms/{term%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a term object. + * Delete navigation property terms for sites * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a term object. + * Delete navigation property terms for sites * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -84,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term get() { return get(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,23 +104,21 @@ public Term get(@jakarta.annotation.Nullable final java.util.function.ConsumerFind more info here */ @jakarta.annotation.Nullable public Term patch(@jakarta.annotation.Nonnull final Term body) { return patch(body, null); } /** - * Update the properties of a term object. + * Update the navigation property terms in sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term patch(@jakarta.annotation.Nonnull final Term body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +129,7 @@ public Term patch(@jakarta.annotation.Nonnull final Term body, @jakarta.annotati return this.requestAdapter.send(requestInfo, errorMapping, Term::createFromDiscriminatorValue); } /** - * Delete a term object. + * Delete navigation property terms for sites * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +137,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a term object. + * Delete navigation property terms for sites * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -163,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -175,7 +169,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a term object. + * Update the navigation property terms in sites * @param body The request body * @return a {@link RequestInformation} */ @@ -184,7 +178,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a term object. + * Update the navigation property terms in sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -215,7 +209,7 @@ public TermItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a term object. + * All the terms under the set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/item/relations/RelationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/item/relations/RelationsRequestBuilder.java index e02ee3eadaa..e943acd1820 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/item/relations/RelationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/item/relations/RelationsRequestBuilder.java @@ -60,21 +60,19 @@ public RelationsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/sites/{site%2Did}/termStore/sets/{set%2Did}/relations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @return a {@link RelationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RelationCollectionResponse get() { return get(null); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RelationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RelationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Relation post(@jakarta.annotation.Nonnull final Relation body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, Relation::createFromDiscriminatorValue); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public RelationsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new RelationsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/item/terms/TermsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/item/terms/TermsRequestBuilder.java index 314e05b48cd..8749642c435 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/item/terms/TermsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/item/terms/TermsRequestBuilder.java @@ -60,7 +60,7 @@ public TermsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/sites/{site%2Did}/termStore/sets/{set%2Did}/terms{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public TermCollectionResponse get() { return get(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public Term post(@jakarta.annotation.Nonnull final Term body, @jakarta.annotatio return this.requestAdapter.send(requestInfo, errorMapping, Term::createFromDiscriminatorValue); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public TermsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new TermsRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/item/terms/item/TermItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/item/terms/item/TermItemRequestBuilder.java index d7a09ec5dd7..a315c7478a8 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/item/terms/item/TermItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/termstore/sets/item/terms/item/TermItemRequestBuilder.java @@ -64,18 +64,16 @@ public TermItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/sites/{site%2Did}/termStore/sets/{set%2Did}/terms/{term%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a term object. + * Delete navigation property terms for sites * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a term object. + * Delete navigation property terms for sites * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -84,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term get() { return get(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,23 +104,21 @@ public Term get(@jakarta.annotation.Nullable final java.util.function.ConsumerFind more info here */ @jakarta.annotation.Nullable public Term patch(@jakarta.annotation.Nonnull final Term body) { return patch(body, null); } /** - * Update the properties of a term object. + * Update the navigation property terms in sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term patch(@jakarta.annotation.Nonnull final Term body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +129,7 @@ public Term patch(@jakarta.annotation.Nonnull final Term body, @jakarta.annotati return this.requestAdapter.send(requestInfo, errorMapping, Term::createFromDiscriminatorValue); } /** - * Delete a term object. + * Delete navigation property terms for sites * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +137,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a term object. + * Delete navigation property terms for sites * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -163,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -175,7 +169,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a term object. + * Update the navigation property terms in sites * @param body The request body * @return a {@link RequestInformation} */ @@ -184,7 +178,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a term object. + * Update the navigation property terms in sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -215,7 +209,7 @@ public TermItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a term object. + * All the terms under the set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/groups/GroupsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/groups/GroupsRequestBuilder.java index 2cf371c3e38..93683106bd2 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/groups/GroupsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/groups/GroupsRequestBuilder.java @@ -60,21 +60,19 @@ public GroupsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/sites/{site%2Did}/termStores/{store%2Did}/groups{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of group objects in a term store. + * Collection of all groups available in the term store. * @return a {@link GroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public GroupCollectionResponse get() { return get(null); } /** - * Get a list of group objects in a term store. + * Collection of all groups available in the term store. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public GroupCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public GroupCollectionResponse get(@jakarta.annotation.Nullable final java.util. return this.requestAdapter.send(requestInfo, errorMapping, GroupCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new group object in a term store. + * Create new navigation property to groups for sites * @param body The request body * @return a {@link Group} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Group post(@jakarta.annotation.Nonnull final Group body) { return post(body, null); } /** - * Create a new group object in a term store. + * Create new navigation property to groups for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Group} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Group post(@jakarta.annotation.Nonnull final Group body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public Group post(@jakarta.annotation.Nonnull final Group body, @jakarta.annotat return this.requestAdapter.send(requestInfo, errorMapping, Group::createFromDiscriminatorValue); } /** - * Get a list of group objects in a term store. + * Collection of all groups available in the term store. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of group objects in a term store. + * Collection of all groups available in the term store. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new group object in a term store. + * Create new navigation property to groups for sites * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new group object in a term store. + * Create new navigation property to groups for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public GroupsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw return new GroupsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of group objects in a term store. + * Collection of all groups available in the term store. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/groups/item/GroupItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/groups/item/GroupItemRequestBuilder.java index 5b8bb19d058..9f52e344374 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/groups/item/GroupItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/groups/item/GroupItemRequestBuilder.java @@ -46,18 +46,16 @@ public GroupItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/sites/{site%2Did}/termStores/{store%2Did}/groups/{group%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a group object in a term [store]. + * Delete navigation property groups for sites * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a group object in a term [store]. + * Delete navigation property groups for sites * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a term store group object. + * Collection of all groups available in the term store. * @return a {@link Group} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Group get() { return get(null); } /** - * Read the properties and relationships of a term store group object. + * Collection of all groups available in the term store. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Group} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Group get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -115,7 +111,7 @@ public Group patch(@jakarta.annotation.Nonnull final Group body, @jakarta.annota return this.requestAdapter.send(requestInfo, errorMapping, Group::createFromDiscriminatorValue); } /** - * Delete a group object in a term [store]. + * Delete navigation property groups for sites * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -123,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a group object in a term [store]. + * Delete navigation property groups for sites * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -135,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a term store group object. + * Collection of all groups available in the term store. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a term store group object. + * Collection of all groups available in the term store. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -195,7 +191,7 @@ public GroupItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a term store group object. + * Collection of all groups available in the term store. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/groups/item/sets/SetsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/groups/item/sets/SetsRequestBuilder.java index 0f8f995451b..2ef00d5a810 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/groups/item/sets/SetsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/groups/item/sets/SetsRequestBuilder.java @@ -60,21 +60,19 @@ public SetsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka super(requestAdapter, "{+baseurl}/sites/{site%2Did}/termStores/{store%2Did}/groups/{group%2Did}/sets{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the set objects and their properties. + * All sets under the group in a term [store]. * @return a {@link SetCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SetCollectionResponse get() { return get(null); } /** - * Get a list of the set objects and their properties. + * All sets under the group in a term [store]. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SetCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SetCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Set post(@jakarta.annotation.Nonnull final Set body, @jakarta.annotation. return this.requestAdapter.send(requestInfo, errorMapping, Set::createFromDiscriminatorValue); } /** - * Get a list of the set objects and their properties. + * All sets under the group in a term [store]. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the set objects and their properties. + * All sets under the group in a term [store]. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public SetsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr return new SetsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the set objects and their properties. + * All sets under the group in a term [store]. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/groups/item/sets/item/children/ChildrenRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/groups/item/sets/item/children/ChildrenRequestBuilder.java index 6276e7cb29b..9c17cf7c507 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/groups/item/sets/item/children/ChildrenRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/groups/item/sets/item/children/ChildrenRequestBuilder.java @@ -60,21 +60,19 @@ public ChildrenRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/sites/{site%2Did}/termStores/{store%2Did}/groups/{group%2Did}/sets/{set%2Did}/children{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermCollectionResponse get() { return get(null); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TermCollectionResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, TermCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new term object. + * Create new navigation property to children for sites * @param body The request body * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term post(@jakarta.annotation.Nonnull final Term body) { return post(body, null); } /** - * Create a new term object. + * Create new navigation property to children for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term post(@jakarta.annotation.Nonnull final Term body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public Term post(@jakarta.annotation.Nonnull final Term body, @jakarta.annotatio return this.requestAdapter.send(requestInfo, errorMapping, Term::createFromDiscriminatorValue); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new term object. + * Create new navigation property to children for sites * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new term object. + * Create new navigation property to children for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ChildrenRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new ChildrenRequestBuilder(rawUrl, requestAdapter); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/groups/item/sets/item/relations/RelationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/groups/item/sets/item/relations/RelationsRequestBuilder.java index c05da479bf2..f97327ef5dc 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/groups/item/sets/item/relations/RelationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/groups/item/sets/item/relations/RelationsRequestBuilder.java @@ -60,21 +60,19 @@ public RelationsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/sites/{site%2Did}/termStores/{store%2Did}/groups/{group%2Did}/sets/{set%2Did}/relations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @return a {@link RelationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RelationCollectionResponse get() { return get(null); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RelationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RelationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Relation post(@jakarta.annotation.Nonnull final Relation body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, Relation::createFromDiscriminatorValue); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public RelationsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new RelationsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/groups/item/sets/item/terms/TermsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/groups/item/sets/item/terms/TermsRequestBuilder.java index add8fa37596..559272baab1 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/groups/item/sets/item/terms/TermsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/groups/item/sets/item/terms/TermsRequestBuilder.java @@ -60,7 +60,7 @@ public TermsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/sites/{site%2Did}/termStores/{store%2Did}/groups/{group%2Did}/sets/{set%2Did}/terms{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public TermCollectionResponse get() { return get(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public Term post(@jakarta.annotation.Nonnull final Term body, @jakarta.annotatio return this.requestAdapter.send(requestInfo, errorMapping, Term::createFromDiscriminatorValue); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public TermsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new TermsRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/groups/item/sets/item/terms/item/TermItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/groups/item/sets/item/terms/item/TermItemRequestBuilder.java index 3008622a01f..e25c0b68d77 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/groups/item/sets/item/terms/item/TermItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/groups/item/sets/item/terms/item/TermItemRequestBuilder.java @@ -64,18 +64,16 @@ public TermItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/sites/{site%2Did}/termStores/{store%2Did}/groups/{group%2Did}/sets/{set%2Did}/terms/{term%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a term object. + * Delete navigation property terms for sites * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a term object. + * Delete navigation property terms for sites * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -84,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term get() { return get(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,23 +104,21 @@ public Term get(@jakarta.annotation.Nullable final java.util.function.ConsumerFind more info here */ @jakarta.annotation.Nullable public Term patch(@jakarta.annotation.Nonnull final Term body) { return patch(body, null); } /** - * Update the properties of a term object. + * Update the navigation property terms in sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term patch(@jakarta.annotation.Nonnull final Term body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +129,7 @@ public Term patch(@jakarta.annotation.Nonnull final Term body, @jakarta.annotati return this.requestAdapter.send(requestInfo, errorMapping, Term::createFromDiscriminatorValue); } /** - * Delete a term object. + * Delete navigation property terms for sites * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +137,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a term object. + * Delete navigation property terms for sites * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -163,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -175,7 +169,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a term object. + * Update the navigation property terms in sites * @param body The request body * @return a {@link RequestInformation} */ @@ -184,7 +178,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a term object. + * Update the navigation property terms in sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -215,7 +209,7 @@ public TermItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a term object. + * All the terms under the set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/SetsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/SetsRequestBuilder.java index 12acfd7fd0f..78a19920a60 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/SetsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/SetsRequestBuilder.java @@ -60,7 +60,7 @@ public SetsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka super(requestAdapter, "{+baseurl}/sites/{site%2Did}/termStores/{store%2Did}/sets{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Read the properties and relationships of a set object. + * Collection of all sets available in the term store. This relationship can only be used to load a specific term set. * @return a {@link SetCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public SetCollectionResponse get() { return get(null); } /** - * Read the properties and relationships of a set object. + * Collection of all sets available in the term store. This relationship can only be used to load a specific term set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SetCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -82,23 +82,21 @@ public SetCollectionResponse get(@jakarta.annotation.Nullable final java.util.fu return this.requestAdapter.send(requestInfo, errorMapping, SetCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new set object. + * Create new navigation property to sets for sites * @param body The request body * @return a {@link Set} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Set post(@jakarta.annotation.Nonnull final Set body) { return post(body, null); } /** - * Create a new set object. + * Create new navigation property to sets for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Set} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Set post(@jakarta.annotation.Nonnull final Set body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Set post(@jakarta.annotation.Nonnull final Set body, @jakarta.annotation. return this.requestAdapter.send(requestInfo, errorMapping, Set::createFromDiscriminatorValue); } /** - * Read the properties and relationships of a set object. + * Collection of all sets available in the term store. This relationship can only be used to load a specific term set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a set object. + * Collection of all sets available in the term store. This relationship can only be used to load a specific term set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -129,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new set object. + * Create new navigation property to sets for sites * @param body The request body * @return a {@link RequestInformation} */ @@ -138,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new set object. + * Create new navigation property to sets for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -163,7 +161,7 @@ public SetsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr return new SetsRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of a set object. + * Collection of all sets available in the term store. This relationship can only be used to load a specific term set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/item/SetItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/item/SetItemRequestBuilder.java index 2ca4ae88afc..789a9becbc1 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/item/SetItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/item/SetItemRequestBuilder.java @@ -73,18 +73,16 @@ public SetItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/sites/{site%2Did}/termStores/{store%2Did}/sets/{set%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a set object. + * Delete navigation property sets for sites * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a set object. + * Delete navigation property sets for sites * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -93,21 +91,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a set object. + * Collection of all sets available in the term store. This relationship can only be used to load a specific term set. * @return a {@link Set} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Set get() { return get(null); } /** - * Read the properties and relationships of a set object. + * Collection of all sets available in the term store. This relationship can only be used to load a specific term set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Set} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Set get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,23 +113,21 @@ public Set get(@jakarta.annotation.Nullable final java.util.function.ConsumerFind more info here */ @jakarta.annotation.Nullable public Set patch(@jakarta.annotation.Nonnull final Set body) { return patch(body, null); } /** - * Update the properties of a set object. + * Update the navigation property sets in sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Set} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Set patch(@jakarta.annotation.Nonnull final Set body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -144,7 +138,7 @@ public Set patch(@jakarta.annotation.Nonnull final Set body, @jakarta.annotation return this.requestAdapter.send(requestInfo, errorMapping, Set::createFromDiscriminatorValue); } /** - * Delete a set object. + * Delete navigation property sets for sites * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -152,7 +146,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a set object. + * Delete navigation property sets for sites * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -164,7 +158,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a set object. + * Collection of all sets available in the term store. This relationship can only be used to load a specific term set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -172,7 +166,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a set object. + * Collection of all sets available in the term store. This relationship can only be used to load a specific term set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +178,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a set object. + * Update the navigation property sets in sites * @param body The request body * @return a {@link RequestInformation} */ @@ -193,7 +187,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a set object. + * Update the navigation property sets in sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -224,7 +218,7 @@ public SetItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a set object. + * Collection of all sets available in the term store. This relationship can only be used to load a specific term set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/item/children/ChildrenRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/item/children/ChildrenRequestBuilder.java index 7c32b6174da..cf7e6a783be 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/item/children/ChildrenRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/item/children/ChildrenRequestBuilder.java @@ -60,21 +60,19 @@ public ChildrenRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/sites/{site%2Did}/termStores/{store%2Did}/sets/{set%2Did}/children{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermCollectionResponse get() { return get(null); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TermCollectionResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, TermCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new term object. + * Create new navigation property to children for sites * @param body The request body * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term post(@jakarta.annotation.Nonnull final Term body) { return post(body, null); } /** - * Create a new term object. + * Create new navigation property to children for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term post(@jakarta.annotation.Nonnull final Term body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public Term post(@jakarta.annotation.Nonnull final Term body, @jakarta.annotatio return this.requestAdapter.send(requestInfo, errorMapping, Term::createFromDiscriminatorValue); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new term object. + * Create new navigation property to children for sites * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new term object. + * Create new navigation property to children for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ChildrenRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new ChildrenRequestBuilder(rawUrl, requestAdapter); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/item/parentgroup/sets/SetsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/item/parentgroup/sets/SetsRequestBuilder.java index 4e1099b604e..250b802b148 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/item/parentgroup/sets/SetsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/item/parentgroup/sets/SetsRequestBuilder.java @@ -60,21 +60,19 @@ public SetsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka super(requestAdapter, "{+baseurl}/sites/{site%2Did}/termStores/{store%2Did}/sets/{set%2Did}/parentGroup/sets{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the set objects and their properties. + * All sets under the group in a term [store]. * @return a {@link SetCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SetCollectionResponse get() { return get(null); } /** - * Get a list of the set objects and their properties. + * All sets under the group in a term [store]. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SetCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SetCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Set post(@jakarta.annotation.Nonnull final Set body, @jakarta.annotation. return this.requestAdapter.send(requestInfo, errorMapping, Set::createFromDiscriminatorValue); } /** - * Get a list of the set objects and their properties. + * All sets under the group in a term [store]. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the set objects and their properties. + * All sets under the group in a term [store]. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public SetsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr return new SetsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the set objects and their properties. + * All sets under the group in a term [store]. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/item/parentgroup/sets/item/children/ChildrenRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/item/parentgroup/sets/item/children/ChildrenRequestBuilder.java index 030608bde27..48d26b59ed8 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/item/parentgroup/sets/item/children/ChildrenRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/item/parentgroup/sets/item/children/ChildrenRequestBuilder.java @@ -60,21 +60,19 @@ public ChildrenRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/sites/{site%2Did}/termStores/{store%2Did}/sets/{set%2Did}/parentGroup/sets/{set%2Did1}/children{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermCollectionResponse get() { return get(null); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TermCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TermCollectionResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, TermCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new term object. + * Create new navigation property to children for sites * @param body The request body * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term post(@jakarta.annotation.Nonnull final Term body) { return post(body, null); } /** - * Create a new term object. + * Create new navigation property to children for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term post(@jakarta.annotation.Nonnull final Term body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public Term post(@jakarta.annotation.Nonnull final Term body, @jakarta.annotatio return this.requestAdapter.send(requestInfo, errorMapping, Term::createFromDiscriminatorValue); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new term object. + * Create new navigation property to children for sites * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new term object. + * Create new navigation property to children for sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ChildrenRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new ChildrenRequestBuilder(rawUrl, requestAdapter); } /** - * Get the first level children of a [set] or [term] resource using the children navigation property. + * Children terms of set in term [store]. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/item/parentgroup/sets/item/relations/RelationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/item/parentgroup/sets/item/relations/RelationsRequestBuilder.java index 8360eda404a..4f9c87e0c8a 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/item/parentgroup/sets/item/relations/RelationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/item/parentgroup/sets/item/relations/RelationsRequestBuilder.java @@ -60,21 +60,19 @@ public RelationsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/sites/{site%2Did}/termStores/{store%2Did}/sets/{set%2Did}/parentGroup/sets/{set%2Did1}/relations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @return a {@link RelationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RelationCollectionResponse get() { return get(null); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RelationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RelationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Relation post(@jakarta.annotation.Nonnull final Relation body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, Relation::createFromDiscriminatorValue); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public RelationsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new RelationsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/item/parentgroup/sets/item/terms/TermsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/item/parentgroup/sets/item/terms/TermsRequestBuilder.java index f5561b18119..204843aa1e3 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/item/parentgroup/sets/item/terms/TermsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/item/parentgroup/sets/item/terms/TermsRequestBuilder.java @@ -60,7 +60,7 @@ public TermsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/sites/{site%2Did}/termStores/{store%2Did}/sets/{set%2Did}/parentGroup/sets/{set%2Did1}/terms{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public TermCollectionResponse get() { return get(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public Term post(@jakarta.annotation.Nonnull final Term body, @jakarta.annotatio return this.requestAdapter.send(requestInfo, errorMapping, Term::createFromDiscriminatorValue); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public TermsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new TermsRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/item/parentgroup/sets/item/terms/item/TermItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/item/parentgroup/sets/item/terms/item/TermItemRequestBuilder.java index b540bfa1fad..af96c556329 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/item/parentgroup/sets/item/terms/item/TermItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/item/parentgroup/sets/item/terms/item/TermItemRequestBuilder.java @@ -64,18 +64,16 @@ public TermItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/sites/{site%2Did}/termStores/{store%2Did}/sets/{set%2Did}/parentGroup/sets/{set%2Did1}/terms/{term%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a term object. + * Delete navigation property terms for sites * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a term object. + * Delete navigation property terms for sites * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -84,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term get() { return get(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,23 +104,21 @@ public Term get(@jakarta.annotation.Nullable final java.util.function.ConsumerFind more info here */ @jakarta.annotation.Nullable public Term patch(@jakarta.annotation.Nonnull final Term body) { return patch(body, null); } /** - * Update the properties of a term object. + * Update the navigation property terms in sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term patch(@jakarta.annotation.Nonnull final Term body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +129,7 @@ public Term patch(@jakarta.annotation.Nonnull final Term body, @jakarta.annotati return this.requestAdapter.send(requestInfo, errorMapping, Term::createFromDiscriminatorValue); } /** - * Delete a term object. + * Delete navigation property terms for sites * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +137,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a term object. + * Delete navigation property terms for sites * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -163,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -175,7 +169,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a term object. + * Update the navigation property terms in sites * @param body The request body * @return a {@link RequestInformation} */ @@ -184,7 +178,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a term object. + * Update the navigation property terms in sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -215,7 +209,7 @@ public TermItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a term object. + * All the terms under the set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/item/relations/RelationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/item/relations/RelationsRequestBuilder.java index 76d1c4741ee..bf8a656d74f 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/item/relations/RelationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/item/relations/RelationsRequestBuilder.java @@ -60,21 +60,19 @@ public RelationsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/sites/{site%2Did}/termStores/{store%2Did}/sets/{set%2Did}/relations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @return a {@link RelationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RelationCollectionResponse get() { return get(null); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RelationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public RelationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Relation post(@jakarta.annotation.Nonnull final Relation body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, Relation::createFromDiscriminatorValue); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public RelationsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new RelationsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the different relation of a [term] or [set] from the relations navigation property. + * Indicates which terms have been pinned or reused directly under the set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/item/terms/TermsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/item/terms/TermsRequestBuilder.java index 3fd5b8280c2..14999746f59 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/item/terms/TermsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/item/terms/TermsRequestBuilder.java @@ -60,7 +60,7 @@ public TermsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/sites/{site%2Did}/termStores/{store%2Did}/sets/{set%2Did}/terms{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public TermCollectionResponse get() { return get(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TermCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public Term post(@jakarta.annotation.Nonnull final Term body, @jakarta.annotatio return this.requestAdapter.send(requestInfo, errorMapping, Term::createFromDiscriminatorValue); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public TermsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new TermsRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/item/terms/item/TermItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/item/terms/item/TermItemRequestBuilder.java index a63eea652c7..5c2a94988c6 100644 --- a/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/item/terms/item/TermItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/sites/item/termstores/item/sets/item/terms/item/TermItemRequestBuilder.java @@ -64,18 +64,16 @@ public TermItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/sites/{site%2Did}/termStores/{store%2Did}/sets/{set%2Did}/terms/{term%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a term object. + * Delete navigation property terms for sites * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a term object. + * Delete navigation property terms for sites * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -84,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term get() { return get(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,23 +104,21 @@ public Term get(@jakarta.annotation.Nullable final java.util.function.ConsumerFind more info here */ @jakarta.annotation.Nullable public Term patch(@jakarta.annotation.Nonnull final Term body) { return patch(body, null); } /** - * Update the properties of a term object. + * Update the navigation property terms in sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Term} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Term patch(@jakarta.annotation.Nonnull final Term body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +129,7 @@ public Term patch(@jakarta.annotation.Nonnull final Term body, @jakarta.annotati return this.requestAdapter.send(requestInfo, errorMapping, Term::createFromDiscriminatorValue); } /** - * Delete a term object. + * Delete navigation property terms for sites * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +137,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a term object. + * Delete navigation property terms for sites * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -163,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a term object. + * All the terms under the set. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -175,7 +169,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a term object. + * Update the navigation property terms in sites * @param body The request body * @return a {@link RequestInformation} */ @@ -184,7 +178,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a term object. + * Update the navigation property terms in sites * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -215,7 +209,7 @@ public TermItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a term object. + * All the terms under the set. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/BookingBusinessesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/BookingBusinessesRequestBuilder.java index 23018e1af46..0155c0bad0b 100644 --- a/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/BookingBusinessesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/BookingBusinessesRequestBuilder.java @@ -60,21 +60,19 @@ public BookingBusinessesRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/solutions/bookingBusinesses{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a collection of bookingBusiness objects that has been created for the tenant. This operation returns only the id and displayName of each Microsoft Bookings business in the collection. For performance considerations, it does not return other properties. You can get the other properties of a Bookings business by specifying its id in a GET operation. + * Get bookingBusinesses from solutions * @return a {@link BookingBusinessCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingBusinessCollectionResponse get() { return get(null); } /** - * Get a collection of bookingBusiness objects that has been created for the tenant. This operation returns only the id and displayName of each Microsoft Bookings business in the collection. For performance considerations, it does not return other properties. You can get the other properties of a Bookings business by specifying its id in a GET operation. + * Get bookingBusinesses from solutions * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BookingBusinessCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingBusinessCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public BookingBusinessCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, BookingBusinessCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new Microsoft Bookings business in a tenant. This is the first step in setting up a Bookings business where you must specify the business display name. You can include other information such as business address, web site address, and scheduling policy, or set that information later by updating the bookingBusiness. + * Create new navigation property to bookingBusinesses for solutions * @param body The request body * @return a {@link BookingBusiness} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingBusiness post(@jakarta.annotation.Nonnull final BookingBusiness body) { return post(body, null); } /** - * Create a new Microsoft Bookings business in a tenant. This is the first step in setting up a Bookings business where you must specify the business display name. You can include other information such as business address, web site address, and scheduling policy, or set that information later by updating the bookingBusiness. + * Create new navigation property to bookingBusinesses for solutions * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BookingBusiness} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingBusiness post(@jakarta.annotation.Nonnull final BookingBusiness body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public BookingBusiness post(@jakarta.annotation.Nonnull final BookingBusiness bo return this.requestAdapter.send(requestInfo, errorMapping, BookingBusiness::createFromDiscriminatorValue); } /** - * Get a collection of bookingBusiness objects that has been created for the tenant. This operation returns only the id and displayName of each Microsoft Bookings business in the collection. For performance considerations, it does not return other properties. You can get the other properties of a Bookings business by specifying its id in a GET operation. + * Get bookingBusinesses from solutions * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a collection of bookingBusiness objects that has been created for the tenant. This operation returns only the id and displayName of each Microsoft Bookings business in the collection. For performance considerations, it does not return other properties. You can get the other properties of a Bookings business by specifying its id in a GET operation. + * Get bookingBusinesses from solutions * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new Microsoft Bookings business in a tenant. This is the first step in setting up a Bookings business where you must specify the business display name. You can include other information such as business address, web site address, and scheduling policy, or set that information later by updating the bookingBusiness. + * Create new navigation property to bookingBusinesses for solutions * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new Microsoft Bookings business in a tenant. This is the first step in setting up a Bookings business where you must specify the business display name. You can include other information such as business address, web site address, and scheduling policy, or set that information later by updating the bookingBusiness. + * Create new navigation property to bookingBusinesses for solutions * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public BookingBusinessesRequestBuilder withUrl(@jakarta.annotation.Nonnull final return new BookingBusinessesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a collection of bookingBusiness objects that has been created for the tenant. This operation returns only the id and displayName of each Microsoft Bookings business in the collection. For performance considerations, it does not return other properties. You can get the other properties of a Bookings business by specifying its id in a GET operation. + * Get bookingBusinesses from solutions */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/BookingBusinessItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/BookingBusinessItemRequestBuilder.java index f4bb9e23ae2..97c3f8629bc 100644 --- a/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/BookingBusinessItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/BookingBusinessItemRequestBuilder.java @@ -118,18 +118,16 @@ public BookingBusinessItemRequestBuilder(@jakarta.annotation.Nonnull final Strin super(requestAdapter, "{+baseurl}/solutions/bookingBusinesses/{bookingBusiness%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a bookingBusiness object. + * Delete navigation property bookingBusinesses for solutions * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a bookingBusiness object. + * Delete navigation property bookingBusinesses for solutions * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -138,21 +136,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the properties and relationships of a bookingBusiness object. + * Get bookingBusinesses from solutions * @return a {@link BookingBusiness} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingBusiness get() { return get(null); } /** - * Get the properties and relationships of a bookingBusiness object. + * Get bookingBusinesses from solutions * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BookingBusiness} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingBusiness get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -162,23 +158,21 @@ public BookingBusiness get(@jakarta.annotation.Nullable final java.util.function return this.requestAdapter.send(requestInfo, errorMapping, BookingBusiness::createFromDiscriminatorValue); } /** - * Update the properties of a bookingBusiness object. + * Update the navigation property bookingBusinesses in solutions * @param body The request body * @return a {@link BookingBusiness} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingBusiness patch(@jakarta.annotation.Nonnull final BookingBusiness body) { return patch(body, null); } /** - * Update the properties of a bookingBusiness object. + * Update the navigation property bookingBusinesses in solutions * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BookingBusiness} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingBusiness patch(@jakarta.annotation.Nonnull final BookingBusiness body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -189,7 +183,7 @@ public BookingBusiness patch(@jakarta.annotation.Nonnull final BookingBusiness b return this.requestAdapter.send(requestInfo, errorMapping, BookingBusiness::createFromDiscriminatorValue); } /** - * Delete a bookingBusiness object. + * Delete navigation property bookingBusinesses for solutions * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -197,7 +191,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a bookingBusiness object. + * Delete navigation property bookingBusinesses for solutions * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -209,7 +203,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the properties and relationships of a bookingBusiness object. + * Get bookingBusinesses from solutions * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -217,7 +211,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the properties and relationships of a bookingBusiness object. + * Get bookingBusinesses from solutions * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -229,7 +223,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a bookingBusiness object. + * Update the navigation property bookingBusinesses in solutions * @param body The request body * @return a {@link RequestInformation} */ @@ -238,7 +232,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a bookingBusiness object. + * Update the navigation property bookingBusinesses in solutions * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -269,7 +263,7 @@ public BookingBusinessItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fin public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the properties and relationships of a bookingBusiness object. + * Get bookingBusinesses from solutions */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/appointments/AppointmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/appointments/AppointmentsRequestBuilder.java index 9a0510d2bb9..73fc7002af8 100644 --- a/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/appointments/AppointmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/appointments/AppointmentsRequestBuilder.java @@ -60,21 +60,19 @@ public AppointmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/solutions/bookingBusinesses/{bookingBusiness%2Did}/appointments{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of bookingAppointment objects for the specified bookingBusiness. + * All the appointments of this business. Read-only. Nullable. * @return a {@link BookingAppointmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingAppointmentCollectionResponse get() { return get(null); } /** - * Get a list of bookingAppointment objects for the specified bookingBusiness. + * All the appointments of this business. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BookingAppointmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingAppointmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public BookingAppointmentCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, BookingAppointmentCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new bookingAppointment for the specified bookingBusiness. + * Create new navigation property to appointments for solutions * @param body The request body * @return a {@link BookingAppointment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingAppointment post(@jakarta.annotation.Nonnull final BookingAppointment body) { return post(body, null); } /** - * Create a new bookingAppointment for the specified bookingBusiness. + * Create new navigation property to appointments for solutions * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BookingAppointment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingAppointment post(@jakarta.annotation.Nonnull final BookingAppointment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public BookingAppointment post(@jakarta.annotation.Nonnull final BookingAppointm return this.requestAdapter.send(requestInfo, errorMapping, BookingAppointment::createFromDiscriminatorValue); } /** - * Get a list of bookingAppointment objects for the specified bookingBusiness. + * All the appointments of this business. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of bookingAppointment objects for the specified bookingBusiness. + * All the appointments of this business. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new bookingAppointment for the specified bookingBusiness. + * Create new navigation property to appointments for solutions * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new bookingAppointment for the specified bookingBusiness. + * Create new navigation property to appointments for solutions * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public AppointmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri return new AppointmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of bookingAppointment objects for the specified bookingBusiness. + * All the appointments of this business. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/appointments/item/BookingAppointmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/appointments/item/BookingAppointmentItemRequestBuilder.java index d8a7ab63918..e2698f8e402 100644 --- a/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/appointments/item/BookingAppointmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/appointments/item/BookingAppointmentItemRequestBuilder.java @@ -46,18 +46,16 @@ public BookingAppointmentItemRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/solutions/bookingBusinesses/{bookingBusiness%2Did}/appointments/{bookingAppointment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a bookingAppointment in the specified bookingBusiness. + * Delete navigation property appointments for solutions * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a bookingAppointment in the specified bookingBusiness. + * Delete navigation property appointments for solutions * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the properties and relationships of a bookingAppointment object in the specified bookingBusiness. The startDateTime and endDateTime properties are always returned in UTC. + * All the appointments of this business. Read-only. Nullable. * @return a {@link BookingAppointment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingAppointment get() { return get(null); } /** - * Get the properties and relationships of a bookingAppointment object in the specified bookingBusiness. The startDateTime and endDateTime properties are always returned in UTC. + * All the appointments of this business. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BookingAppointment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingAppointment get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public BookingAppointment get(@jakarta.annotation.Nullable final java.util.funct return this.requestAdapter.send(requestInfo, errorMapping, BookingAppointment::createFromDiscriminatorValue); } /** - * Update the properties of a bookingAppointment object in the specified bookingBusiness. + * Update the navigation property appointments in solutions * @param body The request body * @return a {@link BookingAppointment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingAppointment patch(@jakarta.annotation.Nonnull final BookingAppointment body) { return patch(body, null); } /** - * Update the properties of a bookingAppointment object in the specified bookingBusiness. + * Update the navigation property appointments in solutions * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BookingAppointment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingAppointment patch(@jakarta.annotation.Nonnull final BookingAppointment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public BookingAppointment patch(@jakarta.annotation.Nonnull final BookingAppoint return this.requestAdapter.send(requestInfo, errorMapping, BookingAppointment::createFromDiscriminatorValue); } /** - * Delete a bookingAppointment in the specified bookingBusiness. + * Delete navigation property appointments for solutions * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a bookingAppointment in the specified bookingBusiness. + * Delete navigation property appointments for solutions * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the properties and relationships of a bookingAppointment object in the specified bookingBusiness. The startDateTime and endDateTime properties are always returned in UTC. + * All the appointments of this business. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the properties and relationships of a bookingAppointment object in the specified bookingBusiness. The startDateTime and endDateTime properties are always returned in UTC. + * All the appointments of this business. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a bookingAppointment object in the specified bookingBusiness. + * Update the navigation property appointments in solutions * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a bookingAppointment object in the specified bookingBusiness. + * Update the navigation property appointments in solutions * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public BookingAppointmentItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the properties and relationships of a bookingAppointment object in the specified bookingBusiness. The startDateTime and endDateTime properties are always returned in UTC. + * All the appointments of this business. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/calendarview/CalendarViewRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/calendarview/CalendarViewRequestBuilder.java index ad41d1b0f8a..ed60e260286 100644 --- a/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/calendarview/CalendarViewRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/calendarview/CalendarViewRequestBuilder.java @@ -63,7 +63,6 @@ public CalendarViewRequestBuilder(@jakarta.annotation.Nonnull final String rawUr * The set of appointments of this business in a specified date range. Read-only. Nullable. * @return a {@link BookingAppointmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingAppointmentCollectionResponse get() { @@ -74,7 +73,6 @@ public BookingAppointmentCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BookingAppointmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingAppointmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/customers/CustomersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/customers/CustomersRequestBuilder.java index 398403083ae..30004638635 100644 --- a/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/customers/CustomersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/customers/CustomersRequestBuilder.java @@ -60,21 +60,19 @@ public CustomersRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/solutions/bookingBusinesses/{bookingBusiness%2Did}/customers{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of bookingCustomer objects of a business. + * All the customers of this business. Read-only. Nullable. * @return a {@link BookingCustomerBaseCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingCustomerBaseCollectionResponse get() { return get(null); } /** - * Get a list of bookingCustomer objects of a business. + * All the customers of this business. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BookingCustomerBaseCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingCustomerBaseCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public BookingCustomerBaseCollectionResponse get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, BookingCustomerBaseCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new bookingCustomer object. + * Create new navigation property to customers for solutions * @param body The request body * @return a {@link BookingCustomerBase} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingCustomerBase post(@jakarta.annotation.Nonnull final BookingCustomerBase body) { return post(body, null); } /** - * Create a new bookingCustomer object. + * Create new navigation property to customers for solutions * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BookingCustomerBase} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingCustomerBase post(@jakarta.annotation.Nonnull final BookingCustomerBase body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public BookingCustomerBase post(@jakarta.annotation.Nonnull final BookingCustome return this.requestAdapter.send(requestInfo, errorMapping, BookingCustomerBase::createFromDiscriminatorValue); } /** - * Get a list of bookingCustomer objects of a business. + * All the customers of this business. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of bookingCustomer objects of a business. + * All the customers of this business. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new bookingCustomer object. + * Create new navigation property to customers for solutions * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new bookingCustomer object. + * Create new navigation property to customers for solutions * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public CustomersRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new CustomersRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of bookingCustomer objects of a business. + * All the customers of this business. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/customers/item/BookingCustomerBaseItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/customers/item/BookingCustomerBaseItemRequestBuilder.java index 23dc93f5a6e..382eab97289 100644 --- a/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/customers/item/BookingCustomerBaseItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/customers/item/BookingCustomerBaseItemRequestBuilder.java @@ -37,18 +37,16 @@ public BookingCustomerBaseItemRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/solutions/bookingBusinesses/{bookingBusiness%2Did}/customers/{bookingCustomerBase%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete the specified bookingCustomer object. + * Delete navigation property customers for solutions * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete the specified bookingCustomer object. + * Delete navigation property customers for solutions * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the properties and relationships of a bookingCustomer object. + * All the customers of this business. Read-only. Nullable. * @return a {@link BookingCustomerBase} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingCustomerBase get() { return get(null); } /** - * Get the properties and relationships of a bookingCustomer object. + * All the customers of this business. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BookingCustomerBase} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingCustomerBase get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public BookingCustomerBase get(@jakarta.annotation.Nullable final java.util.func return this.requestAdapter.send(requestInfo, errorMapping, BookingCustomerBase::createFromDiscriminatorValue); } /** - * Update the properties of a bookingCustomer object. + * Update the navigation property customers in solutions * @param body The request body * @return a {@link BookingCustomerBase} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingCustomerBase patch(@jakarta.annotation.Nonnull final BookingCustomerBase body) { return patch(body, null); } /** - * Update the properties of a bookingCustomer object. + * Update the navigation property customers in solutions * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BookingCustomerBase} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingCustomerBase patch(@jakarta.annotation.Nonnull final BookingCustomerBase body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public BookingCustomerBase patch(@jakarta.annotation.Nonnull final BookingCustom return this.requestAdapter.send(requestInfo, errorMapping, BookingCustomerBase::createFromDiscriminatorValue); } /** - * Delete the specified bookingCustomer object. + * Delete navigation property customers for solutions * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete the specified bookingCustomer object. + * Delete navigation property customers for solutions * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the properties and relationships of a bookingCustomer object. + * All the customers of this business. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the properties and relationships of a bookingCustomer object. + * All the customers of this business. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a bookingCustomer object. + * Update the navigation property customers in solutions * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a bookingCustomer object. + * Update the navigation property customers in solutions * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public BookingCustomerBaseItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the properties and relationships of a bookingCustomer object. + * All the customers of this business. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/customquestions/CustomQuestionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/customquestions/CustomQuestionsRequestBuilder.java index 2dea287101c..0e2bc1aed50 100644 --- a/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/customquestions/CustomQuestionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/customquestions/CustomQuestionsRequestBuilder.java @@ -60,21 +60,19 @@ public CustomQuestionsRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/solutions/bookingBusinesses/{bookingBusiness%2Did}/customQuestions{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the bookingCustomQuestion resources associated with a bookingBusiness. + * All the custom questions of this business. Read-only. Nullable. * @return a {@link BookingCustomQuestionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingCustomQuestionCollectionResponse get() { return get(null); } /** - * Get the bookingCustomQuestion resources associated with a bookingBusiness. + * All the custom questions of this business. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BookingCustomQuestionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingCustomQuestionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public BookingCustomQuestionCollectionResponse get(@jakarta.annotation.Nullable return this.requestAdapter.send(requestInfo, errorMapping, BookingCustomQuestionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new bookingCustomQuestion object. + * Create new navigation property to customQuestions for solutions * @param body The request body * @return a {@link BookingCustomQuestion} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingCustomQuestion post(@jakarta.annotation.Nonnull final BookingCustomQuestion body) { return post(body, null); } /** - * Create a new bookingCustomQuestion object. + * Create new navigation property to customQuestions for solutions * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BookingCustomQuestion} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingCustomQuestion post(@jakarta.annotation.Nonnull final BookingCustomQuestion body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public BookingCustomQuestion post(@jakarta.annotation.Nonnull final BookingCusto return this.requestAdapter.send(requestInfo, errorMapping, BookingCustomQuestion::createFromDiscriminatorValue); } /** - * Get the bookingCustomQuestion resources associated with a bookingBusiness. + * All the custom questions of this business. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the bookingCustomQuestion resources associated with a bookingBusiness. + * All the custom questions of this business. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new bookingCustomQuestion object. + * Create new navigation property to customQuestions for solutions * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new bookingCustomQuestion object. + * Create new navigation property to customQuestions for solutions * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public CustomQuestionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final S return new CustomQuestionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the bookingCustomQuestion resources associated with a bookingBusiness. + * All the custom questions of this business. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/customquestions/item/BookingCustomQuestionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/customquestions/item/BookingCustomQuestionItemRequestBuilder.java index 1876776e947..879b46fd327 100644 --- a/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/customquestions/item/BookingCustomQuestionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/customquestions/item/BookingCustomQuestionItemRequestBuilder.java @@ -37,18 +37,16 @@ public BookingCustomQuestionItemRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/solutions/bookingBusinesses/{bookingBusiness%2Did}/customQuestions/{bookingCustomQuestion%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a bookingCustomQuestion object. + * Delete navigation property customQuestions for solutions * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a bookingCustomQuestion object. + * Delete navigation property customQuestions for solutions * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a bookingCustomQuestion object. + * All the custom questions of this business. Read-only. Nullable. * @return a {@link BookingCustomQuestion} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingCustomQuestion get() { return get(null); } /** - * Read the properties and relationships of a bookingCustomQuestion object. + * All the custom questions of this business. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BookingCustomQuestion} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingCustomQuestion get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public BookingCustomQuestion get(@jakarta.annotation.Nullable final java.util.fu return this.requestAdapter.send(requestInfo, errorMapping, BookingCustomQuestion::createFromDiscriminatorValue); } /** - * Update the properties of a bookingCustomQuestion object. + * Update the navigation property customQuestions in solutions * @param body The request body * @return a {@link BookingCustomQuestion} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingCustomQuestion patch(@jakarta.annotation.Nonnull final BookingCustomQuestion body) { return patch(body, null); } /** - * Update the properties of a bookingCustomQuestion object. + * Update the navigation property customQuestions in solutions * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BookingCustomQuestion} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingCustomQuestion patch(@jakarta.annotation.Nonnull final BookingCustomQuestion body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public BookingCustomQuestion patch(@jakarta.annotation.Nonnull final BookingCust return this.requestAdapter.send(requestInfo, errorMapping, BookingCustomQuestion::createFromDiscriminatorValue); } /** - * Delete a bookingCustomQuestion object. + * Delete navigation property customQuestions for solutions * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a bookingCustomQuestion object. + * Delete navigation property customQuestions for solutions * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a bookingCustomQuestion object. + * All the custom questions of this business. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a bookingCustomQuestion object. + * All the custom questions of this business. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a bookingCustomQuestion object. + * Update the navigation property customQuestions in solutions * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a bookingCustomQuestion object. + * Update the navigation property customQuestions in solutions * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public BookingCustomQuestionItemRequestBuilder withUrl(@jakarta.annotation.Nonnu public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a bookingCustomQuestion object. + * All the custom questions of this business. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/services/ServicesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/services/ServicesRequestBuilder.java index 273fbe7bb2a..0d0249df82f 100644 --- a/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/services/ServicesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/services/ServicesRequestBuilder.java @@ -60,21 +60,19 @@ public ServicesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/solutions/bookingBusinesses/{bookingBusiness%2Did}/services{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of bookingService objects in the specified bookingBusiness. + * All the services offered by this business. Read-only. Nullable. * @return a {@link BookingServiceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingServiceCollectionResponse get() { return get(null); } /** - * Get a list of bookingService objects in the specified bookingBusiness. + * All the services offered by this business. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BookingServiceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingServiceCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public BookingServiceCollectionResponse get(@jakarta.annotation.Nullable final j return this.requestAdapter.send(requestInfo, errorMapping, BookingServiceCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new bookingService for the specified bookingBusiness. + * Create new navigation property to services for solutions * @param body The request body * @return a {@link BookingService} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingService post(@jakarta.annotation.Nonnull final BookingService body) { return post(body, null); } /** - * Create a new bookingService for the specified bookingBusiness. + * Create new navigation property to services for solutions * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BookingService} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingService post(@jakarta.annotation.Nonnull final BookingService body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public BookingService post(@jakarta.annotation.Nonnull final BookingService body return this.requestAdapter.send(requestInfo, errorMapping, BookingService::createFromDiscriminatorValue); } /** - * Get a list of bookingService objects in the specified bookingBusiness. + * All the services offered by this business. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of bookingService objects in the specified bookingBusiness. + * All the services offered by this business. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new bookingService for the specified bookingBusiness. + * Create new navigation property to services for solutions * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new bookingService for the specified bookingBusiness. + * Create new navigation property to services for solutions * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ServicesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new ServicesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of bookingService objects in the specified bookingBusiness. + * All the services offered by this business. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/services/item/BookingServiceItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/services/item/BookingServiceItemRequestBuilder.java index 4110e586cec..5599ff592a3 100644 --- a/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/services/item/BookingServiceItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/services/item/BookingServiceItemRequestBuilder.java @@ -37,18 +37,16 @@ public BookingServiceItemRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/solutions/bookingBusinesses/{bookingBusiness%2Did}/services/{bookingService%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a bookingService object in the specified bookingBusiness. + * Delete navigation property services for solutions * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a bookingService object in the specified bookingBusiness. + * Delete navigation property services for solutions * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the properties and relationships of a bookingService object in the specified bookingBusiness. + * All the services offered by this business. Read-only. Nullable. * @return a {@link BookingService} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingService get() { return get(null); } /** - * Get the properties and relationships of a bookingService object in the specified bookingBusiness. + * All the services offered by this business. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BookingService} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingService get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public BookingService get(@jakarta.annotation.Nullable final java.util.function. return this.requestAdapter.send(requestInfo, errorMapping, BookingService::createFromDiscriminatorValue); } /** - * Update the properties of a bookingService object in the specified bookingBusiness. The following are some examples you can customize for a service:- Price- Typical length of an appointment- Reminders- Any time buffer to set up before or finish up after the service- Scheduling policy parameters, such as minimum notice to book or cancel, and whether customers can select specific staff members for an appointment. + * Update the navigation property services in solutions * @param body The request body * @return a {@link BookingService} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingService patch(@jakarta.annotation.Nonnull final BookingService body) { return patch(body, null); } /** - * Update the properties of a bookingService object in the specified bookingBusiness. The following are some examples you can customize for a service:- Price- Typical length of an appointment- Reminders- Any time buffer to set up before or finish up after the service- Scheduling policy parameters, such as minimum notice to book or cancel, and whether customers can select specific staff members for an appointment. + * Update the navigation property services in solutions * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BookingService} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingService patch(@jakarta.annotation.Nonnull final BookingService body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public BookingService patch(@jakarta.annotation.Nonnull final BookingService bod return this.requestAdapter.send(requestInfo, errorMapping, BookingService::createFromDiscriminatorValue); } /** - * Delete a bookingService object in the specified bookingBusiness. + * Delete navigation property services for solutions * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a bookingService object in the specified bookingBusiness. + * Delete navigation property services for solutions * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the properties and relationships of a bookingService object in the specified bookingBusiness. + * All the services offered by this business. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the properties and relationships of a bookingService object in the specified bookingBusiness. + * All the services offered by this business. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a bookingService object in the specified bookingBusiness. The following are some examples you can customize for a service:- Price- Typical length of an appointment- Reminders- Any time buffer to set up before or finish up after the service- Scheduling policy parameters, such as minimum notice to book or cancel, and whether customers can select specific staff members for an appointment. + * Update the navigation property services in solutions * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a bookingService object in the specified bookingBusiness. The following are some examples you can customize for a service:- Price- Typical length of an appointment- Reminders- Any time buffer to set up before or finish up after the service- Scheduling policy parameters, such as minimum notice to book or cancel, and whether customers can select specific staff members for an appointment. + * Update the navigation property services in solutions * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public BookingServiceItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fina public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the properties and relationships of a bookingService object in the specified bookingBusiness. + * All the services offered by this business. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/staffmembers/StaffMembersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/staffmembers/StaffMembersRequestBuilder.java index 1fce69a19a7..2e047dc3fa7 100644 --- a/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/staffmembers/StaffMembersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/staffmembers/StaffMembersRequestBuilder.java @@ -60,21 +60,19 @@ public StaffMembersRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/solutions/bookingBusinesses/{bookingBusiness%2Did}/staffMembers{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of bookingStaffMember objects in the specified bookingBusiness. + * All the staff members that provide services in this business. Read-only. Nullable. * @return a {@link BookingStaffMemberBaseCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingStaffMemberBaseCollectionResponse get() { return get(null); } /** - * Get a list of bookingStaffMember objects in the specified bookingBusiness. + * All the staff members that provide services in this business. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BookingStaffMemberBaseCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingStaffMemberBaseCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public BookingStaffMemberBaseCollectionResponse get(@jakarta.annotation.Nullable return this.requestAdapter.send(requestInfo, errorMapping, BookingStaffMemberBaseCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new bookingStaffMember in the specified bookingBusiness. + * Create new navigation property to staffMembers for solutions * @param body The request body * @return a {@link BookingStaffMemberBase} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingStaffMemberBase post(@jakarta.annotation.Nonnull final BookingStaffMemberBase body) { return post(body, null); } /** - * Create a new bookingStaffMember in the specified bookingBusiness. + * Create new navigation property to staffMembers for solutions * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BookingStaffMemberBase} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingStaffMemberBase post(@jakarta.annotation.Nonnull final BookingStaffMemberBase body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public BookingStaffMemberBase post(@jakarta.annotation.Nonnull final BookingStaf return this.requestAdapter.send(requestInfo, errorMapping, BookingStaffMemberBase::createFromDiscriminatorValue); } /** - * Get a list of bookingStaffMember objects in the specified bookingBusiness. + * All the staff members that provide services in this business. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of bookingStaffMember objects in the specified bookingBusiness. + * All the staff members that provide services in this business. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new bookingStaffMember in the specified bookingBusiness. + * Create new navigation property to staffMembers for solutions * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new bookingStaffMember in the specified bookingBusiness. + * Create new navigation property to staffMembers for solutions * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public StaffMembersRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri return new StaffMembersRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of bookingStaffMember objects in the specified bookingBusiness. + * All the staff members that provide services in this business. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/staffmembers/item/BookingStaffMemberBaseItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/staffmembers/item/BookingStaffMemberBaseItemRequestBuilder.java index f56606734ec..30965a5276f 100644 --- a/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/staffmembers/item/BookingStaffMemberBaseItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/solutions/bookingbusinesses/item/staffmembers/item/BookingStaffMemberBaseItemRequestBuilder.java @@ -37,18 +37,16 @@ public BookingStaffMemberBaseItemRequestBuilder(@jakarta.annotation.Nonnull fina super(requestAdapter, "{+baseurl}/solutions/bookingBusinesses/{bookingBusiness%2Did}/staffMembers/{bookingStaffMemberBase%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a bookingStaffMember in the specified bookingBusiness. + * Delete navigation property staffMembers for solutions * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a bookingStaffMember in the specified bookingBusiness. + * Delete navigation property staffMembers for solutions * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the properties and relationships of a bookingStaffMember in the specified bookingBusiness. + * All the staff members that provide services in this business. Read-only. Nullable. * @return a {@link BookingStaffMemberBase} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingStaffMemberBase get() { return get(null); } /** - * Get the properties and relationships of a bookingStaffMember in the specified bookingBusiness. + * All the staff members that provide services in this business. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BookingStaffMemberBase} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingStaffMemberBase get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public BookingStaffMemberBase get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, BookingStaffMemberBase::createFromDiscriminatorValue); } /** - * Update the properties of a bookingStaffMember in the specified bookingBusiness. + * Update the navigation property staffMembers in solutions * @param body The request body * @return a {@link BookingStaffMemberBase} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingStaffMemberBase patch(@jakarta.annotation.Nonnull final BookingStaffMemberBase body) { return patch(body, null); } /** - * Update the properties of a bookingStaffMember in the specified bookingBusiness. + * Update the navigation property staffMembers in solutions * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BookingStaffMemberBase} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingStaffMemberBase patch(@jakarta.annotation.Nonnull final BookingStaffMemberBase body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public BookingStaffMemberBase patch(@jakarta.annotation.Nonnull final BookingSta return this.requestAdapter.send(requestInfo, errorMapping, BookingStaffMemberBase::createFromDiscriminatorValue); } /** - * Delete a bookingStaffMember in the specified bookingBusiness. + * Delete navigation property staffMembers for solutions * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a bookingStaffMember in the specified bookingBusiness. + * Delete navigation property staffMembers for solutions * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the properties and relationships of a bookingStaffMember in the specified bookingBusiness. + * All the staff members that provide services in this business. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the properties and relationships of a bookingStaffMember in the specified bookingBusiness. + * All the staff members that provide services in this business. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a bookingStaffMember in the specified bookingBusiness. + * Update the navigation property staffMembers in solutions * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a bookingStaffMember in the specified bookingBusiness. + * Update the navigation property staffMembers in solutions * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public BookingStaffMemberBaseItemRequestBuilder withUrl(@jakarta.annotation.Nonn public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the properties and relationships of a bookingStaffMember in the specified bookingBusiness. + * All the staff members that provide services in this business. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/solutions/bookingcurrencies/BookingCurrenciesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/solutions/bookingcurrencies/BookingCurrenciesRequestBuilder.java index 662cd5dcb69..503531fd927 100644 --- a/src/main/java/com/microsoft/graph/generated/solutions/bookingcurrencies/BookingCurrenciesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/solutions/bookingcurrencies/BookingCurrenciesRequestBuilder.java @@ -60,21 +60,19 @@ public BookingCurrenciesRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/solutions/bookingCurrencies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of bookingCurrency objects available to a Microsoft Bookings business. + * Get bookingCurrencies from solutions * @return a {@link BookingCurrencyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingCurrencyCollectionResponse get() { return get(null); } /** - * Get a list of bookingCurrency objects available to a Microsoft Bookings business. + * Get bookingCurrencies from solutions * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BookingCurrencyCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingCurrencyCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public BookingCurrency post(@jakarta.annotation.Nonnull final BookingCurrency bo return this.requestAdapter.send(requestInfo, errorMapping, BookingCurrency::createFromDiscriminatorValue); } /** - * Get a list of bookingCurrency objects available to a Microsoft Bookings business. + * Get bookingCurrencies from solutions * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of bookingCurrency objects available to a Microsoft Bookings business. + * Get bookingCurrencies from solutions * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public BookingCurrenciesRequestBuilder withUrl(@jakarta.annotation.Nonnull final return new BookingCurrenciesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of bookingCurrency objects available to a Microsoft Bookings business. + * Get bookingCurrencies from solutions */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/solutions/bookingcurrencies/item/BookingCurrencyItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/solutions/bookingcurrencies/item/BookingCurrencyItemRequestBuilder.java index 86144a09586..705b17bfa95 100644 --- a/src/main/java/com/microsoft/graph/generated/solutions/bookingcurrencies/item/BookingCurrencyItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/solutions/bookingcurrencies/item/BookingCurrencyItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the properties of a bookingCurrency object that is available to a Microsoft Bookings business. Use the id property, which is the currency code, to specify the currency. + * Get bookingCurrencies from solutions * @return a {@link BookingCurrency} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingCurrency get() { return get(null); } /** - * Get the properties of a bookingCurrency object that is available to a Microsoft Bookings business. Use the id property, which is the currency code, to specify the currency. + * Get bookingCurrencies from solutions * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link BookingCurrency} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public BookingCurrency get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the properties of a bookingCurrency object that is available to a Microsoft Bookings business. Use the id property, which is the currency code, to specify the currency. + * Get bookingCurrencies from solutions * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the properties of a bookingCurrency object that is available to a Microsoft Bookings business. Use the id property, which is the currency code, to specify the currency. + * Get bookingCurrencies from solutions * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public BookingCurrencyItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fin public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the properties of a bookingCurrency object that is available to a Microsoft Bookings business. Use the id property, which is the currency code, to specify the currency. + * Get bookingCurrencies from solutions */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/solutions/virtualevents/events/item/sessions/item/attendancereports/item/attendancerecords/AttendanceRecordsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/solutions/virtualevents/events/item/sessions/item/attendancereports/item/attendancerecords/AttendanceRecordsRequestBuilder.java index c8ed759a03a..b0ad3234043 100644 --- a/src/main/java/com/microsoft/graph/generated/solutions/virtualevents/events/item/sessions/item/attendancereports/item/attendancerecords/AttendanceRecordsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/solutions/virtualevents/events/item/sessions/item/attendancereports/item/attendancerecords/AttendanceRecordsRequestBuilder.java @@ -60,21 +60,19 @@ public AttendanceRecordsRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/solutions/virtualEvents/events/{virtualEvent%2Did}/sessions/{virtualEventSession%2Did}/attendanceReports/{meetingAttendanceReport%2Did}/attendanceRecords{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of attendanceRecord objects and their properties. + * List of attendance records of an attendance report. Read-only. * @return a {@link AttendanceRecordCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttendanceRecordCollectionResponse get() { return get(null); } /** - * Get a list of attendanceRecord objects and their properties. + * List of attendance records of an attendance report. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttendanceRecordCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttendanceRecordCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public AttendanceRecord post(@jakarta.annotation.Nonnull final AttendanceRecord return this.requestAdapter.send(requestInfo, errorMapping, AttendanceRecord::createFromDiscriminatorValue); } /** - * Get a list of attendanceRecord objects and their properties. + * List of attendance records of an attendance report. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of attendanceRecord objects and their properties. + * List of attendance records of an attendance report. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public AttendanceRecordsRequestBuilder withUrl(@jakarta.annotation.Nonnull final return new AttendanceRecordsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of attendanceRecord objects and their properties. + * List of attendance records of an attendance report. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/solutions/virtualevents/webinars/WebinarsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/solutions/virtualevents/webinars/WebinarsRequestBuilder.java index 76e85e947ff..ca941f8ed26 100644 --- a/src/main/java/com/microsoft/graph/generated/solutions/virtualevents/webinars/WebinarsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/solutions/virtualevents/webinars/WebinarsRequestBuilder.java @@ -62,21 +62,19 @@ public WebinarsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/solutions/virtualEvents/webinars{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of all virtualEventWebinar objects created in the tenant. + * Get webinars from solutions * @return a {@link VirtualEventWebinarCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public VirtualEventWebinarCollectionResponse get() { return get(null); } /** - * Get the list of all virtualEventWebinar objects created in the tenant. + * Get webinars from solutions * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link VirtualEventWebinarCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public VirtualEventWebinarCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public VirtualEventWebinar post(@jakarta.annotation.Nonnull final VirtualEventWe return this.requestAdapter.send(requestInfo, errorMapping, VirtualEventWebinar::createFromDiscriminatorValue); } /** - * Get the list of all virtualEventWebinar objects created in the tenant. + * Get webinars from solutions * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of all virtualEventWebinar objects created in the tenant. + * Get webinars from solutions * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -187,7 +185,7 @@ public WebinarsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new WebinarsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of all virtualEventWebinar objects created in the tenant. + * Get webinars from solutions */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/solutions/virtualevents/webinars/getbyuseridandrolewithuseridwithrole/GetByUserIdAndRoleWithUserIdWithRoleRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/solutions/virtualevents/webinars/getbyuseridandrolewithuseridwithrole/GetByUserIdAndRoleWithUserIdWithRoleRequestBuilder.java index 65f8756eeb1..7c8538e1327 100644 --- a/src/main/java/com/microsoft/graph/generated/solutions/virtualevents/webinars/getbyuseridandrolewithuseridwithrole/GetByUserIdAndRoleWithUserIdWithRoleRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/solutions/virtualevents/webinars/getbyuseridandrolewithuseridwithrole/GetByUserIdAndRoleWithUserIdWithRoleRequestBuilder.java @@ -40,19 +40,21 @@ public GetByUserIdAndRoleWithUserIdWithRoleRequestBuilder(@jakarta.annotation.No super(requestAdapter, "{+baseurl}/solutions/virtualEvents/webinars/getByUserIdAndRole(userId='{userId}',role='{role}'){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function getByUserIdAndRole + * Get a virtualEventWebinar collection where the specified user is either the organizer or a coorganizer. * @return a {@link GetByUserIdAndRoleWithUserIdWithRoleGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetByUserIdAndRoleWithUserIdWithRoleGetResponse get() { return get(null); } /** - * Invoke function getByUserIdAndRole + * Get a virtualEventWebinar collection where the specified user is either the organizer or a coorganizer. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GetByUserIdAndRoleWithUserIdWithRoleGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetByUserIdAndRoleWithUserIdWithRoleGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -62,7 +64,7 @@ public GetByUserIdAndRoleWithUserIdWithRoleGetResponse get(@jakarta.annotation.N return this.requestAdapter.send(requestInfo, errorMapping, GetByUserIdAndRoleWithUserIdWithRoleGetResponse::createFromDiscriminatorValue); } /** - * Invoke function getByUserIdAndRole + * Get a virtualEventWebinar collection where the specified user is either the organizer or a coorganizer. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -70,7 +72,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getByUserIdAndRole + * Get a virtualEventWebinar collection where the specified user is either the organizer or a coorganizer. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -92,7 +94,7 @@ public GetByUserIdAndRoleWithUserIdWithRoleRequestBuilder withUrl(@jakarta.annot return new GetByUserIdAndRoleWithUserIdWithRoleRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function getByUserIdAndRole + * Get a virtualEventWebinar collection where the specified user is either the organizer or a coorganizer. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/solutions/virtualevents/webinars/getbyuserrolewithrole/GetByUserRoleWithRoleRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/solutions/virtualevents/webinars/getbyuserrolewithrole/GetByUserRoleWithRoleRequestBuilder.java index 9b45ea48679..b3b201875f1 100644 --- a/src/main/java/com/microsoft/graph/generated/solutions/virtualevents/webinars/getbyuserrolewithrole/GetByUserRoleWithRoleRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/solutions/virtualevents/webinars/getbyuserrolewithrole/GetByUserRoleWithRoleRequestBuilder.java @@ -38,19 +38,21 @@ public GetByUserRoleWithRoleRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/solutions/virtualEvents/webinars/getByUserRole(role='{role}'){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function getByUserRole + * Get a virtualEventWebinar collection where the signed-in user is either the organizer or a coorganizer. * @return a {@link GetByUserRoleWithRoleGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetByUserRoleWithRoleGetResponse get() { return get(null); } /** - * Invoke function getByUserRole + * Get a virtualEventWebinar collection where the signed-in user is either the organizer or a coorganizer. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GetByUserRoleWithRoleGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetByUserRoleWithRoleGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public GetByUserRoleWithRoleGetResponse get(@jakarta.annotation.Nullable final j return this.requestAdapter.send(requestInfo, errorMapping, GetByUserRoleWithRoleGetResponse::createFromDiscriminatorValue); } /** - * Invoke function getByUserRole + * Get a virtualEventWebinar collection where the signed-in user is either the organizer or a coorganizer. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getByUserRole + * Get a virtualEventWebinar collection where the signed-in user is either the organizer or a coorganizer. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -90,7 +92,7 @@ public GetByUserRoleWithRoleRequestBuilder withUrl(@jakarta.annotation.Nonnull f return new GetByUserRoleWithRoleRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function getByUserRole + * Get a virtualEventWebinar collection where the signed-in user is either the organizer or a coorganizer. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/solutions/virtualevents/webinars/item/registrations/RegistrationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/solutions/virtualevents/webinars/item/registrations/RegistrationsRequestBuilder.java index 2a1c621498c..9221a52ce97 100644 --- a/src/main/java/com/microsoft/graph/generated/solutions/virtualevents/webinars/item/registrations/RegistrationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/solutions/virtualevents/webinars/item/registrations/RegistrationsRequestBuilder.java @@ -60,21 +60,19 @@ public RegistrationsRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/solutions/virtualEvents/webinars/{virtualEventWebinar%2Did}/registrations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of all registration records of a webinar. + * Registration records of the webinar. * @return a {@link VirtualEventRegistrationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public VirtualEventRegistrationCollectionResponse get() { return get(null); } /** - * Get a list of all registration records of a webinar. + * Registration records of the webinar. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link VirtualEventRegistrationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public VirtualEventRegistrationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public VirtualEventRegistration post(@jakarta.annotation.Nonnull final VirtualEv return this.requestAdapter.send(requestInfo, errorMapping, VirtualEventRegistration::createFromDiscriminatorValue); } /** - * Get a list of all registration records of a webinar. + * Registration records of the webinar. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of all registration records of a webinar. + * Registration records of the webinar. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public RegistrationsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new RegistrationsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of all registration records of a webinar. + * Registration records of the webinar. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/solutions/virtualevents/webinars/item/registrations/item/VirtualEventRegistrationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/solutions/virtualevents/webinars/item/registrations/item/VirtualEventRegistrationItemRequestBuilder.java index 51bb20b335a..7c2189d9252 100644 --- a/src/main/java/com/microsoft/graph/generated/solutions/virtualevents/webinars/item/registrations/item/VirtualEventRegistrationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/solutions/virtualevents/webinars/item/registrations/item/VirtualEventRegistrationItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the properties and relationships of a virtualEventRegistration object. + * Registration records of the webinar. * @return a {@link VirtualEventRegistration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public VirtualEventRegistration get() { return get(null); } /** - * Get the properties and relationships of a virtualEventRegistration object. + * Registration records of the webinar. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link VirtualEventRegistration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public VirtualEventRegistration get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the properties and relationships of a virtualEventRegistration object. + * Registration records of the webinar. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the properties and relationships of a virtualEventRegistration object. + * Registration records of the webinar. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public VirtualEventRegistrationItemRequestBuilder withUrl(@jakarta.annotation.No public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the properties and relationships of a virtualEventRegistration object. + * Registration records of the webinar. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/solutions/virtualevents/webinars/item/sessions/item/attendancereports/item/attendancerecords/AttendanceRecordsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/solutions/virtualevents/webinars/item/sessions/item/attendancereports/item/attendancerecords/AttendanceRecordsRequestBuilder.java index 2bf4a543277..a3235d6262f 100644 --- a/src/main/java/com/microsoft/graph/generated/solutions/virtualevents/webinars/item/sessions/item/attendancereports/item/attendancerecords/AttendanceRecordsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/solutions/virtualevents/webinars/item/sessions/item/attendancereports/item/attendancerecords/AttendanceRecordsRequestBuilder.java @@ -60,21 +60,19 @@ public AttendanceRecordsRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/solutions/virtualEvents/webinars/{virtualEventWebinar%2Did}/sessions/{virtualEventSession%2Did}/attendanceReports/{meetingAttendanceReport%2Did}/attendanceRecords{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of attendanceRecord objects and their properties. + * List of attendance records of an attendance report. Read-only. * @return a {@link AttendanceRecordCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttendanceRecordCollectionResponse get() { return get(null); } /** - * Get a list of attendanceRecord objects and their properties. + * List of attendance records of an attendance report. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttendanceRecordCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttendanceRecordCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public AttendanceRecord post(@jakarta.annotation.Nonnull final AttendanceRecord return this.requestAdapter.send(requestInfo, errorMapping, AttendanceRecord::createFromDiscriminatorValue); } /** - * Get a list of attendanceRecord objects and their properties. + * List of attendance records of an attendance report. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of attendanceRecord objects and their properties. + * List of attendance records of an attendance report. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public AttendanceRecordsRequestBuilder withUrl(@jakarta.annotation.Nonnull final return new AttendanceRecordsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of attendanceRecord objects and their properties. + * List of attendance records of an attendance report. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/allchannels/AllChannelsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/allchannels/AllChannelsRequestBuilder.java index aa5a1d4b3da..687f8e4b941 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/allchannels/AllChannelsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/allchannels/AllChannelsRequestBuilder.java @@ -59,21 +59,19 @@ public AllChannelsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/teams/{team%2Did}/allChannels{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of channels either in this team or shared with this team (incoming channels). + * List of channels either hosted in or shared with the team (incoming channels). * @return a {@link ChannelCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChannelCollectionResponse get() { return get(null); } /** - * Get the list of channels either in this team or shared with this team (incoming channels). + * List of channels either hosted in or shared with the team (incoming channels). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChannelCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChannelCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public ChannelCollectionResponse get(@jakarta.annotation.Nullable final java.uti return this.requestAdapter.send(requestInfo, errorMapping, ChannelCollectionResponse::createFromDiscriminatorValue); } /** - * Get the list of channels either in this team or shared with this team (incoming channels). + * List of channels either hosted in or shared with the team (incoming channels). * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of channels either in this team or shared with this team (incoming channels). + * List of channels either hosted in or shared with the team (incoming channels). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public AllChannelsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AllChannelsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of channels either in this team or shared with this team (incoming channels). + * List of channels either hosted in or shared with the team (incoming channels). */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/channels/ChannelsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/channels/ChannelsRequestBuilder.java index e8f1973bbcf..4213b7a80a3 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/channels/ChannelsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/channels/ChannelsRequestBuilder.java @@ -69,21 +69,19 @@ public ChannelsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/teams/{team%2Did}/channels{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of channels in this team. + * The collection of channels and messages associated with the team. * @return a {@link ChannelCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChannelCollectionResponse get() { return get(null); } /** - * Retrieve the list of channels in this team. + * The collection of channels and messages associated with the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChannelCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChannelCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public ChannelCollectionResponse get(@jakarta.annotation.Nullable final java.uti return this.requestAdapter.send(requestInfo, errorMapping, ChannelCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new channel in a team, as specified in the request body. When you create a channel, the maximum length of the channel's displayName is 50 characters. This is the name that appears to the user in Microsoft Teams. If you're creating a private channel, you can add a maximum of 200 members. + * Create new navigation property to channels for teams * @param body The request body * @return a {@link Channel} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Channel post(@jakarta.annotation.Nonnull final Channel body) { return post(body, null); } /** - * Create a new channel in a team, as specified in the request body. When you create a channel, the maximum length of the channel's displayName is 50 characters. This is the name that appears to the user in Microsoft Teams. If you're creating a private channel, you can add a maximum of 200 members. + * Create new navigation property to channels for teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Channel} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Channel post(@jakarta.annotation.Nonnull final Channel body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public Channel post(@jakarta.annotation.Nonnull final Channel body, @jakarta.ann return this.requestAdapter.send(requestInfo, errorMapping, Channel::createFromDiscriminatorValue); } /** - * Retrieve the list of channels in this team. + * The collection of channels and messages associated with the team. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of channels in this team. + * The collection of channels and messages associated with the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new channel in a team, as specified in the request body. When you create a channel, the maximum length of the channel's displayName is 50 characters. This is the name that appears to the user in Microsoft Teams. If you're creating a private channel, you can add a maximum of 200 members. + * Create new navigation property to channels for teams * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new channel in a team, as specified in the request body. When you create a channel, the maximum length of the channel's displayName is 50 characters. This is the name that appears to the user in Microsoft Teams. If you're creating a private channel, you can add a maximum of 200 members. + * Create new navigation property to channels for teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public ChannelsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new ChannelsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of channels in this team. + * The collection of channels and messages associated with the team. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/channels/getallmessages/GetAllMessagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/channels/getallmessages/GetAllMessagesRequestBuilder.java index 9d26d40145b..f9b6899a311 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/channels/getallmessages/GetAllMessagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/channels/getallmessages/GetAllMessagesRequestBuilder.java @@ -36,19 +36,21 @@ public GetAllMessagesRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/teams/{team%2Did}/channels/getAllMessages(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top,model*}", rawUrl); } /** - * Invoke function getAllMessages + * Retrieve messages across all channels in a team, including text, audio, and video conversations. To learn more about how to use the Microsoft Teams export APIs to export content, see Export content with the Microsoft Teams export APIs. * @return a {@link GetAllMessagesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetAllMessagesGetResponse get() { return get(null); } /** - * Invoke function getAllMessages + * Retrieve messages across all channels in a team, including text, audio, and video conversations. To learn more about how to use the Microsoft Teams export APIs to export content, see Export content with the Microsoft Teams export APIs. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GetAllMessagesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetAllMessagesGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public GetAllMessagesGetResponse get(@jakarta.annotation.Nullable final java.uti return this.requestAdapter.send(requestInfo, errorMapping, GetAllMessagesGetResponse::createFromDiscriminatorValue); } /** - * Invoke function getAllMessages + * Retrieve messages across all channels in a team, including text, audio, and video conversations. To learn more about how to use the Microsoft Teams export APIs to export content, see Export content with the Microsoft Teams export APIs. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getAllMessages + * Retrieve messages across all channels in a team, including text, audio, and video conversations. To learn more about how to use the Microsoft Teams export APIs to export content, see Export content with the Microsoft Teams export APIs. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public GetAllMessagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new GetAllMessagesRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function getAllMessages + * Retrieve messages across all channels in a team, including text, audio, and video conversations. To learn more about how to use the Microsoft Teams export APIs to export content, see Export content with the Microsoft Teams export APIs. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/ChannelItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/ChannelItemRequestBuilder.java index 24dd0fc3a69..1e0ee1863b3 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/ChannelItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/ChannelItemRequestBuilder.java @@ -118,18 +118,16 @@ public ChannelItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/teams/{team%2Did}/channels/{channel%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete the channel. + * Delete navigation property channels for teams * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete the channel. + * Delete navigation property channels for teams * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -138,21 +136,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve channel information. + * The collection of channels and messages associated with the team. * @return a {@link Channel} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Channel get() { return get(null); } /** - * Retrieve the properties and relationships of a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve channel information. + * The collection of channels and messages associated with the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Channel} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Channel get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -162,23 +158,21 @@ public Channel get(@jakarta.annotation.Nullable final java.util.function.Consume return this.requestAdapter.send(requestInfo, errorMapping, Channel::createFromDiscriminatorValue); } /** - * Update the properties of the specified channel. + * Update the navigation property channels in teams * @param body The request body * @return a {@link Channel} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Channel patch(@jakarta.annotation.Nonnull final Channel body) { return patch(body, null); } /** - * Update the properties of the specified channel. + * Update the navigation property channels in teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Channel} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Channel patch(@jakarta.annotation.Nonnull final Channel body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -189,7 +183,7 @@ public Channel patch(@jakarta.annotation.Nonnull final Channel body, @jakarta.an return this.requestAdapter.send(requestInfo, errorMapping, Channel::createFromDiscriminatorValue); } /** - * Delete the channel. + * Delete navigation property channels for teams * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -197,7 +191,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete the channel. + * Delete navigation property channels for teams * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -209,7 +203,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve channel information. + * The collection of channels and messages associated with the team. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -217,7 +211,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve channel information. + * The collection of channels and messages associated with the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -229,7 +223,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of the specified channel. + * Update the navigation property channels in teams * @param body The request body * @return a {@link RequestInformation} */ @@ -238,7 +232,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of the specified channel. + * Update the navigation property channels in teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -269,7 +263,7 @@ public ChannelItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve channel information. + * The collection of channels and messages associated with the team. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/doesuserhaveaccessuseriduseridtenantidtenantiduserprincipalnameuserprincipalname/DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/doesuserhaveaccessuseriduseridtenantidtenantiduserprincipalnameuserprincipalname/DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameRequestBuilder.java index 58d753c74b3..106dbf3fa4d 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/doesuserhaveaccessuseriduseridtenantidtenantiduserprincipalnameuserprincipalname/DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/doesuserhaveaccessuseriduseridtenantidtenantiduserprincipalnameuserprincipalname/DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameRequestBuilder.java @@ -36,19 +36,21 @@ public DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrinci super(requestAdapter, "{+baseurl}/teams/{team%2Did}/channels/{channel%2Did}/doesUserHaveAccess(userId='@userId',tenantId='@tenantId',userPrincipalName='@userPrincipalName'){?tenantId*,userId*,userPrincipalName*}", rawUrl); } /** - * Invoke function doesUserHaveAccess + * Determine whether a user has access to a shared channel. * @return a {@link DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameGetResponse get() { return get(null); } /** - * Invoke function doesUserHaveAccess + * Determine whether a user has access to a shared channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrinci return this.requestAdapter.send(requestInfo, errorMapping, DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameGetResponse::createFromDiscriminatorValue); } /** - * Invoke function doesUserHaveAccess + * Determine whether a user has access to a shared channel. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function doesUserHaveAccess + * Determine whether a user has access to a shared channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrinci return new DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function doesUserHaveAccess + * Determine whether a user has access to a shared channel. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/filesfolder/FilesFolderRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/filesfolder/FilesFolderRequestBuilder.java index 3eb0bb67f11..3c1b481ecac 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/filesfolder/FilesFolderRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/filesfolder/FilesFolderRequestBuilder.java @@ -46,21 +46,19 @@ public FilesFolderRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/teams/{team%2Did}/channels/{channel%2Did}/filesFolder{?%24expand,%24select}", rawUrl); } /** - * Get the metadata for the location where the files of a channel are stored. + * Metadata for the location where the channel's files are stored. * @return a {@link DriveItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DriveItem get() { return get(null); } /** - * Get the metadata for the location where the files of a channel are stored. + * Metadata for the location where the channel's files are stored. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DriveItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DriveItem get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -70,7 +68,7 @@ public DriveItem get(@jakarta.annotation.Nullable final java.util.function.Consu return this.requestAdapter.send(requestInfo, errorMapping, DriveItem::createFromDiscriminatorValue); } /** - * Get the metadata for the location where the files of a channel are stored. + * Metadata for the location where the channel's files are stored. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -78,7 +76,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the metadata for the location where the files of a channel are stored. + * Metadata for the location where the channel's files are stored. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -100,7 +98,7 @@ public FilesFolderRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new FilesFolderRequestBuilder(rawUrl, requestAdapter); } /** - * Get the metadata for the location where the files of a channel are stored. + * Metadata for the location where the channel's files are stored. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/filesfolder/content/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/filesfolder/content/ContentRequestBuilder.java index 2599503be4e..0fce84cb294 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/filesfolder/content/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/filesfolder/content/ContentRequestBuilder.java @@ -41,7 +41,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * The content stream, if the item represents a file. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -52,7 +51,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/members/MembersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/members/MembersRequestBuilder.java index 03fd4dfbb93..4c0db6cd608 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/members/MembersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/members/MembersRequestBuilder.java @@ -69,21 +69,19 @@ public MembersRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/teams/{team%2Did}/channels/{channel%2Did}/members{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of conversationMembers from a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve the channel member list. + * A collection of membership records associated with the channel. * @return a {@link ConversationMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMemberCollectionResponse get() { return get(null); } /** - * Retrieve a list of conversationMembers from a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve the channel member list. + * A collection of membership records associated with the channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMemberCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public ConversationMemberCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, ConversationMemberCollectionResponse::createFromDiscriminatorValue); } /** - * Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Create new navigation property to members for teams * @param body The request body * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember post(@jakarta.annotation.Nonnull final ConversationMember body) { return post(body, null); } /** - * Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Create new navigation property to members for teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember post(@jakarta.annotation.Nonnull final ConversationMember body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public ConversationMember post(@jakarta.annotation.Nonnull final ConversationMem return this.requestAdapter.send(requestInfo, errorMapping, ConversationMember::createFromDiscriminatorValue); } /** - * Retrieve a list of conversationMembers from a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve the channel member list. + * A collection of membership records associated with the channel. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of conversationMembers from a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve the channel member list. + * A collection of membership records associated with the channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Create new navigation property to members for teams * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Create new navigation property to members for teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public MembersRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new MembersRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of conversationMembers from a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve the channel member list. + * A collection of membership records associated with the channel. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/members/item/ConversationMemberItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/members/item/ConversationMemberItemRequestBuilder.java index 53c0894211d..ac8aab8b4a9 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/members/item/ConversationMemberItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/members/item/ConversationMemberItemRequestBuilder.java @@ -37,18 +37,16 @@ public ConversationMemberItemRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/teams/{team%2Did}/channels/{channel%2Did}/members/{conversationMember%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Delete navigation property members for teams * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Delete navigation property members for teams * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get a conversationMember from a channel. + * A collection of membership records associated with the channel. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember get() { return get(null); } /** - * Get a conversationMember from a channel. + * A collection of membership records associated with the channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public ConversationMember get(@jakarta.annotation.Nullable final java.util.funct return this.requestAdapter.send(requestInfo, errorMapping, ConversationMember::createFromDiscriminatorValue); } /** - * Update the role of a conversationMember in a team or channel. + * Update the navigation property members in teams * @param body The request body * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember patch(@jakarta.annotation.Nonnull final ConversationMember body) { return patch(body, null); } /** - * Update the role of a conversationMember in a team or channel. + * Update the navigation property members in teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember patch(@jakarta.annotation.Nonnull final ConversationMember body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public ConversationMember patch(@jakarta.annotation.Nonnull final ConversationMe return this.requestAdapter.send(requestInfo, errorMapping, ConversationMember::createFromDiscriminatorValue); } /** - * Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Delete navigation property members for teams * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Delete navigation property members for teams * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get a conversationMember from a channel. + * A collection of membership records associated with the channel. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a conversationMember from a channel. + * A collection of membership records associated with the channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the role of a conversationMember in a team or channel. + * Update the navigation property members in teams * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the role of a conversationMember in a team or channel. + * Update the navigation property members in teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public ConversationMemberItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get a conversationMember from a channel. + * A collection of membership records associated with the channel. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/MessagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/MessagesRequestBuilder.java index aaef76f21d0..80c3de7331e 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/MessagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/MessagesRequestBuilder.java @@ -69,21 +69,19 @@ public MessagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/teams/{team%2Did}/channels/{channel%2Did}/messages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of messages (without the replies) in a channel of a team. To get the replies for a message, call the list message replies or the get message reply API. This method supports federation. To list channel messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the channel. A navigation property. Nullable. * @return a {@link ChatMessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageCollectionResponse get() { return get(null); } /** - * Retrieve the list of messages (without the replies) in a channel of a team. To get the replies for a message, call the list message replies or the get message reply API. This method supports federation. To list channel messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the channel. A navigation property. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public ChatMessageCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, ChatMessageCollectionResponse::createFromDiscriminatorValue); } /** - * Send a new chatMessage in the specified channel or a chat. + * Create new navigation property to messages for teams * @param body The request body * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body) { return post(body, null); } /** - * Send a new chatMessage in the specified channel or a chat. + * Create new navigation property to messages for teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body, @jak return this.requestAdapter.send(requestInfo, errorMapping, ChatMessage::createFromDiscriminatorValue); } /** - * Retrieve the list of messages (without the replies) in a channel of a team. To get the replies for a message, call the list message replies or the get message reply API. This method supports federation. To list channel messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the channel. A navigation property. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of messages (without the replies) in a channel of a team. To get the replies for a message, call the list message replies or the get message reply API. This method supports federation. To list channel messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the channel. A navigation property. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Send a new chatMessage in the specified channel or a chat. + * Create new navigation property to messages for teams * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Send a new chatMessage in the specified channel or a chat. + * Create new navigation property to messages for teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public MessagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new MessagesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of messages (without the replies) in a channel of a team. To get the replies for a message, call the list message replies or the get message reply API. This method supports federation. To list channel messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the channel. A navigation property. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/delta/DeltaRequestBuilder.java index d914f72714b..00175b9324c 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/teams/{team%2Did}/channels/{channel%2Did}/messages/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/item/ChatMessageItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/item/ChatMessageItemRequestBuilder.java index e9210328e6d..9a9331e0fe4 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/item/ChatMessageItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/item/ChatMessageItemRequestBuilder.java @@ -109,21 +109,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the channel. A navigation property. Nullable. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage get() { return get(null); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the channel. A navigation property. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,23 +131,21 @@ public ChatMessage get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.send(requestInfo, errorMapping, ChatMessage::createFromDiscriminatorValue); } /** - * Update a chatMessage object. Except for the policyViolation property, all properties of a chatMessage can be updated in delegated permissions scenarios.Only the policyViolation property of a chatMessage can be updated in application permissions scenarios. The update only works for chats where members are Microsoft Teams users. If one of the participants is using Skype, the operation fails. This method doesn't support federation. Only the user in the tenant who sent the message can perform data loss prevention (DLP) updates on the specified chat message. + * Update the navigation property messages in teams * @param body The request body * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage patch(@jakarta.annotation.Nonnull final ChatMessage body) { return patch(body, null); } /** - * Update a chatMessage object. Except for the policyViolation property, all properties of a chatMessage can be updated in delegated permissions scenarios.Only the policyViolation property of a chatMessage can be updated in application permissions scenarios. The update only works for chats where members are Microsoft Teams users. If one of the participants is using Skype, the operation fails. This method doesn't support federation. Only the user in the tenant who sent the message can perform data loss prevention (DLP) updates on the specified chat message. + * Update the navigation property messages in teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage patch(@jakarta.annotation.Nonnull final ChatMessage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -180,7 +176,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the channel. A navigation property. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -188,7 +184,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the channel. A navigation property. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -200,7 +196,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update a chatMessage object. Except for the policyViolation property, all properties of a chatMessage can be updated in delegated permissions scenarios.Only the policyViolation property of a chatMessage can be updated in application permissions scenarios. The update only works for chats where members are Microsoft Teams users. If one of the participants is using Skype, the operation fails. This method doesn't support federation. Only the user in the tenant who sent the message can perform data loss prevention (DLP) updates on the specified chat message. + * Update the navigation property messages in teams * @param body The request body * @return a {@link RequestInformation} */ @@ -209,7 +205,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update a chatMessage object. Except for the policyViolation property, all properties of a chatMessage can be updated in delegated permissions scenarios.Only the policyViolation property of a chatMessage can be updated in application permissions scenarios. The update only works for chats where members are Microsoft Teams users. If one of the participants is using Skype, the operation fails. This method doesn't support federation. Only the user in the tenant who sent the message can perform data loss prevention (DLP) updates on the specified chat message. + * Update the navigation property messages in teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -240,7 +236,7 @@ public ChatMessageItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final S public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the channel. A navigation property. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/item/hostedcontents/HostedContentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/item/hostedcontents/HostedContentsRequestBuilder.java index b230b1c4db5..41ca06b1c5e 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/item/hostedcontents/HostedContentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/item/hostedcontents/HostedContentsRequestBuilder.java @@ -60,21 +60,19 @@ public HostedContentsRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/teams/{team%2Did}/channels/{channel%2Did}/messages/{chatMessage%2Did}/hostedContents{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link ChatMessageHostedContentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContentCollectionResponse get() { return get(null); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageHostedContentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ChatMessageHostedContent post(@jakarta.annotation.Nonnull final ChatMessa return this.requestAdapter.send(requestInfo, errorMapping, ChatMessageHostedContent::createFromDiscriminatorValue); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public HostedContentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new HostedContentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java index f4e9f36866c..da7a1f176ac 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link ChatMessageHostedContent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContent get() { return get(null); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageHostedContent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContent get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public ChatMessageHostedContentItemRequestBuilder withUrl(@jakarta.annotation.No public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/item/hostedcontents/item/value/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/item/hostedcontents/item/value/ContentRequestBuilder.java index 9ddc1334b31..2a0d3f4fa30 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/item/hostedcontents/item/value/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/item/hostedcontents/item/value/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * Get media content for the navigation property hostedContents from teams * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/item/replies/RepliesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/item/replies/RepliesRequestBuilder.java index cfb10bf3b18..36f4a2c8b6c 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/item/replies/RepliesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/item/replies/RepliesRequestBuilder.java @@ -69,21 +69,19 @@ public RepliesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/teams/{team%2Did}/channels/{channel%2Did}/messages/{chatMessage%2Did}/replies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. * @return a {@link ChatMessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageCollectionResponse get() { return get(null); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public ChatMessageCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, ChatMessageCollectionResponse::createFromDiscriminatorValue); } /** - * Send a new reply to a chatMessage in a specified channel. + * Create new navigation property to replies for teams * @param body The request body * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body) { return post(body, null); } /** - * Send a new reply to a chatMessage in a specified channel. + * Create new navigation property to replies for teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body, @jak return this.requestAdapter.send(requestInfo, errorMapping, ChatMessage::createFromDiscriminatorValue); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Send a new reply to a chatMessage in a specified channel. + * Create new navigation property to replies for teams * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Send a new reply to a chatMessage in a specified channel. + * Create new navigation property to replies for teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public RepliesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new RepliesRequestBuilder(rawUrl, requestAdapter); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/item/replies/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/item/replies/delta/DeltaRequestBuilder.java index 8d61f82e7c7..c4ad84784a8 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/item/replies/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/item/replies/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/teams/{team%2Did}/channels/{channel%2Did}/messages/{chatMessage%2Did}/replies/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/item/replies/item/ChatMessageItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/item/replies/item/ChatMessageItemRequestBuilder.java index 0078c6d9502..ebad6eaf86c 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/item/replies/item/ChatMessageItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/item/replies/item/ChatMessageItemRequestBuilder.java @@ -100,21 +100,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage get() { return get(null); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -169,7 +167,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -177,7 +175,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -229,7 +227,7 @@ public ChatMessageItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final S public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/item/replies/item/hostedcontents/HostedContentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/item/replies/item/hostedcontents/HostedContentsRequestBuilder.java index 80e61c201c7..2150a431f6a 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/item/replies/item/hostedcontents/HostedContentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/item/replies/item/hostedcontents/HostedContentsRequestBuilder.java @@ -60,21 +60,19 @@ public HostedContentsRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/teams/{team%2Did}/channels/{channel%2Did}/messages/{chatMessage%2Did}/replies/{chatMessage%2Did1}/hostedContents{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link ChatMessageHostedContentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContentCollectionResponse get() { return get(null); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageHostedContentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ChatMessageHostedContent post(@jakarta.annotation.Nonnull final ChatMessa return this.requestAdapter.send(requestInfo, errorMapping, ChatMessageHostedContent::createFromDiscriminatorValue); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public HostedContentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new HostedContentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/item/replies/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/item/replies/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java index 4830762c6c3..b7da4980cdb 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/item/replies/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/item/replies/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link ChatMessageHostedContent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContent get() { return get(null); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageHostedContent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContent get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public ChatMessageHostedContentItemRequestBuilder withUrl(@jakarta.annotation.No public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/item/replies/item/hostedcontents/item/value/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/item/replies/item/hostedcontents/item/value/ContentRequestBuilder.java index e0f091c7e69..1ba3d9cd2b6 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/item/replies/item/hostedcontents/item/value/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/messages/item/replies/item/hostedcontents/item/value/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * Get media content for the navigation property hostedContents from teams * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/sharedwithteams/SharedWithTeamsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/sharedwithteams/SharedWithTeamsRequestBuilder.java index 4b4ebb23030..cffbd11cf03 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/sharedwithteams/SharedWithTeamsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/sharedwithteams/SharedWithTeamsRequestBuilder.java @@ -60,21 +60,19 @@ public SharedWithTeamsRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/teams/{team%2Did}/channels/{channel%2Did}/sharedWithTeams{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of teams that has been shared a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @return a {@link SharedWithChannelTeamInfoCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SharedWithChannelTeamInfoCollectionResponse get() { return get(null); } /** - * Get the list of teams that has been shared a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SharedWithChannelTeamInfoCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SharedWithChannelTeamInfoCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public SharedWithChannelTeamInfo post(@jakarta.annotation.Nonnull final SharedWi return this.requestAdapter.send(requestInfo, errorMapping, SharedWithChannelTeamInfo::createFromDiscriminatorValue); } /** - * Get the list of teams that has been shared a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of teams that has been shared a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public SharedWithTeamsRequestBuilder withUrl(@jakarta.annotation.Nonnull final S return new SharedWithTeamsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of teams that has been shared a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/sharedwithteams/item/SharedWithChannelTeamInfoItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/sharedwithteams/item/SharedWithChannelTeamInfoItemRequestBuilder.java index d70eda8313d..1a1997cac40 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/sharedwithteams/item/SharedWithChannelTeamInfoItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/sharedwithteams/item/SharedWithChannelTeamInfoItemRequestBuilder.java @@ -55,18 +55,16 @@ public SharedWithChannelTeamInfoItemRequestBuilder(@jakarta.annotation.Nonnull f super(requestAdapter, "{+baseurl}/teams/{team%2Did}/channels/{channel%2Did}/sharedWithTeams/{sharedWithChannelTeamInfo%2Did}{?%24expand,%24select}", rawUrl); } /** - * Unshare a channel with a team by deleting the corresponding sharedWithChannelTeamInfo resource. This operation is allowed only for channels with a membershipType value of shared. + * Delete navigation property sharedWithTeams for teams * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Unshare a channel with a team by deleting the corresponding sharedWithChannelTeamInfo resource. This operation is allowed only for channels with a membershipType value of shared. + * Delete navigation property sharedWithTeams for teams * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -75,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get a team that has been shared with a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @return a {@link SharedWithChannelTeamInfo} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SharedWithChannelTeamInfo get() { return get(null); } /** - * Get a team that has been shared with a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SharedWithChannelTeamInfo} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SharedWithChannelTeamInfo get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +120,7 @@ public SharedWithChannelTeamInfo patch(@jakarta.annotation.Nonnull final SharedW return this.requestAdapter.send(requestInfo, errorMapping, SharedWithChannelTeamInfo::createFromDiscriminatorValue); } /** - * Unshare a channel with a team by deleting the corresponding sharedWithChannelTeamInfo resource. This operation is allowed only for channels with a membershipType value of shared. + * Delete navigation property sharedWithTeams for teams * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +128,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Unshare a channel with a team by deleting the corresponding sharedWithChannelTeamInfo resource. This operation is allowed only for channels with a membershipType value of shared. + * Delete navigation property sharedWithTeams for teams * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -144,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get a team that has been shared with a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -152,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a team that has been shared with a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -204,7 +200,7 @@ public SharedWithChannelTeamInfoItemRequestBuilder withUrl(@jakarta.annotation.N public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get a team that has been shared with a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/sharedwithteams/item/allowedmembers/AllowedMembersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/sharedwithteams/item/allowedmembers/AllowedMembersRequestBuilder.java index 6dd5e818c9c..e6def57dc68 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/sharedwithteams/item/allowedmembers/AllowedMembersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/sharedwithteams/item/allowedmembers/AllowedMembersRequestBuilder.java @@ -59,21 +59,19 @@ public AllowedMembersRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/teams/{team%2Did}/channels/{channel%2Did}/sharedWithTeams/{sharedWithChannelTeamInfo%2Did}/allowedMembers{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of conversationMembers who can access a shared channel. This method does not return the following conversationMembers from the team:- Users with Guest role- Users who are externally authenticated in the tenant + * A collection of team members who have access to the shared channel. * @return a {@link ConversationMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMemberCollectionResponse get() { return get(null); } /** - * Get the list of conversationMembers who can access a shared channel. This method does not return the following conversationMembers from the team:- Users with Guest role- Users who are externally authenticated in the tenant + * A collection of team members who have access to the shared channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMemberCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public ConversationMemberCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, ConversationMemberCollectionResponse::createFromDiscriminatorValue); } /** - * Get the list of conversationMembers who can access a shared channel. This method does not return the following conversationMembers from the team:- Users with Guest role- Users who are externally authenticated in the tenant + * A collection of team members who have access to the shared channel. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of conversationMembers who can access a shared channel. This method does not return the following conversationMembers from the team:- Users with Guest role- Users who are externally authenticated in the tenant + * A collection of team members who have access to the shared channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public AllowedMembersRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new AllowedMembersRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of conversationMembers who can access a shared channel. This method does not return the following conversationMembers from the team:- Users with Guest role- Users who are externally authenticated in the tenant + * A collection of team members who have access to the shared channel. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/tabs/TabsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/tabs/TabsRequestBuilder.java index e69a000ef78..6dee57106b2 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/tabs/TabsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/tabs/TabsRequestBuilder.java @@ -60,21 +60,19 @@ public TabsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka super(requestAdapter, "{+baseurl}/teams/{team%2Did}/channels/{channel%2Did}/tabs{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of tabs in the specified channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @return a {@link TeamsTabCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTabCollectionResponse get() { return get(null); } /** - * Retrieve the list of tabs in the specified channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsTabCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTabCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TeamsTabCollectionResponse get(@jakarta.annotation.Nullable final java.ut return this.requestAdapter.send(requestInfo, errorMapping, TeamsTabCollectionResponse::createFromDiscriminatorValue); } /** - * Add (pin) a tab to the specified channel within a team. The app must be preinstalled in the team and have the configurableTabs property defined in the app manifest. + * Create new navigation property to tabs for teams * @param body The request body * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab post(@jakarta.annotation.Nonnull final TeamsTab body) { return post(body, null); } /** - * Add (pin) a tab to the specified channel within a team. The app must be preinstalled in the team and have the configurableTabs property defined in the app manifest. + * Create new navigation property to tabs for teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab post(@jakarta.annotation.Nonnull final TeamsTab body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public TeamsTab post(@jakarta.annotation.Nonnull final TeamsTab body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, TeamsTab::createFromDiscriminatorValue); } /** - * Retrieve the list of tabs in the specified channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of tabs in the specified channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add (pin) a tab to the specified channel within a team. The app must be preinstalled in the team and have the configurableTabs property defined in the app manifest. + * Create new navigation property to tabs for teams * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add (pin) a tab to the specified channel within a team. The app must be preinstalled in the team and have the configurableTabs property defined in the app manifest. + * Create new navigation property to tabs for teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public TabsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr return new TabsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of tabs in the specified channel within a team. + * A collection of all the tabs in the channel. A navigation property. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/tabs/item/TeamsTabItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/tabs/item/TeamsTabItemRequestBuilder.java index 788539e4e95..7f6de587021 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/tabs/item/TeamsTabItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/channels/item/tabs/item/TeamsTabItemRequestBuilder.java @@ -46,18 +46,16 @@ public TeamsTabItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/teams/{team%2Did}/channels/{channel%2Did}/tabs/{teamsTab%2Did}{?%24expand,%24select}", rawUrl); } /** - * Removes (unpins) a tab from the specified channel within a team. + * Delete navigation property tabs for teams * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Removes (unpins) a tab from the specified channel within a team. + * Delete navigation property tabs for teams * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of the specified tab in a channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab get() { return get(null); } /** - * Retrieve the properties and relationships of the specified tab in a channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public TeamsTab get(@jakarta.annotation.Nullable final java.util.function.Consum return this.requestAdapter.send(requestInfo, errorMapping, TeamsTab::createFromDiscriminatorValue); } /** - * Update the properties of the specified tab.This API can be used to configure the content of the tab. + * Update the navigation property tabs in teams * @param body The request body * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab patch(@jakarta.annotation.Nonnull final TeamsTab body) { return patch(body, null); } /** - * Update the properties of the specified tab.This API can be used to configure the content of the tab. + * Update the navigation property tabs in teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab patch(@jakarta.annotation.Nonnull final TeamsTab body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public TeamsTab patch(@jakarta.annotation.Nonnull final TeamsTab body, @jakarta. return this.requestAdapter.send(requestInfo, errorMapping, TeamsTab::createFromDiscriminatorValue); } /** - * Removes (unpins) a tab from the specified channel within a team. + * Delete navigation property tabs for teams * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Removes (unpins) a tab from the specified channel within a team. + * Delete navigation property tabs for teams * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of the specified tab in a channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of the specified tab in a channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of the specified tab.This API can be used to configure the content of the tab. + * Update the navigation property tabs in teams * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of the specified tab.This API can be used to configure the content of the tab. + * Update the navigation property tabs in teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public TeamsTabItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of the specified tab in a channel within a team. + * A collection of all the tabs in the channel. A navigation property. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/clone/CloneRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/clone/CloneRequestBuilder.java index 577381edc56..1e945c36566 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/clone/CloneRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/clone/CloneRequestBuilder.java @@ -35,7 +35,7 @@ public CloneRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/teams/{team%2Did}/clone", rawUrl); } /** - * Create a copy of a team. This operation also creates a copy of the corresponding group.You can specify which parts of the team to clone: When tabs are cloned, they aren't configured. The tabs are displayed on the tab bar in Microsoft Teams, and the first time a user opens them, they must go through the configuration screen. If the user who opens the tab doesn't have permission to configure apps, they'll see a message that says that the tab isn't configured. Cloning is a long-running operation. After the POST clone returns, you need to GET the operation returned by the Location: header to see if it's running, succeeded, or failed. You should continue to GET until the status isn't running. The recommended delay between GETs is 5 seconds. + * Create a copy of a team. This operation also creates a copy of the corresponding group.You can specify which parts of the team to clone: When tabs are cloned, they aren't configured. The tabs are displayed on the tab bar in Microsoft Teams, and the first time a user opens them, they must go through the configuration screen. If the user who opens the tab doesn't have permission to configure apps, they see a message that says that the tab isn't configured. Cloning is a long-running operation. After the POST clone returns, you need to GET the operation returned by the Location: header to see if it's running, succeeded, or failed. You should continue to GET until the status isn't running. The recommended delay between GETs is 5 seconds. * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code * @see Find more info here @@ -44,7 +44,7 @@ public void post(@jakarta.annotation.Nonnull final ClonePostRequestBody body) { post(body, null); } /** - * Create a copy of a team. This operation also creates a copy of the corresponding group.You can specify which parts of the team to clone: When tabs are cloned, they aren't configured. The tabs are displayed on the tab bar in Microsoft Teams, and the first time a user opens them, they must go through the configuration screen. If the user who opens the tab doesn't have permission to configure apps, they'll see a message that says that the tab isn't configured. Cloning is a long-running operation. After the POST clone returns, you need to GET the operation returned by the Location: header to see if it's running, succeeded, or failed. You should continue to GET until the status isn't running. The recommended delay between GETs is 5 seconds. + * Create a copy of a team. This operation also creates a copy of the corresponding group.You can specify which parts of the team to clone: When tabs are cloned, they aren't configured. The tabs are displayed on the tab bar in Microsoft Teams, and the first time a user opens them, they must go through the configuration screen. If the user who opens the tab doesn't have permission to configure apps, they see a message that says that the tab isn't configured. Cloning is a long-running operation. After the POST clone returns, you need to GET the operation returned by the Location: header to see if it's running, succeeded, or failed. You should continue to GET until the status isn't running. The recommended delay between GETs is 5 seconds. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code @@ -58,7 +58,7 @@ public void post(@jakarta.annotation.Nonnull final ClonePostRequestBody body, @j this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Create a copy of a team. This operation also creates a copy of the corresponding group.You can specify which parts of the team to clone: When tabs are cloned, they aren't configured. The tabs are displayed on the tab bar in Microsoft Teams, and the first time a user opens them, they must go through the configuration screen. If the user who opens the tab doesn't have permission to configure apps, they'll see a message that says that the tab isn't configured. Cloning is a long-running operation. After the POST clone returns, you need to GET the operation returned by the Location: header to see if it's running, succeeded, or failed. You should continue to GET until the status isn't running. The recommended delay between GETs is 5 seconds. + * Create a copy of a team. This operation also creates a copy of the corresponding group.You can specify which parts of the team to clone: When tabs are cloned, they aren't configured. The tabs are displayed on the tab bar in Microsoft Teams, and the first time a user opens them, they must go through the configuration screen. If the user who opens the tab doesn't have permission to configure apps, they see a message that says that the tab isn't configured. Cloning is a long-running operation. After the POST clone returns, you need to GET the operation returned by the Location: header to see if it's running, succeeded, or failed. You should continue to GET until the status isn't running. The recommended delay between GETs is 5 seconds. * @param body The request body * @return a {@link RequestInformation} */ @@ -67,7 +67,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a copy of a team. This operation also creates a copy of the corresponding group.You can specify which parts of the team to clone: When tabs are cloned, they aren't configured. The tabs are displayed on the tab bar in Microsoft Teams, and the first time a user opens them, they must go through the configuration screen. If the user who opens the tab doesn't have permission to configure apps, they'll see a message that says that the tab isn't configured. Cloning is a long-running operation. After the POST clone returns, you need to GET the operation returned by the Location: header to see if it's running, succeeded, or failed. You should continue to GET until the status isn't running. The recommended delay between GETs is 5 seconds. + * Create a copy of a team. This operation also creates a copy of the corresponding group.You can specify which parts of the team to clone: When tabs are cloned, they aren't configured. The tabs are displayed on the tab bar in Microsoft Teams, and the first time a user opens them, they must go through the configuration screen. If the user who opens the tab doesn't have permission to configure apps, they see a message that says that the tab isn't configured. Cloning is a long-running operation. After the POST clone returns, you need to GET the operation returned by the Location: header to see if it's running, succeeded, or failed. You should continue to GET until the status isn't running. The recommended delay between GETs is 5 seconds. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/incomingchannels/IncomingChannelsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/incomingchannels/IncomingChannelsRequestBuilder.java index 96f5246ebdc..0f20a8277bc 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/incomingchannels/IncomingChannelsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/incomingchannels/IncomingChannelsRequestBuilder.java @@ -59,21 +59,19 @@ public IncomingChannelsRequestBuilder(@jakarta.annotation.Nonnull final String r super(requestAdapter, "{+baseurl}/teams/{team%2Did}/incomingChannels{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of incoming channels (channels shared with a team). + * List of channels shared with the team. * @return a {@link ChannelCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChannelCollectionResponse get() { return get(null); } /** - * Get the list of incoming channels (channels shared with a team). + * List of channels shared with the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChannelCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChannelCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public ChannelCollectionResponse get(@jakarta.annotation.Nullable final java.uti return this.requestAdapter.send(requestInfo, errorMapping, ChannelCollectionResponse::createFromDiscriminatorValue); } /** - * Get the list of incoming channels (channels shared with a team). + * List of channels shared with the team. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of incoming channels (channels shared with a team). + * List of channels shared with the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public IncomingChannelsRequestBuilder withUrl(@jakarta.annotation.Nonnull final return new IncomingChannelsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of incoming channels (channels shared with a team). + * List of channels shared with the team. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/installedapps/InstalledAppsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/installedapps/InstalledAppsRequestBuilder.java index fbc3a5104a5..581bca4ac24 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/installedapps/InstalledAppsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/installedapps/InstalledAppsRequestBuilder.java @@ -60,21 +60,19 @@ public InstalledAppsRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/teams/{team%2Did}/installedApps{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of apps installed in the specified team. + * The apps installed in this team. * @return a {@link TeamsAppInstallationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsAppInstallationCollectionResponse get() { return get(null); } /** - * Retrieve a list of apps installed in the specified team. + * The apps installed in this team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsAppInstallationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsAppInstallationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TeamsAppInstallationCollectionResponse get(@jakarta.annotation.Nullable f return this.requestAdapter.send(requestInfo, errorMapping, TeamsAppInstallationCollectionResponse::createFromDiscriminatorValue); } /** - * Install an app to the specified team. + * Create new navigation property to installedApps for teams * @param body The request body * @return a {@link TeamsAppInstallation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsAppInstallation post(@jakarta.annotation.Nonnull final TeamsAppInstallation body) { return post(body, null); } /** - * Install an app to the specified team. + * Create new navigation property to installedApps for teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsAppInstallation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsAppInstallation post(@jakarta.annotation.Nonnull final TeamsAppInstallation body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public TeamsAppInstallation post(@jakarta.annotation.Nonnull final TeamsAppInsta return this.requestAdapter.send(requestInfo, errorMapping, TeamsAppInstallation::createFromDiscriminatorValue); } /** - * Retrieve a list of apps installed in the specified team. + * The apps installed in this team. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of apps installed in the specified team. + * The apps installed in this team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Install an app to the specified team. + * Create new navigation property to installedApps for teams * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Install an app to the specified team. + * Create new navigation property to installedApps for teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public InstalledAppsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new InstalledAppsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of apps installed in the specified team. + * The apps installed in this team. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/installedapps/item/TeamsAppInstallationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/installedapps/item/TeamsAppInstallationItemRequestBuilder.java index 0fb18ae75d4..bebf0c0f858 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/installedapps/item/TeamsAppInstallationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/installedapps/item/TeamsAppInstallationItemRequestBuilder.java @@ -64,18 +64,16 @@ public TeamsAppInstallationItemRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/teams/{team%2Did}/installedApps/{teamsAppInstallation%2Did}{?%24expand,%24select}", rawUrl); } /** - * Uninstalls an app from the specified team. + * Delete navigation property installedApps for teams * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Uninstalls an app from the specified team. + * Delete navigation property installedApps for teams * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -84,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the app installed in the specified team. + * The apps installed in this team. * @return a {@link TeamsAppInstallation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsAppInstallation get() { return get(null); } /** - * Retrieve the app installed in the specified team. + * The apps installed in this team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsAppInstallation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsAppInstallation get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +129,7 @@ public TeamsAppInstallation patch(@jakarta.annotation.Nonnull final TeamsAppInst return this.requestAdapter.send(requestInfo, errorMapping, TeamsAppInstallation::createFromDiscriminatorValue); } /** - * Uninstalls an app from the specified team. + * Delete navigation property installedApps for teams * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +137,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Uninstalls an app from the specified team. + * Delete navigation property installedApps for teams * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -153,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the app installed in the specified team. + * The apps installed in this team. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -161,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the app installed in the specified team. + * The apps installed in this team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -213,7 +209,7 @@ public TeamsAppInstallationItemRequestBuilder withUrl(@jakarta.annotation.Nonnul public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the app installed in the specified team. + * The apps installed in this team. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/members/MembersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/members/MembersRequestBuilder.java index cd2a3ebf64d..15ae56fae9e 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/members/MembersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/members/MembersRequestBuilder.java @@ -69,21 +69,19 @@ public MembersRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/teams/{team%2Did}/members{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the conversationMember collection of a team. The membership IDs returned by the server must be treated as opaque strings. The client should not try to parse or make assumptions about these resource IDs. In the future, membership results may include users from various tenants, as indicated in the response. Clients should avoid assuming that all members exclusively belong to the current tenant. + * Members and owners of the team. * @return a {@link ConversationMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMemberCollectionResponse get() { return get(null); } /** - * Get the conversationMember collection of a team. The membership IDs returned by the server must be treated as opaque strings. The client should not try to parse or make assumptions about these resource IDs. In the future, membership results may include users from various tenants, as indicated in the response. Clients should avoid assuming that all members exclusively belong to the current tenant. + * Members and owners of the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMemberCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public ConversationMemberCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, ConversationMemberCollectionResponse::createFromDiscriminatorValue); } /** - * Add a new conversationMember to a team. + * Create new navigation property to members for teams * @param body The request body * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember post(@jakarta.annotation.Nonnull final ConversationMember body) { return post(body, null); } /** - * Add a new conversationMember to a team. + * Create new navigation property to members for teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember post(@jakarta.annotation.Nonnull final ConversationMember body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public ConversationMember post(@jakarta.annotation.Nonnull final ConversationMem return this.requestAdapter.send(requestInfo, errorMapping, ConversationMember::createFromDiscriminatorValue); } /** - * Get the conversationMember collection of a team. The membership IDs returned by the server must be treated as opaque strings. The client should not try to parse or make assumptions about these resource IDs. In the future, membership results may include users from various tenants, as indicated in the response. Clients should avoid assuming that all members exclusively belong to the current tenant. + * Members and owners of the team. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the conversationMember collection of a team. The membership IDs returned by the server must be treated as opaque strings. The client should not try to parse or make assumptions about these resource IDs. In the future, membership results may include users from various tenants, as indicated in the response. Clients should avoid assuming that all members exclusively belong to the current tenant. + * Members and owners of the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add a new conversationMember to a team. + * Create new navigation property to members for teams * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add a new conversationMember to a team. + * Create new navigation property to members for teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public MembersRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new MembersRequestBuilder(rawUrl, requestAdapter); } /** - * Get the conversationMember collection of a team. The membership IDs returned by the server must be treated as opaque strings. The client should not try to parse or make assumptions about these resource IDs. In the future, membership results may include users from various tenants, as indicated in the response. Clients should avoid assuming that all members exclusively belong to the current tenant. + * Members and owners of the team. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/members/item/ConversationMemberItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/members/item/ConversationMemberItemRequestBuilder.java index ce9ce50e927..cfc374b24e4 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/members/item/ConversationMemberItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/members/item/ConversationMemberItemRequestBuilder.java @@ -37,18 +37,16 @@ public ConversationMemberItemRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/teams/{team%2Did}/members/{conversationMember%2Did}{?%24expand,%24select}", rawUrl); } /** - * Remove a conversationMember from a team. + * Delete navigation property members for teams * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove a conversationMember from a team. + * Delete navigation property members for teams * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get a conversationMember from a team. + * Members and owners of the team. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember get() { return get(null); } /** - * Get a conversationMember from a team. + * Members and owners of the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public ConversationMember get(@jakarta.annotation.Nullable final java.util.funct return this.requestAdapter.send(requestInfo, errorMapping, ConversationMember::createFromDiscriminatorValue); } /** - * Update the role of a conversationMember in a team. + * Update the navigation property members in teams * @param body The request body * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember patch(@jakarta.annotation.Nonnull final ConversationMember body) { return patch(body, null); } /** - * Update the role of a conversationMember in a team. + * Update the navigation property members in teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember patch(@jakarta.annotation.Nonnull final ConversationMember body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public ConversationMember patch(@jakarta.annotation.Nonnull final ConversationMe return this.requestAdapter.send(requestInfo, errorMapping, ConversationMember::createFromDiscriminatorValue); } /** - * Remove a conversationMember from a team. + * Delete navigation property members for teams * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove a conversationMember from a team. + * Delete navigation property members for teams * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get a conversationMember from a team. + * Members and owners of the team. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a conversationMember from a team. + * Members and owners of the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the role of a conversationMember in a team. + * Update the navigation property members in teams * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the role of a conversationMember in a team. + * Update the navigation property members in teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public ConversationMemberItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get a conversationMember from a team. + * Members and owners of the team. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/permissiongrants/PermissionGrantsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/permissiongrants/PermissionGrantsRequestBuilder.java index 4ccc55a8e13..3e883205f61 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/permissiongrants/PermissionGrantsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/permissiongrants/PermissionGrantsRequestBuilder.java @@ -60,21 +60,19 @@ public PermissionGrantsRequestBuilder(@jakarta.annotation.Nonnull final String r super(requestAdapter, "{+baseurl}/teams/{team%2Did}/permissionGrants{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List all resource-specific permission grants on the team. This list specifies the Microsoft Entra apps that have access to the team, along with each app's corresponding type of resource-specific access. + * A collection of permissions granted to apps to access the team. * @return a {@link ResourceSpecificPermissionGrantCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ResourceSpecificPermissionGrantCollectionResponse get() { return get(null); } /** - * List all resource-specific permission grants on the team. This list specifies the Microsoft Entra apps that have access to the team, along with each app's corresponding type of resource-specific access. + * A collection of permissions granted to apps to access the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ResourceSpecificPermissionGrantCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ResourceSpecificPermissionGrantCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ResourceSpecificPermissionGrant post(@jakarta.annotation.Nonnull final Re return this.requestAdapter.send(requestInfo, errorMapping, ResourceSpecificPermissionGrant::createFromDiscriminatorValue); } /** - * List all resource-specific permission grants on the team. This list specifies the Microsoft Entra apps that have access to the team, along with each app's corresponding type of resource-specific access. + * A collection of permissions granted to apps to access the team. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List all resource-specific permission grants on the team. This list specifies the Microsoft Entra apps that have access to the team, along with each app's corresponding type of resource-specific access. + * A collection of permissions granted to apps to access the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public PermissionGrantsRequestBuilder withUrl(@jakarta.annotation.Nonnull final return new PermissionGrantsRequestBuilder(rawUrl, requestAdapter); } /** - * List all resource-specific permission grants on the team. This list specifies the Microsoft Entra apps that have access to the team, along with each app's corresponding type of resource-specific access. + * A collection of permissions granted to apps to access the team. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/photo/PhotoRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/photo/PhotoRequestBuilder.java index 32687b179d6..9cb59e17ed3 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/photo/PhotoRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/photo/PhotoRequestBuilder.java @@ -46,21 +46,19 @@ public PhotoRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/teams/{team%2Did}/photo{?%24expand,%24select}", rawUrl); } /** - * Get the specified profilePhoto or its metadata (profilePhoto properties). The supported sizes of HD photos on Microsoft 365 are as follows: 48x48, 64x64, 96x96, 120x120, 240x240,360x360, 432x432, 504x504, and 648x648. Photos can be any dimension if they're stored in Microsoft Entra ID. You can get the metadata of the largest available photo or specify a size to get the metadata for that photo size.If the size you request is unavailable, you can still get a smaller size that the user has uploaded and made available.For example, if the user uploads a photo that is 504x504 pixels, all but the 648x648 size of the photo is available for download. + * The profile photo for the team. * @return a {@link ProfilePhoto} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ProfilePhoto get() { return get(null); } /** - * Get the specified profilePhoto or its metadata (profilePhoto properties). The supported sizes of HD photos on Microsoft 365 are as follows: 48x48, 64x64, 96x96, 120x120, 240x240,360x360, 432x432, 504x504, and 648x648. Photos can be any dimension if they're stored in Microsoft Entra ID. You can get the metadata of the largest available photo or specify a size to get the metadata for that photo size.If the size you request is unavailable, you can still get a smaller size that the user has uploaded and made available.For example, if the user uploads a photo that is 504x504 pixels, all but the 648x648 size of the photo is available for download. + * The profile photo for the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ProfilePhoto} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ProfilePhoto get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -95,7 +93,7 @@ public ProfilePhoto patch(@jakarta.annotation.Nonnull final ProfilePhoto body, @ return this.requestAdapter.send(requestInfo, errorMapping, ProfilePhoto::createFromDiscriminatorValue); } /** - * Get the specified profilePhoto or its metadata (profilePhoto properties). The supported sizes of HD photos on Microsoft 365 are as follows: 48x48, 64x64, 96x96, 120x120, 240x240,360x360, 432x432, 504x504, and 648x648. Photos can be any dimension if they're stored in Microsoft Entra ID. You can get the metadata of the largest available photo or specify a size to get the metadata for that photo size.If the size you request is unavailable, you can still get a smaller size that the user has uploaded and made available.For example, if the user uploads a photo that is 504x504 pixels, all but the 648x648 size of the photo is available for download. + * The profile photo for the team. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -103,7 +101,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the specified profilePhoto or its metadata (profilePhoto properties). The supported sizes of HD photos on Microsoft 365 are as follows: 48x48, 64x64, 96x96, 120x120, 240x240,360x360, 432x432, 504x504, and 648x648. Photos can be any dimension if they're stored in Microsoft Entra ID. You can get the metadata of the largest available photo or specify a size to get the metadata for that photo size.If the size you request is unavailable, you can still get a smaller size that the user has uploaded and made available.For example, if the user uploads a photo that is 504x504 pixels, all but the 648x648 size of the photo is available for download. + * The profile photo for the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -149,7 +147,7 @@ public PhotoRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new PhotoRequestBuilder(rawUrl, requestAdapter); } /** - * Get the specified profilePhoto or its metadata (profilePhoto properties). The supported sizes of HD photos on Microsoft 365 are as follows: 48x48, 64x64, 96x96, 120x120, 240x240,360x360, 432x432, 504x504, and 648x648. Photos can be any dimension if they're stored in Microsoft Entra ID. You can get the metadata of the largest available photo or specify a size to get the metadata for that photo size.If the size you request is unavailable, you can still get a smaller size that the user has uploaded and made available.For example, if the user uploads a photo that is 504x504 pixels, all but the 648x648 size of the photo is available for download. + * The profile photo for the team. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/photo/value/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/photo/value/ContentRequestBuilder.java index 661b3efc8ed..be4cdcb5880 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/photo/value/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/photo/value/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * Get media content for the navigation property photo from teams * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/PrimaryChannelRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/PrimaryChannelRequestBuilder.java index 8e66b8b8f01..2c73604682e 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/PrimaryChannelRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/PrimaryChannelRequestBuilder.java @@ -136,21 +136,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the default channel, General, of a team. + * The general channel for the team. * @return a {@link Channel} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Channel get() { return get(null); } /** - * Get the default channel, General, of a team. + * The general channel for the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Channel} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Channel get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -205,7 +203,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the default channel, General, of a team. + * The general channel for the team. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -213,7 +211,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the default channel, General, of a team. + * The general channel for the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -265,7 +263,7 @@ public PrimaryChannelRequestBuilder withUrl(@jakarta.annotation.Nonnull final St public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the default channel, General, of a team. + * The general channel for the team. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/doesuserhaveaccessuseriduseridtenantidtenantiduserprincipalnameuserprincipalname/DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/doesuserhaveaccessuseriduseridtenantidtenantiduserprincipalnameuserprincipalname/DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameRequestBuilder.java index 03f5e450411..f823d5fb278 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/doesuserhaveaccessuseriduseridtenantidtenantiduserprincipalnameuserprincipalname/DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/doesuserhaveaccessuseriduseridtenantidtenantiduserprincipalnameuserprincipalname/DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameRequestBuilder.java @@ -36,19 +36,21 @@ public DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrinci super(requestAdapter, "{+baseurl}/teams/{team%2Did}/primaryChannel/doesUserHaveAccess(userId='@userId',tenantId='@tenantId',userPrincipalName='@userPrincipalName'){?tenantId*,userId*,userPrincipalName*}", rawUrl); } /** - * Invoke function doesUserHaveAccess + * Determine whether a user has access to a shared channel. * @return a {@link DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameGetResponse get() { return get(null); } /** - * Invoke function doesUserHaveAccess + * Determine whether a user has access to a shared channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrinci return this.requestAdapter.send(requestInfo, errorMapping, DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameGetResponse::createFromDiscriminatorValue); } /** - * Invoke function doesUserHaveAccess + * Determine whether a user has access to a shared channel. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function doesUserHaveAccess + * Determine whether a user has access to a shared channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrinci return new DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function doesUserHaveAccess + * Determine whether a user has access to a shared channel. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/filesfolder/FilesFolderRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/filesfolder/FilesFolderRequestBuilder.java index 692bbfe0c8b..7c93e6aa390 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/filesfolder/FilesFolderRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/filesfolder/FilesFolderRequestBuilder.java @@ -46,21 +46,19 @@ public FilesFolderRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/teams/{team%2Did}/primaryChannel/filesFolder{?%24expand,%24select}", rawUrl); } /** - * Get the metadata for the location where the files of a channel are stored. + * Metadata for the location where the channel's files are stored. * @return a {@link DriveItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DriveItem get() { return get(null); } /** - * Get the metadata for the location where the files of a channel are stored. + * Metadata for the location where the channel's files are stored. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DriveItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DriveItem get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -70,7 +68,7 @@ public DriveItem get(@jakarta.annotation.Nullable final java.util.function.Consu return this.requestAdapter.send(requestInfo, errorMapping, DriveItem::createFromDiscriminatorValue); } /** - * Get the metadata for the location where the files of a channel are stored. + * Metadata for the location where the channel's files are stored. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -78,7 +76,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the metadata for the location where the files of a channel are stored. + * Metadata for the location where the channel's files are stored. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -100,7 +98,7 @@ public FilesFolderRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new FilesFolderRequestBuilder(rawUrl, requestAdapter); } /** - * Get the metadata for the location where the files of a channel are stored. + * Metadata for the location where the channel's files are stored. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/filesfolder/content/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/filesfolder/content/ContentRequestBuilder.java index 0cb647ae666..671108da2f8 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/filesfolder/content/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/filesfolder/content/ContentRequestBuilder.java @@ -41,7 +41,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * The content stream, if the item represents a file. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -52,7 +51,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/members/MembersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/members/MembersRequestBuilder.java index 2b16655f515..e9a29e33fc1 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/members/MembersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/members/MembersRequestBuilder.java @@ -69,21 +69,19 @@ public MembersRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/teams/{team%2Did}/primaryChannel/members{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of conversationMembers from a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve the channel member list. + * A collection of membership records associated with the channel. * @return a {@link ConversationMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMemberCollectionResponse get() { return get(null); } /** - * Retrieve a list of conversationMembers from a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve the channel member list. + * A collection of membership records associated with the channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMemberCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public ConversationMemberCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, ConversationMemberCollectionResponse::createFromDiscriminatorValue); } /** - * Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Create new navigation property to members for teams * @param body The request body * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember post(@jakarta.annotation.Nonnull final ConversationMember body) { return post(body, null); } /** - * Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Create new navigation property to members for teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember post(@jakarta.annotation.Nonnull final ConversationMember body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public ConversationMember post(@jakarta.annotation.Nonnull final ConversationMem return this.requestAdapter.send(requestInfo, errorMapping, ConversationMember::createFromDiscriminatorValue); } /** - * Retrieve a list of conversationMembers from a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve the channel member list. + * A collection of membership records associated with the channel. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of conversationMembers from a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve the channel member list. + * A collection of membership records associated with the channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Create new navigation property to members for teams * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Create new navigation property to members for teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public MembersRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new MembersRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of conversationMembers from a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve the channel member list. + * A collection of membership records associated with the channel. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/members/item/ConversationMemberItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/members/item/ConversationMemberItemRequestBuilder.java index 4743bac24e9..22afe78da1d 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/members/item/ConversationMemberItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/members/item/ConversationMemberItemRequestBuilder.java @@ -37,18 +37,16 @@ public ConversationMemberItemRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/teams/{team%2Did}/primaryChannel/members/{conversationMember%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Delete navigation property members for teams * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Delete navigation property members for teams * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get a conversationMember from a channel. + * A collection of membership records associated with the channel. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember get() { return get(null); } /** - * Get a conversationMember from a channel. + * A collection of membership records associated with the channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public ConversationMember get(@jakarta.annotation.Nullable final java.util.funct return this.requestAdapter.send(requestInfo, errorMapping, ConversationMember::createFromDiscriminatorValue); } /** - * Update the role of a conversationMember in a team or channel. + * Update the navigation property members in teams * @param body The request body * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember patch(@jakarta.annotation.Nonnull final ConversationMember body) { return patch(body, null); } /** - * Update the role of a conversationMember in a team or channel. + * Update the navigation property members in teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember patch(@jakarta.annotation.Nonnull final ConversationMember body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public ConversationMember patch(@jakarta.annotation.Nonnull final ConversationMe return this.requestAdapter.send(requestInfo, errorMapping, ConversationMember::createFromDiscriminatorValue); } /** - * Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Delete navigation property members for teams * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Delete navigation property members for teams * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get a conversationMember from a channel. + * A collection of membership records associated with the channel. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a conversationMember from a channel. + * A collection of membership records associated with the channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the role of a conversationMember in a team or channel. + * Update the navigation property members in teams * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the role of a conversationMember in a team or channel. + * Update the navigation property members in teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public ConversationMemberItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get a conversationMember from a channel. + * A collection of membership records associated with the channel. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/MessagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/MessagesRequestBuilder.java index 1872bed5f47..1a3133f7aba 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/MessagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/MessagesRequestBuilder.java @@ -69,21 +69,19 @@ public MessagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/teams/{team%2Did}/primaryChannel/messages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of messages (without the replies) in a channel of a team. To get the replies for a message, call the list message replies or the get message reply API. This method supports federation. To list channel messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the channel. A navigation property. Nullable. * @return a {@link ChatMessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageCollectionResponse get() { return get(null); } /** - * Retrieve the list of messages (without the replies) in a channel of a team. To get the replies for a message, call the list message replies or the get message reply API. This method supports federation. To list channel messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the channel. A navigation property. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public ChatMessageCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, ChatMessageCollectionResponse::createFromDiscriminatorValue); } /** - * Send a new chatMessage in the specified channel or a chat. + * Create new navigation property to messages for teams * @param body The request body * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body) { return post(body, null); } /** - * Send a new chatMessage in the specified channel or a chat. + * Create new navigation property to messages for teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body, @jak return this.requestAdapter.send(requestInfo, errorMapping, ChatMessage::createFromDiscriminatorValue); } /** - * Retrieve the list of messages (without the replies) in a channel of a team. To get the replies for a message, call the list message replies or the get message reply API. This method supports federation. To list channel messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the channel. A navigation property. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of messages (without the replies) in a channel of a team. To get the replies for a message, call the list message replies or the get message reply API. This method supports federation. To list channel messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the channel. A navigation property. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Send a new chatMessage in the specified channel or a chat. + * Create new navigation property to messages for teams * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Send a new chatMessage in the specified channel or a chat. + * Create new navigation property to messages for teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public MessagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new MessagesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of messages (without the replies) in a channel of a team. To get the replies for a message, call the list message replies or the get message reply API. This method supports federation. To list channel messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the channel. A navigation property. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/delta/DeltaRequestBuilder.java index d4f1e7dbf08..8443dcf35d8 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/teams/{team%2Did}/primaryChannel/messages/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/item/ChatMessageItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/item/ChatMessageItemRequestBuilder.java index bb352173b37..e5e23bb983a 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/item/ChatMessageItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/item/ChatMessageItemRequestBuilder.java @@ -109,21 +109,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the channel. A navigation property. Nullable. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage get() { return get(null); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the channel. A navigation property. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,23 +131,21 @@ public ChatMessage get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.send(requestInfo, errorMapping, ChatMessage::createFromDiscriminatorValue); } /** - * Update a chatMessage object. Except for the policyViolation property, all properties of a chatMessage can be updated in delegated permissions scenarios.Only the policyViolation property of a chatMessage can be updated in application permissions scenarios. The update only works for chats where members are Microsoft Teams users. If one of the participants is using Skype, the operation fails. This method doesn't support federation. Only the user in the tenant who sent the message can perform data loss prevention (DLP) updates on the specified chat message. + * Update the navigation property messages in teams * @param body The request body * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage patch(@jakarta.annotation.Nonnull final ChatMessage body) { return patch(body, null); } /** - * Update a chatMessage object. Except for the policyViolation property, all properties of a chatMessage can be updated in delegated permissions scenarios.Only the policyViolation property of a chatMessage can be updated in application permissions scenarios. The update only works for chats where members are Microsoft Teams users. If one of the participants is using Skype, the operation fails. This method doesn't support federation. Only the user in the tenant who sent the message can perform data loss prevention (DLP) updates on the specified chat message. + * Update the navigation property messages in teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage patch(@jakarta.annotation.Nonnull final ChatMessage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -180,7 +176,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the channel. A navigation property. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -188,7 +184,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the channel. A navigation property. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -200,7 +196,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update a chatMessage object. Except for the policyViolation property, all properties of a chatMessage can be updated in delegated permissions scenarios.Only the policyViolation property of a chatMessage can be updated in application permissions scenarios. The update only works for chats where members are Microsoft Teams users. If one of the participants is using Skype, the operation fails. This method doesn't support federation. Only the user in the tenant who sent the message can perform data loss prevention (DLP) updates on the specified chat message. + * Update the navigation property messages in teams * @param body The request body * @return a {@link RequestInformation} */ @@ -209,7 +205,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update a chatMessage object. Except for the policyViolation property, all properties of a chatMessage can be updated in delegated permissions scenarios.Only the policyViolation property of a chatMessage can be updated in application permissions scenarios. The update only works for chats where members are Microsoft Teams users. If one of the participants is using Skype, the operation fails. This method doesn't support federation. Only the user in the tenant who sent the message can perform data loss prevention (DLP) updates on the specified chat message. + * Update the navigation property messages in teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -240,7 +236,7 @@ public ChatMessageItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final S public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the channel. A navigation property. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/item/hostedcontents/HostedContentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/item/hostedcontents/HostedContentsRequestBuilder.java index f2fb87249b7..3d395bf56cf 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/item/hostedcontents/HostedContentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/item/hostedcontents/HostedContentsRequestBuilder.java @@ -60,21 +60,19 @@ public HostedContentsRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/teams/{team%2Did}/primaryChannel/messages/{chatMessage%2Did}/hostedContents{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link ChatMessageHostedContentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContentCollectionResponse get() { return get(null); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageHostedContentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ChatMessageHostedContent post(@jakarta.annotation.Nonnull final ChatMessa return this.requestAdapter.send(requestInfo, errorMapping, ChatMessageHostedContent::createFromDiscriminatorValue); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public HostedContentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new HostedContentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java index 399ed16208e..71e855dbe9a 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link ChatMessageHostedContent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContent get() { return get(null); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageHostedContent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContent get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public ChatMessageHostedContentItemRequestBuilder withUrl(@jakarta.annotation.No public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/item/hostedcontents/item/value/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/item/hostedcontents/item/value/ContentRequestBuilder.java index 10a8feaad01..98dd8dde399 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/item/hostedcontents/item/value/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/item/hostedcontents/item/value/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * Get media content for the navigation property hostedContents from teams * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/item/replies/RepliesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/item/replies/RepliesRequestBuilder.java index 87a21e6d29c..b15cf0c2895 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/item/replies/RepliesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/item/replies/RepliesRequestBuilder.java @@ -69,21 +69,19 @@ public RepliesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/teams/{team%2Did}/primaryChannel/messages/{chatMessage%2Did}/replies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. * @return a {@link ChatMessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageCollectionResponse get() { return get(null); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public ChatMessageCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, ChatMessageCollectionResponse::createFromDiscriminatorValue); } /** - * Send a new reply to a chatMessage in a specified channel. + * Create new navigation property to replies for teams * @param body The request body * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body) { return post(body, null); } /** - * Send a new reply to a chatMessage in a specified channel. + * Create new navigation property to replies for teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body, @jak return this.requestAdapter.send(requestInfo, errorMapping, ChatMessage::createFromDiscriminatorValue); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Send a new reply to a chatMessage in a specified channel. + * Create new navigation property to replies for teams * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Send a new reply to a chatMessage in a specified channel. + * Create new navigation property to replies for teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public RepliesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new RepliesRequestBuilder(rawUrl, requestAdapter); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/item/replies/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/item/replies/delta/DeltaRequestBuilder.java index 132515e8a19..52fbc3fd9d9 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/item/replies/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/item/replies/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/teams/{team%2Did}/primaryChannel/messages/{chatMessage%2Did}/replies/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/item/replies/item/ChatMessageItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/item/replies/item/ChatMessageItemRequestBuilder.java index a659f4d76c0..538dad0e980 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/item/replies/item/ChatMessageItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/item/replies/item/ChatMessageItemRequestBuilder.java @@ -100,21 +100,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage get() { return get(null); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -169,7 +167,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -177,7 +175,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -229,7 +227,7 @@ public ChatMessageItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final S public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/item/replies/item/hostedcontents/HostedContentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/item/replies/item/hostedcontents/HostedContentsRequestBuilder.java index df8f93682fc..e4e96750798 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/item/replies/item/hostedcontents/HostedContentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/item/replies/item/hostedcontents/HostedContentsRequestBuilder.java @@ -60,21 +60,19 @@ public HostedContentsRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/teams/{team%2Did}/primaryChannel/messages/{chatMessage%2Did}/replies/{chatMessage%2Did1}/hostedContents{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link ChatMessageHostedContentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContentCollectionResponse get() { return get(null); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageHostedContentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ChatMessageHostedContent post(@jakarta.annotation.Nonnull final ChatMessa return this.requestAdapter.send(requestInfo, errorMapping, ChatMessageHostedContent::createFromDiscriminatorValue); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public HostedContentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new HostedContentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/item/replies/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/item/replies/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java index dcdadd0689c..82f619a1be7 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/item/replies/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/item/replies/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link ChatMessageHostedContent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContent get() { return get(null); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageHostedContent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContent get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public ChatMessageHostedContentItemRequestBuilder withUrl(@jakarta.annotation.No public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/item/replies/item/hostedcontents/item/value/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/item/replies/item/hostedcontents/item/value/ContentRequestBuilder.java index f7c73f72265..f845dca4776 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/item/replies/item/hostedcontents/item/value/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/messages/item/replies/item/hostedcontents/item/value/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * Get media content for the navigation property hostedContents from teams * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/sharedwithteams/SharedWithTeamsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/sharedwithteams/SharedWithTeamsRequestBuilder.java index e586eeae295..41cfc9ebfda 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/sharedwithteams/SharedWithTeamsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/sharedwithteams/SharedWithTeamsRequestBuilder.java @@ -60,21 +60,19 @@ public SharedWithTeamsRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/teams/{team%2Did}/primaryChannel/sharedWithTeams{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of teams that has been shared a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @return a {@link SharedWithChannelTeamInfoCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SharedWithChannelTeamInfoCollectionResponse get() { return get(null); } /** - * Get the list of teams that has been shared a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SharedWithChannelTeamInfoCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SharedWithChannelTeamInfoCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public SharedWithChannelTeamInfo post(@jakarta.annotation.Nonnull final SharedWi return this.requestAdapter.send(requestInfo, errorMapping, SharedWithChannelTeamInfo::createFromDiscriminatorValue); } /** - * Get the list of teams that has been shared a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of teams that has been shared a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public SharedWithTeamsRequestBuilder withUrl(@jakarta.annotation.Nonnull final S return new SharedWithTeamsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of teams that has been shared a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/sharedwithteams/item/SharedWithChannelTeamInfoItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/sharedwithteams/item/SharedWithChannelTeamInfoItemRequestBuilder.java index b6084685096..2088c1c683a 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/sharedwithteams/item/SharedWithChannelTeamInfoItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/sharedwithteams/item/SharedWithChannelTeamInfoItemRequestBuilder.java @@ -55,18 +55,16 @@ public SharedWithChannelTeamInfoItemRequestBuilder(@jakarta.annotation.Nonnull f super(requestAdapter, "{+baseurl}/teams/{team%2Did}/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo%2Did}{?%24expand,%24select}", rawUrl); } /** - * Unshare a channel with a team by deleting the corresponding sharedWithChannelTeamInfo resource. This operation is allowed only for channels with a membershipType value of shared. + * Delete navigation property sharedWithTeams for teams * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Unshare a channel with a team by deleting the corresponding sharedWithChannelTeamInfo resource. This operation is allowed only for channels with a membershipType value of shared. + * Delete navigation property sharedWithTeams for teams * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -75,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get a team that has been shared with a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @return a {@link SharedWithChannelTeamInfo} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SharedWithChannelTeamInfo get() { return get(null); } /** - * Get a team that has been shared with a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SharedWithChannelTeamInfo} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SharedWithChannelTeamInfo get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +120,7 @@ public SharedWithChannelTeamInfo patch(@jakarta.annotation.Nonnull final SharedW return this.requestAdapter.send(requestInfo, errorMapping, SharedWithChannelTeamInfo::createFromDiscriminatorValue); } /** - * Unshare a channel with a team by deleting the corresponding sharedWithChannelTeamInfo resource. This operation is allowed only for channels with a membershipType value of shared. + * Delete navigation property sharedWithTeams for teams * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +128,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Unshare a channel with a team by deleting the corresponding sharedWithChannelTeamInfo resource. This operation is allowed only for channels with a membershipType value of shared. + * Delete navigation property sharedWithTeams for teams * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -144,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get a team that has been shared with a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -152,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a team that has been shared with a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -204,7 +200,7 @@ public SharedWithChannelTeamInfoItemRequestBuilder withUrl(@jakarta.annotation.N public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get a team that has been shared with a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/sharedwithteams/item/allowedmembers/AllowedMembersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/sharedwithteams/item/allowedmembers/AllowedMembersRequestBuilder.java index b25120084b1..3c408721973 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/sharedwithteams/item/allowedmembers/AllowedMembersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/sharedwithteams/item/allowedmembers/AllowedMembersRequestBuilder.java @@ -59,21 +59,19 @@ public AllowedMembersRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/teams/{team%2Did}/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo%2Did}/allowedMembers{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of conversationMembers who can access a shared channel. This method does not return the following conversationMembers from the team:- Users with Guest role- Users who are externally authenticated in the tenant + * A collection of team members who have access to the shared channel. * @return a {@link ConversationMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMemberCollectionResponse get() { return get(null); } /** - * Get the list of conversationMembers who can access a shared channel. This method does not return the following conversationMembers from the team:- Users with Guest role- Users who are externally authenticated in the tenant + * A collection of team members who have access to the shared channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMemberCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public ConversationMemberCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, ConversationMemberCollectionResponse::createFromDiscriminatorValue); } /** - * Get the list of conversationMembers who can access a shared channel. This method does not return the following conversationMembers from the team:- Users with Guest role- Users who are externally authenticated in the tenant + * A collection of team members who have access to the shared channel. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of conversationMembers who can access a shared channel. This method does not return the following conversationMembers from the team:- Users with Guest role- Users who are externally authenticated in the tenant + * A collection of team members who have access to the shared channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public AllowedMembersRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new AllowedMembersRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of conversationMembers who can access a shared channel. This method does not return the following conversationMembers from the team:- Users with Guest role- Users who are externally authenticated in the tenant + * A collection of team members who have access to the shared channel. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/tabs/TabsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/tabs/TabsRequestBuilder.java index 35feba360b5..f2dacea7502 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/tabs/TabsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/tabs/TabsRequestBuilder.java @@ -60,21 +60,19 @@ public TabsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka super(requestAdapter, "{+baseurl}/teams/{team%2Did}/primaryChannel/tabs{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of tabs in the specified channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @return a {@link TeamsTabCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTabCollectionResponse get() { return get(null); } /** - * Retrieve the list of tabs in the specified channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsTabCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTabCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TeamsTabCollectionResponse get(@jakarta.annotation.Nullable final java.ut return this.requestAdapter.send(requestInfo, errorMapping, TeamsTabCollectionResponse::createFromDiscriminatorValue); } /** - * Add (pin) a tab to the specified channel within a team. The app must be preinstalled in the team and have the configurableTabs property defined in the app manifest. + * Create new navigation property to tabs for teams * @param body The request body * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab post(@jakarta.annotation.Nonnull final TeamsTab body) { return post(body, null); } /** - * Add (pin) a tab to the specified channel within a team. The app must be preinstalled in the team and have the configurableTabs property defined in the app manifest. + * Create new navigation property to tabs for teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab post(@jakarta.annotation.Nonnull final TeamsTab body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public TeamsTab post(@jakarta.annotation.Nonnull final TeamsTab body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, TeamsTab::createFromDiscriminatorValue); } /** - * Retrieve the list of tabs in the specified channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of tabs in the specified channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add (pin) a tab to the specified channel within a team. The app must be preinstalled in the team and have the configurableTabs property defined in the app manifest. + * Create new navigation property to tabs for teams * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add (pin) a tab to the specified channel within a team. The app must be preinstalled in the team and have the configurableTabs property defined in the app manifest. + * Create new navigation property to tabs for teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public TabsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr return new TabsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of tabs in the specified channel within a team. + * A collection of all the tabs in the channel. A navigation property. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/tabs/item/TeamsTabItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/tabs/item/TeamsTabItemRequestBuilder.java index 6f487d08cff..3b9b4af0c77 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/tabs/item/TeamsTabItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/primarychannel/tabs/item/TeamsTabItemRequestBuilder.java @@ -46,18 +46,16 @@ public TeamsTabItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/teams/{team%2Did}/primaryChannel/tabs/{teamsTab%2Did}{?%24expand,%24select}", rawUrl); } /** - * Removes (unpins) a tab from the specified channel within a team. + * Delete navigation property tabs for teams * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Removes (unpins) a tab from the specified channel within a team. + * Delete navigation property tabs for teams * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of the specified tab in a channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab get() { return get(null); } /** - * Retrieve the properties and relationships of the specified tab in a channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public TeamsTab get(@jakarta.annotation.Nullable final java.util.function.Consum return this.requestAdapter.send(requestInfo, errorMapping, TeamsTab::createFromDiscriminatorValue); } /** - * Update the properties of the specified tab.This API can be used to configure the content of the tab. + * Update the navigation property tabs in teams * @param body The request body * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab patch(@jakarta.annotation.Nonnull final TeamsTab body) { return patch(body, null); } /** - * Update the properties of the specified tab.This API can be used to configure the content of the tab. + * Update the navigation property tabs in teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab patch(@jakarta.annotation.Nonnull final TeamsTab body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public TeamsTab patch(@jakarta.annotation.Nonnull final TeamsTab body, @jakarta. return this.requestAdapter.send(requestInfo, errorMapping, TeamsTab::createFromDiscriminatorValue); } /** - * Removes (unpins) a tab from the specified channel within a team. + * Delete navigation property tabs for teams * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Removes (unpins) a tab from the specified channel within a team. + * Delete navigation property tabs for teams * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of the specified tab in a channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of the specified tab in a channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of the specified tab.This API can be used to configure the content of the tab. + * Update the navigation property tabs in teams * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of the specified tab.This API can be used to configure the content of the tab. + * Update the navigation property tabs in teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public TeamsTabItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of the specified tab in a channel within a team. + * A collection of all the tabs in the channel. A navigation property. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/schedule/ScheduleRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/schedule/ScheduleRequestBuilder.java index d4e7c7749ac..fa7d64d4a66 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/schedule/ScheduleRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/schedule/ScheduleRequestBuilder.java @@ -145,21 +145,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a schedule object. The schedule creation process conforms to the One API guideline for resource based long running operations (RELO).When clients use the PUT method, if the schedule is provisioned, the operation updates the schedule; otherwise, the operation starts the schedule provisioning process in the background. During schedule provisioning, clients can use the GET method to get the schedule and look at the provisionStatus property for the current state of the provisioning. If the provisioning failed, clients can get additional information from the provisionStatusCode property. Clients can also inspect the configuration of the schedule. + * The schedule of shifts for this team. * @return a {@link Schedule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Schedule get() { return get(null); } /** - * Retrieve the properties and relationships of a schedule object. The schedule creation process conforms to the One API guideline for resource based long running operations (RELO).When clients use the PUT method, if the schedule is provisioned, the operation updates the schedule; otherwise, the operation starts the schedule provisioning process in the background. During schedule provisioning, clients can use the GET method to get the schedule and look at the provisionStatus property for the current state of the provisioning. If the provisioning failed, clients can get additional information from the provisionStatusCode property. Clients can also inspect the configuration of the schedule. + * The schedule of shifts for this team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Schedule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Schedule get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -214,7 +212,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a schedule object. The schedule creation process conforms to the One API guideline for resource based long running operations (RELO).When clients use the PUT method, if the schedule is provisioned, the operation updates the schedule; otherwise, the operation starts the schedule provisioning process in the background. During schedule provisioning, clients can use the GET method to get the schedule and look at the provisionStatus property for the current state of the provisioning. If the provisioning failed, clients can get additional information from the provisionStatusCode property. Clients can also inspect the configuration of the schedule. + * The schedule of shifts for this team. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -222,7 +220,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a schedule object. The schedule creation process conforms to the One API guideline for resource based long running operations (RELO).When clients use the PUT method, if the schedule is provisioned, the operation updates the schedule; otherwise, the operation starts the schedule provisioning process in the background. During schedule provisioning, clients can use the GET method to get the schedule and look at the provisionStatus property for the current state of the provisioning. If the provisioning failed, clients can get additional information from the provisionStatusCode property. Clients can also inspect the configuration of the schedule. + * The schedule of shifts for this team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -274,7 +272,7 @@ public ScheduleRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a schedule object. The schedule creation process conforms to the One API guideline for resource based long running operations (RELO).When clients use the PUT method, if the schedule is provisioned, the operation updates the schedule; otherwise, the operation starts the schedule provisioning process in the background. During schedule provisioning, clients can use the GET method to get the schedule and look at the provisionStatus property for the current state of the provisioning. If the provisioning failed, clients can get additional information from the provisionStatusCode property. Clients can also inspect the configuration of the schedule. + * The schedule of shifts for this team. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/schedule/offershiftrequests/OfferShiftRequestsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/schedule/offershiftrequests/OfferShiftRequestsRequestBuilder.java index 182bf16affd..e3ae8c14b87 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/schedule/offershiftrequests/OfferShiftRequestsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/schedule/offershiftrequests/OfferShiftRequestsRequestBuilder.java @@ -60,21 +60,19 @@ public OfferShiftRequestsRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/teams/{team%2Did}/schedule/offerShiftRequests{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the properties and relationships of all offerShiftRequest objects in a team. + * The offer requests for shifts in the schedule. * @return a {@link OfferShiftRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OfferShiftRequestCollectionResponse get() { return get(null); } /** - * Retrieve the properties and relationships of all offerShiftRequest objects in a team. + * The offer requests for shifts in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OfferShiftRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OfferShiftRequestCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OfferShiftRequestCollectionResponse get(@jakarta.annotation.Nullable fina return this.requestAdapter.send(requestInfo, errorMapping, OfferShiftRequestCollectionResponse::createFromDiscriminatorValue); } /** - * Create an instance of an offerShiftRequest. + * Create new navigation property to offerShiftRequests for teams * @param body The request body * @return a {@link OfferShiftRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OfferShiftRequest post(@jakarta.annotation.Nonnull final OfferShiftRequest body) { return post(body, null); } /** - * Create an instance of an offerShiftRequest. + * Create new navigation property to offerShiftRequests for teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OfferShiftRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OfferShiftRequest post(@jakarta.annotation.Nonnull final OfferShiftRequest body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OfferShiftRequest post(@jakarta.annotation.Nonnull final OfferShiftReques return this.requestAdapter.send(requestInfo, errorMapping, OfferShiftRequest::createFromDiscriminatorValue); } /** - * Retrieve the properties and relationships of all offerShiftRequest objects in a team. + * The offer requests for shifts in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of all offerShiftRequest objects in a team. + * The offer requests for shifts in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an instance of an offerShiftRequest. + * Create new navigation property to offerShiftRequests for teams * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an instance of an offerShiftRequest. + * Create new navigation property to offerShiftRequests for teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public OfferShiftRequestsRequestBuilder withUrl(@jakarta.annotation.Nonnull fina return new OfferShiftRequestsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the properties and relationships of all offerShiftRequest objects in a team. + * The offer requests for shifts in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/schedule/offershiftrequests/item/OfferShiftRequestItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/schedule/offershiftrequests/item/OfferShiftRequestItemRequestBuilder.java index f4a356234d7..f38a16f8dca 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/schedule/offershiftrequests/item/OfferShiftRequestItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/schedule/offershiftrequests/item/OfferShiftRequestItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of an offerShiftRequest object. + * The offer requests for shifts in the schedule. * @return a {@link OfferShiftRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OfferShiftRequest get() { return get(null); } /** - * Retrieve the properties and relationships of an offerShiftRequest object. + * The offer requests for shifts in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OfferShiftRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OfferShiftRequest get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of an offerShiftRequest object. + * The offer requests for shifts in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of an offerShiftRequest object. + * The offer requests for shifts in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public OfferShiftRequestItemRequestBuilder withUrl(@jakarta.annotation.Nonnull f public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of an offerShiftRequest object. + * The offer requests for shifts in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/schedule/openshiftchangerequests/OpenShiftChangeRequestsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/schedule/openshiftchangerequests/OpenShiftChangeRequestsRequestBuilder.java index ce53dabff71..5184dd678bc 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/schedule/openshiftchangerequests/OpenShiftChangeRequestsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/schedule/openshiftchangerequests/OpenShiftChangeRequestsRequestBuilder.java @@ -60,21 +60,19 @@ public OpenShiftChangeRequestsRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/teams/{team%2Did}/schedule/openShiftChangeRequests{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of openShiftChangeRequest objects in a team. + * The open shift requests in the schedule. * @return a {@link OpenShiftChangeRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OpenShiftChangeRequestCollectionResponse get() { return get(null); } /** - * Retrieve a list of openShiftChangeRequest objects in a team. + * The open shift requests in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OpenShiftChangeRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OpenShiftChangeRequestCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OpenShiftChangeRequestCollectionResponse get(@jakarta.annotation.Nullable return this.requestAdapter.send(requestInfo, errorMapping, OpenShiftChangeRequestCollectionResponse::createFromDiscriminatorValue); } /** - * Create instance of an openShiftChangeRequest object. + * Create new navigation property to openShiftChangeRequests for teams * @param body The request body * @return a {@link OpenShiftChangeRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OpenShiftChangeRequest post(@jakarta.annotation.Nonnull final OpenShiftChangeRequest body) { return post(body, null); } /** - * Create instance of an openShiftChangeRequest object. + * Create new navigation property to openShiftChangeRequests for teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OpenShiftChangeRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OpenShiftChangeRequest post(@jakarta.annotation.Nonnull final OpenShiftChangeRequest body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OpenShiftChangeRequest post(@jakarta.annotation.Nonnull final OpenShiftCh return this.requestAdapter.send(requestInfo, errorMapping, OpenShiftChangeRequest::createFromDiscriminatorValue); } /** - * Retrieve a list of openShiftChangeRequest objects in a team. + * The open shift requests in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of openShiftChangeRequest objects in a team. + * The open shift requests in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create instance of an openShiftChangeRequest object. + * Create new navigation property to openShiftChangeRequests for teams * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create instance of an openShiftChangeRequest object. + * Create new navigation property to openShiftChangeRequests for teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public OpenShiftChangeRequestsRequestBuilder withUrl(@jakarta.annotation.Nonnull return new OpenShiftChangeRequestsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of openShiftChangeRequest objects in a team. + * The open shift requests in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/schedule/openshiftchangerequests/item/OpenShiftChangeRequestItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/schedule/openshiftchangerequests/item/OpenShiftChangeRequestItemRequestBuilder.java index 45ac1eec5a3..65b14f53172 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/schedule/openshiftchangerequests/item/OpenShiftChangeRequestItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/schedule/openshiftchangerequests/item/OpenShiftChangeRequestItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of an openShiftChangeRequest object. + * The open shift requests in the schedule. * @return a {@link OpenShiftChangeRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OpenShiftChangeRequest get() { return get(null); } /** - * Retrieve the properties and relationships of an openShiftChangeRequest object. + * The open shift requests in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OpenShiftChangeRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OpenShiftChangeRequest get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of an openShiftChangeRequest object. + * The open shift requests in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of an openShiftChangeRequest object. + * The open shift requests in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public OpenShiftChangeRequestItemRequestBuilder withUrl(@jakarta.annotation.Nonn public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of an openShiftChangeRequest object. + * The open shift requests in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/schedule/openshifts/OpenShiftsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/schedule/openshifts/OpenShiftsRequestBuilder.java index 4c67efc555f..f69813a4bf3 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/schedule/openshifts/OpenShiftsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/schedule/openshifts/OpenShiftsRequestBuilder.java @@ -60,21 +60,19 @@ public OpenShiftsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/teams/{team%2Did}/schedule/openShifts{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List openShift objects in a team. + * The set of open shifts in a scheduling group in the schedule. * @return a {@link OpenShiftCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OpenShiftCollectionResponse get() { return get(null); } /** - * List openShift objects in a team. + * The set of open shifts in a scheduling group in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OpenShiftCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OpenShiftCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OpenShiftCollectionResponse get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, OpenShiftCollectionResponse::createFromDiscriminatorValue); } /** - * Create an instance of an openShift object. + * Create new navigation property to openShifts for teams * @param body The request body * @return a {@link OpenShift} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OpenShift post(@jakarta.annotation.Nonnull final OpenShift body) { return post(body, null); } /** - * Create an instance of an openShift object. + * Create new navigation property to openShifts for teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OpenShift} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OpenShift post(@jakarta.annotation.Nonnull final OpenShift body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OpenShift post(@jakarta.annotation.Nonnull final OpenShift body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, OpenShift::createFromDiscriminatorValue); } /** - * List openShift objects in a team. + * The set of open shifts in a scheduling group in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List openShift objects in a team. + * The set of open shifts in a scheduling group in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an instance of an openShift object. + * Create new navigation property to openShifts for teams * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an instance of an openShift object. + * Create new navigation property to openShifts for teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public OpenShiftsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new OpenShiftsRequestBuilder(rawUrl, requestAdapter); } /** - * List openShift objects in a team. + * The set of open shifts in a scheduling group in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/schedule/openshifts/item/OpenShiftItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/schedule/openshifts/item/OpenShiftItemRequestBuilder.java index e8afe320886..8ca4a6dade0 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/schedule/openshifts/item/OpenShiftItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/schedule/openshifts/item/OpenShiftItemRequestBuilder.java @@ -37,18 +37,16 @@ public OpenShiftItemRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/teams/{team%2Did}/schedule/openShifts/{openShift%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an openShift object. + * Delete navigation property openShifts for teams * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an openShift object. + * Delete navigation property openShifts for teams * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of an openshift object. + * The set of open shifts in a scheduling group in the schedule. * @return a {@link OpenShift} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OpenShift get() { return get(null); } /** - * Retrieve the properties and relationships of an openshift object. + * The set of open shifts in a scheduling group in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OpenShift} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OpenShift get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public OpenShift get(@jakarta.annotation.Nullable final java.util.function.Consu return this.requestAdapter.send(requestInfo, errorMapping, OpenShift::createFromDiscriminatorValue); } /** - * Update the properties of an openShift object. + * Update the navigation property openShifts in teams * @param body The request body * @return a {@link OpenShift} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OpenShift patch(@jakarta.annotation.Nonnull final OpenShift body) { return patch(body, null); } /** - * Update the properties of an openShift object. + * Update the navigation property openShifts in teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OpenShift} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OpenShift patch(@jakarta.annotation.Nonnull final OpenShift body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public OpenShift patch(@jakarta.annotation.Nonnull final OpenShift body, @jakart return this.requestAdapter.send(requestInfo, errorMapping, OpenShift::createFromDiscriminatorValue); } /** - * Delete an openShift object. + * Delete navigation property openShifts for teams * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an openShift object. + * Delete navigation property openShifts for teams * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of an openshift object. + * The set of open shifts in a scheduling group in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of an openshift object. + * The set of open shifts in a scheduling group in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an openShift object. + * Update the navigation property openShifts in teams * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an openShift object. + * Update the navigation property openShifts in teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public OpenShiftItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of an openshift object. + * The set of open shifts in a scheduling group in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/schedule/schedulinggroups/SchedulingGroupsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/schedule/schedulinggroups/SchedulingGroupsRequestBuilder.java index acf59dc9296..114eecc5668 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/schedule/schedulinggroups/SchedulingGroupsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/schedule/schedulinggroups/SchedulingGroupsRequestBuilder.java @@ -60,21 +60,19 @@ public SchedulingGroupsRequestBuilder(@jakarta.annotation.Nonnull final String r super(requestAdapter, "{+baseurl}/teams/{team%2Did}/schedule/schedulingGroups{?%24count,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of schedulingGroups in this schedule. + * The logical grouping of users in the schedule (usually by role). * @return a {@link SchedulingGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SchedulingGroupCollectionResponse get() { return get(null); } /** - * Get the list of schedulingGroups in this schedule. + * The logical grouping of users in the schedule (usually by role). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SchedulingGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SchedulingGroupCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public SchedulingGroupCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, SchedulingGroupCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new schedulingGroup. + * Create new navigation property to schedulingGroups for teams * @param body The request body * @return a {@link SchedulingGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SchedulingGroup post(@jakarta.annotation.Nonnull final SchedulingGroup body) { return post(body, null); } /** - * Create a new schedulingGroup. + * Create new navigation property to schedulingGroups for teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SchedulingGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SchedulingGroup post(@jakarta.annotation.Nonnull final SchedulingGroup body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public SchedulingGroup post(@jakarta.annotation.Nonnull final SchedulingGroup bo return this.requestAdapter.send(requestInfo, errorMapping, SchedulingGroup::createFromDiscriminatorValue); } /** - * Get the list of schedulingGroups in this schedule. + * The logical grouping of users in the schedule (usually by role). * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of schedulingGroups in this schedule. + * The logical grouping of users in the schedule (usually by role). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new schedulingGroup. + * Create new navigation property to schedulingGroups for teams * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new schedulingGroup. + * Create new navigation property to schedulingGroups for teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public SchedulingGroupsRequestBuilder withUrl(@jakarta.annotation.Nonnull final return new SchedulingGroupsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of schedulingGroups in this schedule. + * The logical grouping of users in the schedule (usually by role). */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/schedule/schedulinggroups/item/SchedulingGroupItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/schedule/schedulinggroups/item/SchedulingGroupItemRequestBuilder.java index d179f2db505..99c37f6847d 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/schedule/schedulinggroups/item/SchedulingGroupItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/schedule/schedulinggroups/item/SchedulingGroupItemRequestBuilder.java @@ -37,18 +37,16 @@ public SchedulingGroupItemRequestBuilder(@jakarta.annotation.Nonnull final Strin super(requestAdapter, "{+baseurl}/teams/{team%2Did}/schedule/schedulingGroups/{schedulingGroup%2Did}{?%24select}", rawUrl); } /** - * Mark a schedulingGroup as inactive by setting its isActive property.This method does not remove the schedulingGroup from the schedule. Existing shift instances assigned to the scheduling group remain part of the group. + * Delete navigation property schedulingGroups for teams * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Mark a schedulingGroup as inactive by setting its isActive property.This method does not remove the schedulingGroup from the schedule. Existing shift instances assigned to the scheduling group remain part of the group. + * Delete navigation property schedulingGroups for teams * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a schedulingGroup by ID. + * The logical grouping of users in the schedule (usually by role). * @return a {@link SchedulingGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SchedulingGroup get() { return get(null); } /** - * Retrieve the properties and relationships of a schedulingGroup by ID. + * The logical grouping of users in the schedule (usually by role). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SchedulingGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SchedulingGroup get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public SchedulingGroup get(@jakarta.annotation.Nullable final java.util.function return this.requestAdapter.send(requestInfo, errorMapping, SchedulingGroup::createFromDiscriminatorValue); } /** - * Replace an existing schedulingGroup. If the specified schedulingGroup doesn't exist, this method returns 404 Not found. + * Update the navigation property schedulingGroups in teams * @param body The request body * @return a {@link SchedulingGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SchedulingGroup patch(@jakarta.annotation.Nonnull final SchedulingGroup body) { return patch(body, null); } /** - * Replace an existing schedulingGroup. If the specified schedulingGroup doesn't exist, this method returns 404 Not found. + * Update the navigation property schedulingGroups in teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SchedulingGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SchedulingGroup patch(@jakarta.annotation.Nonnull final SchedulingGroup body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public SchedulingGroup patch(@jakarta.annotation.Nonnull final SchedulingGroup b return this.requestAdapter.send(requestInfo, errorMapping, SchedulingGroup::createFromDiscriminatorValue); } /** - * Mark a schedulingGroup as inactive by setting its isActive property.This method does not remove the schedulingGroup from the schedule. Existing shift instances assigned to the scheduling group remain part of the group. + * Delete navigation property schedulingGroups for teams * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Mark a schedulingGroup as inactive by setting its isActive property.This method does not remove the schedulingGroup from the schedule. Existing shift instances assigned to the scheduling group remain part of the group. + * Delete navigation property schedulingGroups for teams * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a schedulingGroup by ID. + * The logical grouping of users in the schedule (usually by role). * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a schedulingGroup by ID. + * The logical grouping of users in the schedule (usually by role). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Replace an existing schedulingGroup. If the specified schedulingGroup doesn't exist, this method returns 404 Not found. + * Update the navigation property schedulingGroups in teams * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Replace an existing schedulingGroup. If the specified schedulingGroup doesn't exist, this method returns 404 Not found. + * Update the navigation property schedulingGroups in teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public SchedulingGroupItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fin public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a schedulingGroup by ID. + * The logical grouping of users in the schedule (usually by role). */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/schedule/shifts/ShiftsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/schedule/shifts/ShiftsRequestBuilder.java index b5d1bbe8c15..02ad51162d9 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/schedule/shifts/ShiftsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/schedule/shifts/ShiftsRequestBuilder.java @@ -60,21 +60,19 @@ public ShiftsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/teams/{team%2Did}/schedule/shifts{?%24count,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of shift instances in a schedule. + * The shifts in the schedule. * @return a {@link ShiftCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ShiftCollectionResponse get() { return get(null); } /** - * Get the list of shift instances in a schedule. + * The shifts in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ShiftCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ShiftCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public ShiftCollectionResponse get(@jakarta.annotation.Nullable final java.util. return this.requestAdapter.send(requestInfo, errorMapping, ShiftCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new shift instance in a schedule. The duration of a shift cannot be less than 1 minute or longer than 24 hours. + * Create new navigation property to shifts for teams * @param body The request body * @return a {@link Shift} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Shift post(@jakarta.annotation.Nonnull final Shift body) { return post(body, null); } /** - * Create a new shift instance in a schedule. The duration of a shift cannot be less than 1 minute or longer than 24 hours. + * Create new navigation property to shifts for teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Shift} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Shift post(@jakarta.annotation.Nonnull final Shift body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public Shift post(@jakarta.annotation.Nonnull final Shift body, @jakarta.annotat return this.requestAdapter.send(requestInfo, errorMapping, Shift::createFromDiscriminatorValue); } /** - * Get the list of shift instances in a schedule. + * The shifts in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of shift instances in a schedule. + * The shifts in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new shift instance in a schedule. The duration of a shift cannot be less than 1 minute or longer than 24 hours. + * Create new navigation property to shifts for teams * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new shift instance in a schedule. The duration of a shift cannot be less than 1 minute or longer than 24 hours. + * Create new navigation property to shifts for teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ShiftsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw return new ShiftsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of shift instances in a schedule. + * The shifts in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/schedule/shifts/item/ShiftItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/schedule/shifts/item/ShiftItemRequestBuilder.java index 27d773788d5..f14ca61b2e5 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/schedule/shifts/item/ShiftItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/schedule/shifts/item/ShiftItemRequestBuilder.java @@ -37,18 +37,16 @@ public ShiftItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/teams/{team%2Did}/schedule/shifts/{shift%2Did}{?%24select}", rawUrl); } /** - * Delete a shift from the schedule. + * Delete navigation property shifts for teams * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a shift from the schedule. + * Delete navigation property shifts for teams * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a shift object by ID. + * The shifts in the schedule. * @return a {@link Shift} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Shift get() { return get(null); } /** - * Retrieve the properties and relationships of a shift object by ID. + * The shifts in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Shift} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Shift get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public Shift get(@jakarta.annotation.Nullable final java.util.function.Consumer< return this.requestAdapter.send(requestInfo, errorMapping, Shift::createFromDiscriminatorValue); } /** - * Replace an existing shift. If the specified shift doesn't exist, this method returns 404 Not found. The duration of a shift can't be less than 1 minute or longer than 24 hours. + * Update the navigation property shifts in teams * @param body The request body * @return a {@link Shift} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Shift patch(@jakarta.annotation.Nonnull final Shift body) { return patch(body, null); } /** - * Replace an existing shift. If the specified shift doesn't exist, this method returns 404 Not found. The duration of a shift can't be less than 1 minute or longer than 24 hours. + * Update the navigation property shifts in teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Shift} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Shift patch(@jakarta.annotation.Nonnull final Shift body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public Shift patch(@jakarta.annotation.Nonnull final Shift body, @jakarta.annota return this.requestAdapter.send(requestInfo, errorMapping, Shift::createFromDiscriminatorValue); } /** - * Delete a shift from the schedule. + * Delete navigation property shifts for teams * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a shift from the schedule. + * Delete navigation property shifts for teams * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a shift object by ID. + * The shifts in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a shift object by ID. + * The shifts in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Replace an existing shift. If the specified shift doesn't exist, this method returns 404 Not found. The duration of a shift can't be less than 1 minute or longer than 24 hours. + * Update the navigation property shifts in teams * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Replace an existing shift. If the specified shift doesn't exist, this method returns 404 Not found. The duration of a shift can't be less than 1 minute or longer than 24 hours. + * Update the navigation property shifts in teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public ShiftItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a shift object by ID. + * The shifts in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/schedule/swapshiftschangerequests/SwapShiftsChangeRequestsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/schedule/swapshiftschangerequests/SwapShiftsChangeRequestsRequestBuilder.java index 0528303a75e..9804cf2c310 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/schedule/swapshiftschangerequests/SwapShiftsChangeRequestsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/schedule/swapshiftschangerequests/SwapShiftsChangeRequestsRequestBuilder.java @@ -60,21 +60,19 @@ public SwapShiftsChangeRequestsRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/teams/{team%2Did}/schedule/swapShiftsChangeRequests{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of swapShiftsChangeRequest objects in the team. + * The swap requests for shifts in the schedule. * @return a {@link SwapShiftsChangeRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SwapShiftsChangeRequestCollectionResponse get() { return get(null); } /** - * Retrieve a list of swapShiftsChangeRequest objects in the team. + * The swap requests for shifts in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SwapShiftsChangeRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SwapShiftsChangeRequestCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public SwapShiftsChangeRequestCollectionResponse get(@jakarta.annotation.Nullabl return this.requestAdapter.send(requestInfo, errorMapping, SwapShiftsChangeRequestCollectionResponse::createFromDiscriminatorValue); } /** - * Create an instance of a swapShiftsChangeRequest object. + * Create new navigation property to swapShiftsChangeRequests for teams * @param body The request body * @return a {@link SwapShiftsChangeRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SwapShiftsChangeRequest post(@jakarta.annotation.Nonnull final SwapShiftsChangeRequest body) { return post(body, null); } /** - * Create an instance of a swapShiftsChangeRequest object. + * Create new navigation property to swapShiftsChangeRequests for teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SwapShiftsChangeRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SwapShiftsChangeRequest post(@jakarta.annotation.Nonnull final SwapShiftsChangeRequest body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public SwapShiftsChangeRequest post(@jakarta.annotation.Nonnull final SwapShifts return this.requestAdapter.send(requestInfo, errorMapping, SwapShiftsChangeRequest::createFromDiscriminatorValue); } /** - * Retrieve a list of swapShiftsChangeRequest objects in the team. + * The swap requests for shifts in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of swapShiftsChangeRequest objects in the team. + * The swap requests for shifts in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an instance of a swapShiftsChangeRequest object. + * Create new navigation property to swapShiftsChangeRequests for teams * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an instance of a swapShiftsChangeRequest object. + * Create new navigation property to swapShiftsChangeRequests for teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public SwapShiftsChangeRequestsRequestBuilder withUrl(@jakarta.annotation.Nonnul return new SwapShiftsChangeRequestsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of swapShiftsChangeRequest objects in the team. + * The swap requests for shifts in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/schedule/swapshiftschangerequests/item/SwapShiftsChangeRequestItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/schedule/swapshiftschangerequests/item/SwapShiftsChangeRequestItemRequestBuilder.java index 7a1d14dd836..06ff17d91e7 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/schedule/swapshiftschangerequests/item/SwapShiftsChangeRequestItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/schedule/swapshiftschangerequests/item/SwapShiftsChangeRequestItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a swapShiftsChangeRequest object. + * The swap requests for shifts in the schedule. * @return a {@link SwapShiftsChangeRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SwapShiftsChangeRequest get() { return get(null); } /** - * Retrieve the properties and relationships of a swapShiftsChangeRequest object. + * The swap requests for shifts in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SwapShiftsChangeRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SwapShiftsChangeRequest get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a swapShiftsChangeRequest object. + * The swap requests for shifts in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a swapShiftsChangeRequest object. + * The swap requests for shifts in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public SwapShiftsChangeRequestItemRequestBuilder withUrl(@jakarta.annotation.Non public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a swapShiftsChangeRequest object. + * The swap requests for shifts in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/schedule/timeoffreasons/TimeOffReasonsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/schedule/timeoffreasons/TimeOffReasonsRequestBuilder.java index aeb6439a988..dc9ae1629b1 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/schedule/timeoffreasons/TimeOffReasonsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/schedule/timeoffreasons/TimeOffReasonsRequestBuilder.java @@ -60,21 +60,19 @@ public TimeOffReasonsRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/teams/{team%2Did}/schedule/timeOffReasons{?%24count,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of timeOffReasons in a schedule. + * The set of reasons for a time off in the schedule. * @return a {@link TimeOffReasonCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOffReasonCollectionResponse get() { return get(null); } /** - * Get the list of timeOffReasons in a schedule. + * The set of reasons for a time off in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TimeOffReasonCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOffReasonCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TimeOffReasonCollectionResponse get(@jakarta.annotation.Nullable final ja return this.requestAdapter.send(requestInfo, errorMapping, TimeOffReasonCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new timeOffReason. + * Create new navigation property to timeOffReasons for teams * @param body The request body * @return a {@link TimeOffReason} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOffReason post(@jakarta.annotation.Nonnull final TimeOffReason body) { return post(body, null); } /** - * Create a new timeOffReason. + * Create new navigation property to timeOffReasons for teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TimeOffReason} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOffReason post(@jakarta.annotation.Nonnull final TimeOffReason body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public TimeOffReason post(@jakarta.annotation.Nonnull final TimeOffReason body, return this.requestAdapter.send(requestInfo, errorMapping, TimeOffReason::createFromDiscriminatorValue); } /** - * Get the list of timeOffReasons in a schedule. + * The set of reasons for a time off in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of timeOffReasons in a schedule. + * The set of reasons for a time off in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new timeOffReason. + * Create new navigation property to timeOffReasons for teams * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new timeOffReason. + * Create new navigation property to timeOffReasons for teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public TimeOffReasonsRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new TimeOffReasonsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of timeOffReasons in a schedule. + * The set of reasons for a time off in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/schedule/timeoffreasons/item/TimeOffReasonItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/schedule/timeoffreasons/item/TimeOffReasonItemRequestBuilder.java index 996fc3574a2..9916326bd01 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/schedule/timeoffreasons/item/TimeOffReasonItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/schedule/timeoffreasons/item/TimeOffReasonItemRequestBuilder.java @@ -37,18 +37,16 @@ public TimeOffReasonItemRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/teams/{team%2Did}/schedule/timeOffReasons/{timeOffReason%2Did}{?%24select}", rawUrl); } /** - * Mark a timeOffReason as inactive by setting the isActive property. Every team must include at least one timeoff reason. This method doesn't remove the specified timeOffReason instance. timeOffItem instances that have been assigned this reason remain assigned to this reason. + * Delete navigation property timeOffReasons for teams * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Mark a timeOffReason as inactive by setting the isActive property. Every team must include at least one timeoff reason. This method doesn't remove the specified timeOffReason instance. timeOffItem instances that have been assigned this reason remain assigned to this reason. + * Delete navigation property timeOffReasons for teams * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a timeOffReason object by ID. + * The set of reasons for a time off in the schedule. * @return a {@link TimeOffReason} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOffReason get() { return get(null); } /** - * Retrieve the properties and relationships of a timeOffReason object by ID. + * The set of reasons for a time off in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TimeOffReason} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOffReason get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public TimeOffReason get(@jakarta.annotation.Nullable final java.util.function.C return this.requestAdapter.send(requestInfo, errorMapping, TimeOffReason::createFromDiscriminatorValue); } /** - * Replace an existing timeOffReason. If the specified timeOffReason doesn't exist, this method returns 404 Not found. + * Update the navigation property timeOffReasons in teams * @param body The request body * @return a {@link TimeOffReason} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOffReason patch(@jakarta.annotation.Nonnull final TimeOffReason body) { return patch(body, null); } /** - * Replace an existing timeOffReason. If the specified timeOffReason doesn't exist, this method returns 404 Not found. + * Update the navigation property timeOffReasons in teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TimeOffReason} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOffReason patch(@jakarta.annotation.Nonnull final TimeOffReason body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public TimeOffReason patch(@jakarta.annotation.Nonnull final TimeOffReason body, return this.requestAdapter.send(requestInfo, errorMapping, TimeOffReason::createFromDiscriminatorValue); } /** - * Mark a timeOffReason as inactive by setting the isActive property. Every team must include at least one timeoff reason. This method doesn't remove the specified timeOffReason instance. timeOffItem instances that have been assigned this reason remain assigned to this reason. + * Delete navigation property timeOffReasons for teams * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Mark a timeOffReason as inactive by setting the isActive property. Every team must include at least one timeoff reason. This method doesn't remove the specified timeOffReason instance. timeOffItem instances that have been assigned this reason remain assigned to this reason. + * Delete navigation property timeOffReasons for teams * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a timeOffReason object by ID. + * The set of reasons for a time off in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a timeOffReason object by ID. + * The set of reasons for a time off in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Replace an existing timeOffReason. If the specified timeOffReason doesn't exist, this method returns 404 Not found. + * Update the navigation property timeOffReasons in teams * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Replace an existing timeOffReason. If the specified timeOffReason doesn't exist, this method returns 404 Not found. + * Update the navigation property timeOffReasons in teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public TimeOffReasonItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a timeOffReason object by ID. + * The set of reasons for a time off in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/schedule/timeoffrequests/TimeOffRequestsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/schedule/timeoffrequests/TimeOffRequestsRequestBuilder.java index 067fdabc6a7..7f725a5354e 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/schedule/timeoffrequests/TimeOffRequestsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/schedule/timeoffrequests/TimeOffRequestsRequestBuilder.java @@ -60,21 +60,19 @@ public TimeOffRequestsRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/teams/{team%2Did}/schedule/timeOffRequests{?%24count,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of timeOffRequest objects in the team. + * The time off requests in the schedule. * @return a {@link TimeOffRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOffRequestCollectionResponse get() { return get(null); } /** - * Retrieve a list of timeOffRequest objects in the team. + * The time off requests in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TimeOffRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOffRequestCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public TimeOffRequest post(@jakarta.annotation.Nonnull final TimeOffRequest body return this.requestAdapter.send(requestInfo, errorMapping, TimeOffRequest::createFromDiscriminatorValue); } /** - * Retrieve a list of timeOffRequest objects in the team. + * The time off requests in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of timeOffRequest objects in the team. + * The time off requests in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public TimeOffRequestsRequestBuilder withUrl(@jakarta.annotation.Nonnull final S return new TimeOffRequestsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of timeOffRequest objects in the team. + * The time off requests in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/schedule/timeoffrequests/item/TimeOffRequestItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/schedule/timeoffrequests/item/TimeOffRequestItemRequestBuilder.java index e043f71a8e9..4eb425d3124 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/schedule/timeoffrequests/item/TimeOffRequestItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/schedule/timeoffrequests/item/TimeOffRequestItemRequestBuilder.java @@ -37,18 +37,16 @@ public TimeOffRequestItemRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/teams/{team%2Did}/schedule/timeOffRequests/{timeOffRequest%2Did}{?%24select}", rawUrl); } /** - * Delete a timeOffRequest object. + * Delete navigation property timeOffRequests for teams * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a timeOffRequest object. + * Delete navigation property timeOffRequests for teams * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a timeoffrequest object. + * The time off requests in the schedule. * @return a {@link TimeOffRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOffRequest get() { return get(null); } /** - * Retrieve the properties and relationships of a timeoffrequest object. + * The time off requests in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TimeOffRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOffRequest get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -106,7 +102,7 @@ public TimeOffRequest patch(@jakarta.annotation.Nonnull final TimeOffRequest bod return this.requestAdapter.send(requestInfo, errorMapping, TimeOffRequest::createFromDiscriminatorValue); } /** - * Delete a timeOffRequest object. + * Delete navigation property timeOffRequests for teams * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -114,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a timeOffRequest object. + * Delete navigation property timeOffRequests for teams * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a timeoffrequest object. + * The time off requests in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a timeoffrequest object. + * The time off requests in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public TimeOffRequestItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fina public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a timeoffrequest object. + * The time off requests in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/schedule/timesoff/TimesOffRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/schedule/timesoff/TimesOffRequestBuilder.java index d3d88e7499f..61e9af41d9c 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/schedule/timesoff/TimesOffRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/schedule/timesoff/TimesOffRequestBuilder.java @@ -60,21 +60,19 @@ public TimesOffRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/teams/{team%2Did}/schedule/timesOff{?%24count,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of timeOff instances in a schedule. + * The instances of times off in the schedule. * @return a {@link TimeOffCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOffCollectionResponse get() { return get(null); } /** - * Get the list of timeOff instances in a schedule. + * The instances of times off in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TimeOffCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOffCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TimeOffCollectionResponse get(@jakarta.annotation.Nullable final java.uti return this.requestAdapter.send(requestInfo, errorMapping, TimeOffCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new timeOff instance in a schedule. + * Create new navigation property to timesOff for teams * @param body The request body * @return a {@link TimeOff} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOff post(@jakarta.annotation.Nonnull final TimeOff body) { return post(body, null); } /** - * Create a new timeOff instance in a schedule. + * Create new navigation property to timesOff for teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TimeOff} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOff post(@jakarta.annotation.Nonnull final TimeOff body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public TimeOff post(@jakarta.annotation.Nonnull final TimeOff body, @jakarta.ann return this.requestAdapter.send(requestInfo, errorMapping, TimeOff::createFromDiscriminatorValue); } /** - * Get the list of timeOff instances in a schedule. + * The instances of times off in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of timeOff instances in a schedule. + * The instances of times off in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new timeOff instance in a schedule. + * Create new navigation property to timesOff for teams * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new timeOff instance in a schedule. + * Create new navigation property to timesOff for teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public TimesOffRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new TimesOffRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of timeOff instances in a schedule. + * The instances of times off in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/schedule/timesoff/item/TimeOffItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/schedule/timesoff/item/TimeOffItemRequestBuilder.java index 1bfaaaf9036..7b7e0dea524 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/schedule/timesoff/item/TimeOffItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/schedule/timesoff/item/TimeOffItemRequestBuilder.java @@ -37,18 +37,16 @@ public TimeOffItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/teams/{team%2Did}/schedule/timesOff/{timeOff%2Did}{?%24select}", rawUrl); } /** - * Delete a timeOff instance from a schedule. + * Delete navigation property timesOff for teams * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a timeOff instance from a schedule. + * Delete navigation property timesOff for teams * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a timeOff object by ID. + * The instances of times off in the schedule. * @return a {@link TimeOff} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOff get() { return get(null); } /** - * Retrieve the properties and relationships of a timeOff object by ID. + * The instances of times off in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TimeOff} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOff get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public TimeOff get(@jakarta.annotation.Nullable final java.util.function.Consume return this.requestAdapter.send(requestInfo, errorMapping, TimeOff::createFromDiscriminatorValue); } /** - * Replace an existing timeOff object. If the specified timeOff object doesn't exist, this method returns 404 Not found. + * Update the navigation property timesOff in teams * @param body The request body * @return a {@link TimeOff} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOff patch(@jakarta.annotation.Nonnull final TimeOff body) { return patch(body, null); } /** - * Replace an existing timeOff object. If the specified timeOff object doesn't exist, this method returns 404 Not found. + * Update the navigation property timesOff in teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TimeOff} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOff patch(@jakarta.annotation.Nonnull final TimeOff body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public TimeOff patch(@jakarta.annotation.Nonnull final TimeOff body, @jakarta.an return this.requestAdapter.send(requestInfo, errorMapping, TimeOff::createFromDiscriminatorValue); } /** - * Delete a timeOff instance from a schedule. + * Delete navigation property timesOff for teams * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a timeOff instance from a schedule. + * Delete navigation property timesOff for teams * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a timeOff object by ID. + * The instances of times off in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a timeOff object by ID. + * The instances of times off in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Replace an existing timeOff object. If the specified timeOff object doesn't exist, this method returns 404 Not found. + * Update the navigation property timesOff in teams * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Replace an existing timeOff object. If the specified timeOff object doesn't exist, this method returns 404 Not found. + * Update the navigation property timesOff in teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public TimeOffItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a timeOff object by ID. + * The instances of times off in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/tags/TagsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/tags/TagsRequestBuilder.java index c3e34bcafe7..8fbd3461145 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/tags/TagsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/tags/TagsRequestBuilder.java @@ -60,21 +60,19 @@ public TagsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka super(requestAdapter, "{+baseurl}/teams/{team%2Did}/tags{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the tag objects and their properties. + * The tags associated with the team. * @return a {@link TeamworkTagCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkTagCollectionResponse get() { return get(null); } /** - * Get a list of the tag objects and their properties. + * The tags associated with the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamworkTagCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkTagCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TeamworkTagCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, TeamworkTagCollectionResponse::createFromDiscriminatorValue); } /** - * Create a standard tag for members in a team. + * Create new navigation property to tags for teams * @param body The request body * @return a {@link TeamworkTag} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkTag post(@jakarta.annotation.Nonnull final TeamworkTag body) { return post(body, null); } /** - * Create a standard tag for members in a team. + * Create new navigation property to tags for teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamworkTag} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkTag post(@jakarta.annotation.Nonnull final TeamworkTag body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public TeamworkTag post(@jakarta.annotation.Nonnull final TeamworkTag body, @jak return this.requestAdapter.send(requestInfo, errorMapping, TeamworkTag::createFromDiscriminatorValue); } /** - * Get a list of the tag objects and their properties. + * The tags associated with the team. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the tag objects and their properties. + * The tags associated with the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a standard tag for members in a team. + * Create new navigation property to tags for teams * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a standard tag for members in a team. + * Create new navigation property to tags for teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public TagsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr return new TagsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the tag objects and their properties. + * The tags associated with the team. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/tags/item/TeamworkTagItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/tags/item/TeamworkTagItemRequestBuilder.java index dce73ab90ec..e2dfc6031f6 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/tags/item/TeamworkTagItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/tags/item/TeamworkTagItemRequestBuilder.java @@ -46,18 +46,16 @@ public TeamworkTagItemRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/teams/{team%2Did}/tags/{teamworkTag%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a tag object permanently. + * Delete navigation property tags for teams * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a tag object permanently. + * Delete navigation property tags for teams * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a tag object. + * The tags associated with the team. * @return a {@link TeamworkTag} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkTag get() { return get(null); } /** - * Read the properties and relationships of a tag object. + * The tags associated with the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamworkTag} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkTag get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public TeamworkTag get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.send(requestInfo, errorMapping, TeamworkTag::createFromDiscriminatorValue); } /** - * Update the properties of a tag object. + * Update the navigation property tags in teams * @param body The request body * @return a {@link TeamworkTag} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkTag patch(@jakarta.annotation.Nonnull final TeamworkTag body) { return patch(body, null); } /** - * Update the properties of a tag object. + * Update the navigation property tags in teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamworkTag} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkTag patch(@jakarta.annotation.Nonnull final TeamworkTag body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public TeamworkTag patch(@jakarta.annotation.Nonnull final TeamworkTag body, @ja return this.requestAdapter.send(requestInfo, errorMapping, TeamworkTag::createFromDiscriminatorValue); } /** - * Delete a tag object permanently. + * Delete navigation property tags for teams * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a tag object permanently. + * Delete navigation property tags for teams * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a tag object. + * The tags associated with the team. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a tag object. + * The tags associated with the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a tag object. + * Update the navigation property tags in teams * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a tag object. + * Update the navigation property tags in teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public TeamworkTagItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final S public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a tag object. + * The tags associated with the team. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/tags/item/members/MembersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/tags/item/members/MembersRequestBuilder.java index c9f4c712db1..22826dc16bc 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/tags/item/members/MembersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/tags/item/members/MembersRequestBuilder.java @@ -60,21 +60,19 @@ public MembersRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/teams/{team%2Did}/tags/{teamworkTag%2Did}/members{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the members of a standard tag in a team and their properties. + * Users assigned to the tag. * @return a {@link TeamworkTagMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkTagMemberCollectionResponse get() { return get(null); } /** - * Get a list of the members of a standard tag in a team and their properties. + * Users assigned to the tag. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamworkTagMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkTagMemberCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TeamworkTagMemberCollectionResponse get(@jakarta.annotation.Nullable fina return this.requestAdapter.send(requestInfo, errorMapping, TeamworkTagMemberCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new teamworkTagMember object in a team. + * Create new navigation property to members for teams * @param body The request body * @return a {@link TeamworkTagMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkTagMember post(@jakarta.annotation.Nonnull final TeamworkTagMember body) { return post(body, null); } /** - * Create a new teamworkTagMember object in a team. + * Create new navigation property to members for teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamworkTagMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkTagMember post(@jakarta.annotation.Nonnull final TeamworkTagMember body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public TeamworkTagMember post(@jakarta.annotation.Nonnull final TeamworkTagMembe return this.requestAdapter.send(requestInfo, errorMapping, TeamworkTagMember::createFromDiscriminatorValue); } /** - * Get a list of the members of a standard tag in a team and their properties. + * Users assigned to the tag. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the members of a standard tag in a team and their properties. + * Users assigned to the tag. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new teamworkTagMember object in a team. + * Create new navigation property to members for teams * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new teamworkTagMember object in a team. + * Create new navigation property to members for teams * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public MembersRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new MembersRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the members of a standard tag in a team and their properties. + * Users assigned to the tag. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teams/item/tags/item/members/item/TeamworkTagMemberItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teams/item/tags/item/members/item/TeamworkTagMemberItemRequestBuilder.java index 68ad754429c..df8bd9ac9eb 100644 --- a/src/main/java/com/microsoft/graph/generated/teams/item/tags/item/members/item/TeamworkTagMemberItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teams/item/tags/item/members/item/TeamworkTagMemberItemRequestBuilder.java @@ -37,18 +37,16 @@ public TeamworkTagMemberItemRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/teams/{team%2Did}/tags/{teamworkTag%2Did}/members/{teamworkTagMember%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a member from a standard tag in a team. + * Delete navigation property members for teams * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a member from a standard tag in a team. + * Delete navigation property members for teams * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the properties and relationships of a member of a standard tag in a team. + * Users assigned to the tag. * @return a {@link TeamworkTagMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkTagMember get() { return get(null); } /** - * Get the properties and relationships of a member of a standard tag in a team. + * Users assigned to the tag. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamworkTagMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkTagMember get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -106,7 +102,7 @@ public TeamworkTagMember patch(@jakarta.annotation.Nonnull final TeamworkTagMemb return this.requestAdapter.send(requestInfo, errorMapping, TeamworkTagMember::createFromDiscriminatorValue); } /** - * Delete a member from a standard tag in a team. + * Delete navigation property members for teams * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -114,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a member from a standard tag in a team. + * Delete navigation property members for teams * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the properties and relationships of a member of a standard tag in a team. + * Users assigned to the tag. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the properties and relationships of a member of a standard tag in a team. + * Users assigned to the tag. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public TeamworkTagMemberItemRequestBuilder withUrl(@jakarta.annotation.Nonnull f public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the properties and relationships of a member of a standard tag in a team. + * Users assigned to the tag. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teamwork/deletedchats/DeletedChatsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teamwork/deletedchats/DeletedChatsRequestBuilder.java index fe1f15042de..b7586278a75 100644 --- a/src/main/java/com/microsoft/graph/generated/teamwork/deletedchats/DeletedChatsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teamwork/deletedchats/DeletedChatsRequestBuilder.java @@ -60,7 +60,7 @@ public DeletedChatsRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/teamwork/deletedChats{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Read the properties and relationships of a deletedChat object. + * A collection of deleted chats. * @return a {@link DeletedChatCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public DeletedChatCollectionResponse get() { return get(null); } /** - * Read the properties and relationships of a deletedChat object. + * A collection of deleted chats. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeletedChatCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public DeletedChat post(@jakarta.annotation.Nonnull final DeletedChat body, @jak return this.requestAdapter.send(requestInfo, errorMapping, DeletedChat::createFromDiscriminatorValue); } /** - * Read the properties and relationships of a deletedChat object. + * A collection of deleted chats. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a deletedChat object. + * A collection of deleted chats. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public DeletedChatsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri return new DeletedChatsRequestBuilder(rawUrl, requestAdapter); } /** - * Read the properties and relationships of a deletedChat object. + * A collection of deleted chats. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teamwork/deletedchats/item/DeletedChatItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teamwork/deletedchats/item/DeletedChatItemRequestBuilder.java index 61cb21d1888..1b97e57dfbd 100644 --- a/src/main/java/com/microsoft/graph/generated/teamwork/deletedchats/item/DeletedChatItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teamwork/deletedchats/item/DeletedChatItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a deletedChat object. + * A collection of deleted chats. * @return a {@link DeletedChat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeletedChat get() { return get(null); } /** - * Read the properties and relationships of a deletedChat object. + * A collection of deleted chats. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeletedChat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeletedChat get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a deletedChat object. + * A collection of deleted chats. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a deletedChat object. + * A collection of deleted chats. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public DeletedChatItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final S public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a deletedChat object. + * A collection of deleted chats. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/DeletedTeamsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/DeletedTeamsRequestBuilder.java index 8ec60b78dde..5461d6ef5bf 100644 --- a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/DeletedTeamsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/DeletedTeamsRequestBuilder.java @@ -69,21 +69,19 @@ public DeletedTeamsRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/teamwork/deletedTeams{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the deletedTeam objects and their properties. + * The deleted team. * @return a {@link DeletedTeamCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeletedTeamCollectionResponse get() { return get(null); } /** - * Get a list of the deletedTeam objects and their properties. + * The deleted team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeletedTeamCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeletedTeamCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -118,7 +116,7 @@ public DeletedTeam post(@jakarta.annotation.Nonnull final DeletedTeam body, @jak return this.requestAdapter.send(requestInfo, errorMapping, DeletedTeam::createFromDiscriminatorValue); } /** - * Get a list of the deletedTeam objects and their properties. + * The deleted team. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -126,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the deletedTeam objects and their properties. + * The deleted team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -172,7 +170,7 @@ public DeletedTeamsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri return new DeletedTeamsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the deletedTeam objects and their properties. + * The deleted team. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/getallmessages/GetAllMessagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/getallmessages/GetAllMessagesRequestBuilder.java index 5b6cb113b9a..055773fb9f4 100644 --- a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/getallmessages/GetAllMessagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/getallmessages/GetAllMessagesRequestBuilder.java @@ -36,19 +36,21 @@ public GetAllMessagesRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/teamwork/deletedTeams/{deletedTeam%2Did}/channels/getAllMessages(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top,model*}", rawUrl); } /** - * Invoke function getAllMessages + * Retrieve messages across all channels in a team, including text, audio, and video conversations. To learn more about how to use the Microsoft Teams export APIs to export content, see Export content with the Microsoft Teams export APIs. * @return a {@link GetAllMessagesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetAllMessagesGetResponse get() { return get(null); } /** - * Invoke function getAllMessages + * Retrieve messages across all channels in a team, including text, audio, and video conversations. To learn more about how to use the Microsoft Teams export APIs to export content, see Export content with the Microsoft Teams export APIs. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GetAllMessagesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetAllMessagesGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public GetAllMessagesGetResponse get(@jakarta.annotation.Nullable final java.uti return this.requestAdapter.send(requestInfo, errorMapping, GetAllMessagesGetResponse::createFromDiscriminatorValue); } /** - * Invoke function getAllMessages + * Retrieve messages across all channels in a team, including text, audio, and video conversations. To learn more about how to use the Microsoft Teams export APIs to export content, see Export content with the Microsoft Teams export APIs. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getAllMessages + * Retrieve messages across all channels in a team, including text, audio, and video conversations. To learn more about how to use the Microsoft Teams export APIs to export content, see Export content with the Microsoft Teams export APIs. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public GetAllMessagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new GetAllMessagesRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function getAllMessages + * Retrieve messages across all channels in a team, including text, audio, and video conversations. To learn more about how to use the Microsoft Teams export APIs to export content, see Export content with the Microsoft Teams export APIs. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/doesuserhaveaccessuseriduseridtenantidtenantiduserprincipalnameuserprincipalname/DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/doesuserhaveaccessuseriduseridtenantidtenantiduserprincipalnameuserprincipalname/DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameRequestBuilder.java index 64a7038ae8d..93688f2f247 100644 --- a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/doesuserhaveaccessuseriduseridtenantidtenantiduserprincipalnameuserprincipalname/DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/doesuserhaveaccessuseriduseridtenantidtenantiduserprincipalnameuserprincipalname/DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameRequestBuilder.java @@ -36,19 +36,21 @@ public DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrinci super(requestAdapter, "{+baseurl}/teamwork/deletedTeams/{deletedTeam%2Did}/channels/{channel%2Did}/doesUserHaveAccess(userId='@userId',tenantId='@tenantId',userPrincipalName='@userPrincipalName'){?tenantId*,userId*,userPrincipalName*}", rawUrl); } /** - * Invoke function doesUserHaveAccess + * Determine whether a user has access to a shared channel. * @return a {@link DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameGetResponse get() { return get(null); } /** - * Invoke function doesUserHaveAccess + * Determine whether a user has access to a shared channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrinci return this.requestAdapter.send(requestInfo, errorMapping, DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameGetResponse::createFromDiscriminatorValue); } /** - * Invoke function doesUserHaveAccess + * Determine whether a user has access to a shared channel. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function doesUserHaveAccess + * Determine whether a user has access to a shared channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrinci return new DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function doesUserHaveAccess + * Determine whether a user has access to a shared channel. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/filesfolder/FilesFolderRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/filesfolder/FilesFolderRequestBuilder.java index 2766f171b14..448e8e85d82 100644 --- a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/filesfolder/FilesFolderRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/filesfolder/FilesFolderRequestBuilder.java @@ -46,21 +46,19 @@ public FilesFolderRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/teamwork/deletedTeams/{deletedTeam%2Did}/channels/{channel%2Did}/filesFolder{?%24expand,%24select}", rawUrl); } /** - * Get the metadata for the location where the files of a channel are stored. + * Metadata for the location where the channel's files are stored. * @return a {@link DriveItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DriveItem get() { return get(null); } /** - * Get the metadata for the location where the files of a channel are stored. + * Metadata for the location where the channel's files are stored. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DriveItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DriveItem get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -70,7 +68,7 @@ public DriveItem get(@jakarta.annotation.Nullable final java.util.function.Consu return this.requestAdapter.send(requestInfo, errorMapping, DriveItem::createFromDiscriminatorValue); } /** - * Get the metadata for the location where the files of a channel are stored. + * Metadata for the location where the channel's files are stored. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -78,7 +76,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the metadata for the location where the files of a channel are stored. + * Metadata for the location where the channel's files are stored. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -100,7 +98,7 @@ public FilesFolderRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new FilesFolderRequestBuilder(rawUrl, requestAdapter); } /** - * Get the metadata for the location where the files of a channel are stored. + * Metadata for the location where the channel's files are stored. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/filesfolder/content/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/filesfolder/content/ContentRequestBuilder.java index 46a7f448321..10800a955f2 100644 --- a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/filesfolder/content/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/filesfolder/content/ContentRequestBuilder.java @@ -41,7 +41,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * The content stream, if the item represents a file. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -52,7 +51,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/members/MembersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/members/MembersRequestBuilder.java index ba19872c31f..eecba3a2da4 100644 --- a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/members/MembersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/members/MembersRequestBuilder.java @@ -69,21 +69,19 @@ public MembersRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/teamwork/deletedTeams/{deletedTeam%2Did}/channels/{channel%2Did}/members{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of conversationMembers from a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve the channel member list. + * A collection of membership records associated with the channel. * @return a {@link ConversationMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMemberCollectionResponse get() { return get(null); } /** - * Retrieve a list of conversationMembers from a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve the channel member list. + * A collection of membership records associated with the channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMemberCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public ConversationMemberCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, ConversationMemberCollectionResponse::createFromDiscriminatorValue); } /** - * Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Create new navigation property to members for teamwork * @param body The request body * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember post(@jakarta.annotation.Nonnull final ConversationMember body) { return post(body, null); } /** - * Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Create new navigation property to members for teamwork * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember post(@jakarta.annotation.Nonnull final ConversationMember body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public ConversationMember post(@jakarta.annotation.Nonnull final ConversationMem return this.requestAdapter.send(requestInfo, errorMapping, ConversationMember::createFromDiscriminatorValue); } /** - * Retrieve a list of conversationMembers from a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve the channel member list. + * A collection of membership records associated with the channel. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of conversationMembers from a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve the channel member list. + * A collection of membership records associated with the channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Create new navigation property to members for teamwork * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Create new navigation property to members for teamwork * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public MembersRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new MembersRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of conversationMembers from a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve the channel member list. + * A collection of membership records associated with the channel. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/members/item/ConversationMemberItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/members/item/ConversationMemberItemRequestBuilder.java index f99454e4817..59561da6dc4 100644 --- a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/members/item/ConversationMemberItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/members/item/ConversationMemberItemRequestBuilder.java @@ -37,18 +37,16 @@ public ConversationMemberItemRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/teamwork/deletedTeams/{deletedTeam%2Did}/channels/{channel%2Did}/members/{conversationMember%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Delete navigation property members for teamwork * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Delete navigation property members for teamwork * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get a conversationMember from a channel. + * A collection of membership records associated with the channel. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember get() { return get(null); } /** - * Get a conversationMember from a channel. + * A collection of membership records associated with the channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public ConversationMember get(@jakarta.annotation.Nullable final java.util.funct return this.requestAdapter.send(requestInfo, errorMapping, ConversationMember::createFromDiscriminatorValue); } /** - * Update the role of a conversationMember in a team or channel. + * Update the navigation property members in teamwork * @param body The request body * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember patch(@jakarta.annotation.Nonnull final ConversationMember body) { return patch(body, null); } /** - * Update the role of a conversationMember in a team or channel. + * Update the navigation property members in teamwork * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember patch(@jakarta.annotation.Nonnull final ConversationMember body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public ConversationMember patch(@jakarta.annotation.Nonnull final ConversationMe return this.requestAdapter.send(requestInfo, errorMapping, ConversationMember::createFromDiscriminatorValue); } /** - * Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Delete navigation property members for teamwork * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Delete navigation property members for teamwork * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get a conversationMember from a channel. + * A collection of membership records associated with the channel. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a conversationMember from a channel. + * A collection of membership records associated with the channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the role of a conversationMember in a team or channel. + * Update the navigation property members in teamwork * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the role of a conversationMember in a team or channel. + * Update the navigation property members in teamwork * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public ConversationMemberItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get a conversationMember from a channel. + * A collection of membership records associated with the channel. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/MessagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/MessagesRequestBuilder.java index 0349a7bc070..0485296f832 100644 --- a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/MessagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/MessagesRequestBuilder.java @@ -69,21 +69,19 @@ public MessagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/teamwork/deletedTeams/{deletedTeam%2Did}/channels/{channel%2Did}/messages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of messages (without the replies) in a channel of a team. To get the replies for a message, call the list message replies or the get message reply API. This method supports federation. To list channel messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the channel. A navigation property. Nullable. * @return a {@link ChatMessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageCollectionResponse get() { return get(null); } /** - * Retrieve the list of messages (without the replies) in a channel of a team. To get the replies for a message, call the list message replies or the get message reply API. This method supports federation. To list channel messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the channel. A navigation property. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public ChatMessageCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, ChatMessageCollectionResponse::createFromDiscriminatorValue); } /** - * Send a new chatMessage in the specified channel or a chat. + * Create new navigation property to messages for teamwork * @param body The request body * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body) { return post(body, null); } /** - * Send a new chatMessage in the specified channel or a chat. + * Create new navigation property to messages for teamwork * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body, @jak return this.requestAdapter.send(requestInfo, errorMapping, ChatMessage::createFromDiscriminatorValue); } /** - * Retrieve the list of messages (without the replies) in a channel of a team. To get the replies for a message, call the list message replies or the get message reply API. This method supports federation. To list channel messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the channel. A navigation property. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of messages (without the replies) in a channel of a team. To get the replies for a message, call the list message replies or the get message reply API. This method supports federation. To list channel messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the channel. A navigation property. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Send a new chatMessage in the specified channel or a chat. + * Create new navigation property to messages for teamwork * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Send a new chatMessage in the specified channel or a chat. + * Create new navigation property to messages for teamwork * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public MessagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new MessagesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of messages (without the replies) in a channel of a team. To get the replies for a message, call the list message replies or the get message reply API. This method supports federation. To list channel messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the channel. A navigation property. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/delta/DeltaRequestBuilder.java index ea4e55e5a73..ab38e4fee0e 100644 --- a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/teamwork/deletedTeams/{deletedTeam%2Did}/channels/{channel%2Did}/messages/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/item/ChatMessageItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/item/ChatMessageItemRequestBuilder.java index 0fdb377aeeb..ce4c7793662 100644 --- a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/item/ChatMessageItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/item/ChatMessageItemRequestBuilder.java @@ -109,21 +109,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the channel. A navigation property. Nullable. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage get() { return get(null); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the channel. A navigation property. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,23 +131,21 @@ public ChatMessage get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.send(requestInfo, errorMapping, ChatMessage::createFromDiscriminatorValue); } /** - * Update a chatMessage object. Except for the policyViolation property, all properties of a chatMessage can be updated in delegated permissions scenarios.Only the policyViolation property of a chatMessage can be updated in application permissions scenarios. The update only works for chats where members are Microsoft Teams users. If one of the participants is using Skype, the operation fails. This method doesn't support federation. Only the user in the tenant who sent the message can perform data loss prevention (DLP) updates on the specified chat message. + * Update the navigation property messages in teamwork * @param body The request body * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage patch(@jakarta.annotation.Nonnull final ChatMessage body) { return patch(body, null); } /** - * Update a chatMessage object. Except for the policyViolation property, all properties of a chatMessage can be updated in delegated permissions scenarios.Only the policyViolation property of a chatMessage can be updated in application permissions scenarios. The update only works for chats where members are Microsoft Teams users. If one of the participants is using Skype, the operation fails. This method doesn't support federation. Only the user in the tenant who sent the message can perform data loss prevention (DLP) updates on the specified chat message. + * Update the navigation property messages in teamwork * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage patch(@jakarta.annotation.Nonnull final ChatMessage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -180,7 +176,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the channel. A navigation property. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -188,7 +184,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the channel. A navigation property. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -200,7 +196,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update a chatMessage object. Except for the policyViolation property, all properties of a chatMessage can be updated in delegated permissions scenarios.Only the policyViolation property of a chatMessage can be updated in application permissions scenarios. The update only works for chats where members are Microsoft Teams users. If one of the participants is using Skype, the operation fails. This method doesn't support federation. Only the user in the tenant who sent the message can perform data loss prevention (DLP) updates on the specified chat message. + * Update the navigation property messages in teamwork * @param body The request body * @return a {@link RequestInformation} */ @@ -209,7 +205,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update a chatMessage object. Except for the policyViolation property, all properties of a chatMessage can be updated in delegated permissions scenarios.Only the policyViolation property of a chatMessage can be updated in application permissions scenarios. The update only works for chats where members are Microsoft Teams users. If one of the participants is using Skype, the operation fails. This method doesn't support federation. Only the user in the tenant who sent the message can perform data loss prevention (DLP) updates on the specified chat message. + * Update the navigation property messages in teamwork * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -240,7 +236,7 @@ public ChatMessageItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final S public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the channel. A navigation property. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/item/hostedcontents/HostedContentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/item/hostedcontents/HostedContentsRequestBuilder.java index c51de254ad2..52242ee0f41 100644 --- a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/item/hostedcontents/HostedContentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/item/hostedcontents/HostedContentsRequestBuilder.java @@ -60,21 +60,19 @@ public HostedContentsRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/teamwork/deletedTeams/{deletedTeam%2Did}/channels/{channel%2Did}/messages/{chatMessage%2Did}/hostedContents{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link ChatMessageHostedContentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContentCollectionResponse get() { return get(null); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageHostedContentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ChatMessageHostedContent post(@jakarta.annotation.Nonnull final ChatMessa return this.requestAdapter.send(requestInfo, errorMapping, ChatMessageHostedContent::createFromDiscriminatorValue); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public HostedContentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new HostedContentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java index 216ee64bcb9..1960cbac3e3 100644 --- a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link ChatMessageHostedContent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContent get() { return get(null); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageHostedContent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContent get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public ChatMessageHostedContentItemRequestBuilder withUrl(@jakarta.annotation.No public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/item/hostedcontents/item/value/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/item/hostedcontents/item/value/ContentRequestBuilder.java index 696fef56d4e..1be969355d5 100644 --- a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/item/hostedcontents/item/value/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/item/hostedcontents/item/value/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * Get media content for the navigation property hostedContents from teamwork * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/item/replies/RepliesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/item/replies/RepliesRequestBuilder.java index 7b3b0532000..a340d90a2c1 100644 --- a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/item/replies/RepliesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/item/replies/RepliesRequestBuilder.java @@ -69,21 +69,19 @@ public RepliesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/teamwork/deletedTeams/{deletedTeam%2Did}/channels/{channel%2Did}/messages/{chatMessage%2Did}/replies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. * @return a {@link ChatMessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageCollectionResponse get() { return get(null); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public ChatMessageCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, ChatMessageCollectionResponse::createFromDiscriminatorValue); } /** - * Send a new reply to a chatMessage in a specified channel. + * Create new navigation property to replies for teamwork * @param body The request body * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body) { return post(body, null); } /** - * Send a new reply to a chatMessage in a specified channel. + * Create new navigation property to replies for teamwork * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body, @jak return this.requestAdapter.send(requestInfo, errorMapping, ChatMessage::createFromDiscriminatorValue); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Send a new reply to a chatMessage in a specified channel. + * Create new navigation property to replies for teamwork * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Send a new reply to a chatMessage in a specified channel. + * Create new navigation property to replies for teamwork * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public RepliesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new RepliesRequestBuilder(rawUrl, requestAdapter); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/item/replies/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/item/replies/delta/DeltaRequestBuilder.java index 17262e571bb..3596b63481f 100644 --- a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/item/replies/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/item/replies/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/teamwork/deletedTeams/{deletedTeam%2Did}/channels/{channel%2Did}/messages/{chatMessage%2Did}/replies/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/item/replies/item/ChatMessageItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/item/replies/item/ChatMessageItemRequestBuilder.java index d6fb21f7db9..a64109e861f 100644 --- a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/item/replies/item/ChatMessageItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/item/replies/item/ChatMessageItemRequestBuilder.java @@ -100,21 +100,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage get() { return get(null); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -169,7 +167,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -177,7 +175,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -229,7 +227,7 @@ public ChatMessageItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final S public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/item/replies/item/hostedcontents/HostedContentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/item/replies/item/hostedcontents/HostedContentsRequestBuilder.java index 2fa6c60ffb1..bb806d10873 100644 --- a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/item/replies/item/hostedcontents/HostedContentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/item/replies/item/hostedcontents/HostedContentsRequestBuilder.java @@ -60,21 +60,19 @@ public HostedContentsRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/teamwork/deletedTeams/{deletedTeam%2Did}/channels/{channel%2Did}/messages/{chatMessage%2Did}/replies/{chatMessage%2Did1}/hostedContents{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link ChatMessageHostedContentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContentCollectionResponse get() { return get(null); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageHostedContentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ChatMessageHostedContent post(@jakarta.annotation.Nonnull final ChatMessa return this.requestAdapter.send(requestInfo, errorMapping, ChatMessageHostedContent::createFromDiscriminatorValue); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public HostedContentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new HostedContentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/item/replies/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/item/replies/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java index 426d38656ab..f896d78d660 100644 --- a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/item/replies/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/item/replies/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link ChatMessageHostedContent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContent get() { return get(null); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageHostedContent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContent get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public ChatMessageHostedContentItemRequestBuilder withUrl(@jakarta.annotation.No public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/item/replies/item/hostedcontents/item/value/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/item/replies/item/hostedcontents/item/value/ContentRequestBuilder.java index 48a5563a1d6..99c73c94c12 100644 --- a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/item/replies/item/hostedcontents/item/value/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/messages/item/replies/item/hostedcontents/item/value/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * Get media content for the navigation property hostedContents from teamwork * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/sharedwithteams/SharedWithTeamsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/sharedwithteams/SharedWithTeamsRequestBuilder.java index 2f86135990d..a306af1449f 100644 --- a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/sharedwithteams/SharedWithTeamsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/sharedwithteams/SharedWithTeamsRequestBuilder.java @@ -60,21 +60,19 @@ public SharedWithTeamsRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/teamwork/deletedTeams/{deletedTeam%2Did}/channels/{channel%2Did}/sharedWithTeams{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of teams that has been shared a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @return a {@link SharedWithChannelTeamInfoCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SharedWithChannelTeamInfoCollectionResponse get() { return get(null); } /** - * Get the list of teams that has been shared a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SharedWithChannelTeamInfoCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SharedWithChannelTeamInfoCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public SharedWithChannelTeamInfo post(@jakarta.annotation.Nonnull final SharedWi return this.requestAdapter.send(requestInfo, errorMapping, SharedWithChannelTeamInfo::createFromDiscriminatorValue); } /** - * Get the list of teams that has been shared a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of teams that has been shared a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public SharedWithTeamsRequestBuilder withUrl(@jakarta.annotation.Nonnull final S return new SharedWithTeamsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of teams that has been shared a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/sharedwithteams/item/SharedWithChannelTeamInfoItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/sharedwithteams/item/SharedWithChannelTeamInfoItemRequestBuilder.java index 76253cd2136..d956f79bfe9 100644 --- a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/sharedwithteams/item/SharedWithChannelTeamInfoItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/sharedwithteams/item/SharedWithChannelTeamInfoItemRequestBuilder.java @@ -55,18 +55,16 @@ public SharedWithChannelTeamInfoItemRequestBuilder(@jakarta.annotation.Nonnull f super(requestAdapter, "{+baseurl}/teamwork/deletedTeams/{deletedTeam%2Did}/channels/{channel%2Did}/sharedWithTeams/{sharedWithChannelTeamInfo%2Did}{?%24expand,%24select}", rawUrl); } /** - * Unshare a channel with a team by deleting the corresponding sharedWithChannelTeamInfo resource. This operation is allowed only for channels with a membershipType value of shared. + * Delete navigation property sharedWithTeams for teamwork * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Unshare a channel with a team by deleting the corresponding sharedWithChannelTeamInfo resource. This operation is allowed only for channels with a membershipType value of shared. + * Delete navigation property sharedWithTeams for teamwork * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -75,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get a team that has been shared with a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @return a {@link SharedWithChannelTeamInfo} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SharedWithChannelTeamInfo get() { return get(null); } /** - * Get a team that has been shared with a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SharedWithChannelTeamInfo} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SharedWithChannelTeamInfo get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +120,7 @@ public SharedWithChannelTeamInfo patch(@jakarta.annotation.Nonnull final SharedW return this.requestAdapter.send(requestInfo, errorMapping, SharedWithChannelTeamInfo::createFromDiscriminatorValue); } /** - * Unshare a channel with a team by deleting the corresponding sharedWithChannelTeamInfo resource. This operation is allowed only for channels with a membershipType value of shared. + * Delete navigation property sharedWithTeams for teamwork * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +128,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Unshare a channel with a team by deleting the corresponding sharedWithChannelTeamInfo resource. This operation is allowed only for channels with a membershipType value of shared. + * Delete navigation property sharedWithTeams for teamwork * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -144,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get a team that has been shared with a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -152,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a team that has been shared with a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -204,7 +200,7 @@ public SharedWithChannelTeamInfoItemRequestBuilder withUrl(@jakarta.annotation.N public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get a team that has been shared with a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/sharedwithteams/item/allowedmembers/AllowedMembersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/sharedwithteams/item/allowedmembers/AllowedMembersRequestBuilder.java index 44f9eec1fb7..7803c312ef5 100644 --- a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/sharedwithteams/item/allowedmembers/AllowedMembersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/sharedwithteams/item/allowedmembers/AllowedMembersRequestBuilder.java @@ -59,21 +59,19 @@ public AllowedMembersRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/teamwork/deletedTeams/{deletedTeam%2Did}/channels/{channel%2Did}/sharedWithTeams/{sharedWithChannelTeamInfo%2Did}/allowedMembers{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of conversationMembers who can access a shared channel. This method does not return the following conversationMembers from the team:- Users with Guest role- Users who are externally authenticated in the tenant + * A collection of team members who have access to the shared channel. * @return a {@link ConversationMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMemberCollectionResponse get() { return get(null); } /** - * Get the list of conversationMembers who can access a shared channel. This method does not return the following conversationMembers from the team:- Users with Guest role- Users who are externally authenticated in the tenant + * A collection of team members who have access to the shared channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMemberCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public ConversationMemberCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, ConversationMemberCollectionResponse::createFromDiscriminatorValue); } /** - * Get the list of conversationMembers who can access a shared channel. This method does not return the following conversationMembers from the team:- Users with Guest role- Users who are externally authenticated in the tenant + * A collection of team members who have access to the shared channel. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of conversationMembers who can access a shared channel. This method does not return the following conversationMembers from the team:- Users with Guest role- Users who are externally authenticated in the tenant + * A collection of team members who have access to the shared channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public AllowedMembersRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new AllowedMembersRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of conversationMembers who can access a shared channel. This method does not return the following conversationMembers from the team:- Users with Guest role- Users who are externally authenticated in the tenant + * A collection of team members who have access to the shared channel. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/tabs/TabsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/tabs/TabsRequestBuilder.java index d4d58cf180f..8feb8f87855 100644 --- a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/tabs/TabsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/tabs/TabsRequestBuilder.java @@ -60,21 +60,19 @@ public TabsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka super(requestAdapter, "{+baseurl}/teamwork/deletedTeams/{deletedTeam%2Did}/channels/{channel%2Did}/tabs{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of tabs in the specified channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @return a {@link TeamsTabCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTabCollectionResponse get() { return get(null); } /** - * Retrieve the list of tabs in the specified channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsTabCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTabCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TeamsTabCollectionResponse get(@jakarta.annotation.Nullable final java.ut return this.requestAdapter.send(requestInfo, errorMapping, TeamsTabCollectionResponse::createFromDiscriminatorValue); } /** - * Add (pin) a tab to the specified channel within a team. The app must be preinstalled in the team and have the configurableTabs property defined in the app manifest. + * Create new navigation property to tabs for teamwork * @param body The request body * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab post(@jakarta.annotation.Nonnull final TeamsTab body) { return post(body, null); } /** - * Add (pin) a tab to the specified channel within a team. The app must be preinstalled in the team and have the configurableTabs property defined in the app manifest. + * Create new navigation property to tabs for teamwork * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab post(@jakarta.annotation.Nonnull final TeamsTab body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public TeamsTab post(@jakarta.annotation.Nonnull final TeamsTab body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, TeamsTab::createFromDiscriminatorValue); } /** - * Retrieve the list of tabs in the specified channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of tabs in the specified channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add (pin) a tab to the specified channel within a team. The app must be preinstalled in the team and have the configurableTabs property defined in the app manifest. + * Create new navigation property to tabs for teamwork * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add (pin) a tab to the specified channel within a team. The app must be preinstalled in the team and have the configurableTabs property defined in the app manifest. + * Create new navigation property to tabs for teamwork * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public TabsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr return new TabsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of tabs in the specified channel within a team. + * A collection of all the tabs in the channel. A navigation property. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/tabs/item/TeamsTabItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/tabs/item/TeamsTabItemRequestBuilder.java index b3df0bc7e47..bde5b6776d2 100644 --- a/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/tabs/item/TeamsTabItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teamwork/deletedteams/item/channels/item/tabs/item/TeamsTabItemRequestBuilder.java @@ -46,18 +46,16 @@ public TeamsTabItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/teamwork/deletedTeams/{deletedTeam%2Did}/channels/{channel%2Did}/tabs/{teamsTab%2Did}{?%24expand,%24select}", rawUrl); } /** - * Removes (unpins) a tab from the specified channel within a team. + * Delete navigation property tabs for teamwork * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Removes (unpins) a tab from the specified channel within a team. + * Delete navigation property tabs for teamwork * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of the specified tab in a channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab get() { return get(null); } /** - * Retrieve the properties and relationships of the specified tab in a channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public TeamsTab get(@jakarta.annotation.Nullable final java.util.function.Consum return this.requestAdapter.send(requestInfo, errorMapping, TeamsTab::createFromDiscriminatorValue); } /** - * Update the properties of the specified tab.This API can be used to configure the content of the tab. + * Update the navigation property tabs in teamwork * @param body The request body * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab patch(@jakarta.annotation.Nonnull final TeamsTab body) { return patch(body, null); } /** - * Update the properties of the specified tab.This API can be used to configure the content of the tab. + * Update the navigation property tabs in teamwork * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab patch(@jakarta.annotation.Nonnull final TeamsTab body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public TeamsTab patch(@jakarta.annotation.Nonnull final TeamsTab body, @jakarta. return this.requestAdapter.send(requestInfo, errorMapping, TeamsTab::createFromDiscriminatorValue); } /** - * Removes (unpins) a tab from the specified channel within a team. + * Delete navigation property tabs for teamwork * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Removes (unpins) a tab from the specified channel within a team. + * Delete navigation property tabs for teamwork * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of the specified tab in a channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of the specified tab in a channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of the specified tab.This API can be used to configure the content of the tab. + * Update the navigation property tabs in teamwork * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of the specified tab.This API can be used to configure the content of the tab. + * Update the navigation property tabs in teamwork * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public TeamsTabItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of the specified tab in a channel within a team. + * A collection of all the tabs in the channel. A navigation property. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teamwork/teamsappsettings/TeamsAppSettingsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teamwork/teamsappsettings/TeamsAppSettingsRequestBuilder.java index cc3dd1798b9..82663300bb1 100644 --- a/src/main/java/com/microsoft/graph/generated/teamwork/teamsappsettings/TeamsAppSettingsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teamwork/teamsappsettings/TeamsAppSettingsRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the tenant-wide teamsAppSettings for all Teams apps in the tenant. + * Represents tenant-wide settings for all Teams apps in the tenant. * @return a {@link TeamsAppSettings} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsAppSettings get() { return get(null); } /** - * Get the tenant-wide teamsAppSettings for all Teams apps in the tenant. + * Represents tenant-wide settings for all Teams apps in the tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsAppSettings} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsAppSettings get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public TeamsAppSettings get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, TeamsAppSettings::createFromDiscriminatorValue); } /** - * Update the tenant-wide teamsAppSettings for all Teams apps in the tenant. + * Update the navigation property teamsAppSettings in teamwork * @param body The request body * @return a {@link TeamsAppSettings} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsAppSettings patch(@jakarta.annotation.Nonnull final TeamsAppSettings body) { return patch(body, null); } /** - * Update the tenant-wide teamsAppSettings for all Teams apps in the tenant. + * Update the navigation property teamsAppSettings in teamwork * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsAppSettings} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsAppSettings patch(@jakarta.annotation.Nonnull final TeamsAppSettings body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the tenant-wide teamsAppSettings for all Teams apps in the tenant. + * Represents tenant-wide settings for all Teams apps in the tenant. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the tenant-wide teamsAppSettings for all Teams apps in the tenant. + * Represents tenant-wide settings for all Teams apps in the tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the tenant-wide teamsAppSettings for all Teams apps in the tenant. + * Update the navigation property teamsAppSettings in teamwork * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the tenant-wide teamsAppSettings for all Teams apps in the tenant. + * Update the navigation property teamsAppSettings in teamwork * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public TeamsAppSettingsRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the tenant-wide teamsAppSettings for all Teams apps in the tenant. + * Represents tenant-wide settings for all Teams apps in the tenant. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teamwork/workforceintegrations/WorkforceIntegrationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teamwork/workforceintegrations/WorkforceIntegrationsRequestBuilder.java index 0d02367ffd4..0ce188661ae 100644 --- a/src/main/java/com/microsoft/graph/generated/teamwork/workforceintegrations/WorkforceIntegrationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teamwork/workforceintegrations/WorkforceIntegrationsRequestBuilder.java @@ -60,21 +60,19 @@ public WorkforceIntegrationsRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/teamwork/workforceIntegrations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of workforceIntegration objects. + * Get workforceIntegrations from teamwork * @return a {@link WorkforceIntegrationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkforceIntegrationCollectionResponse get() { return get(null); } /** - * Retrieve a list of workforceIntegration objects. + * Get workforceIntegrations from teamwork * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkforceIntegrationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkforceIntegrationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public WorkforceIntegrationCollectionResponse get(@jakarta.annotation.Nullable f return this.requestAdapter.send(requestInfo, errorMapping, WorkforceIntegrationCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new workforceIntegration object.You can set up which entities you want to receive Shifts synchronous change notifications on and set entities to configure filtering by WFM rules eligibility for, including swap requests. + * Create new navigation property to workforceIntegrations for teamwork * @param body The request body * @return a {@link WorkforceIntegration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkforceIntegration post(@jakarta.annotation.Nonnull final WorkforceIntegration body) { return post(body, null); } /** - * Create a new workforceIntegration object.You can set up which entities you want to receive Shifts synchronous change notifications on and set entities to configure filtering by WFM rules eligibility for, including swap requests. + * Create new navigation property to workforceIntegrations for teamwork * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkforceIntegration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkforceIntegration post(@jakarta.annotation.Nonnull final WorkforceIntegration body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public WorkforceIntegration post(@jakarta.annotation.Nonnull final WorkforceInte return this.requestAdapter.send(requestInfo, errorMapping, WorkforceIntegration::createFromDiscriminatorValue); } /** - * Retrieve a list of workforceIntegration objects. + * Get workforceIntegrations from teamwork * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of workforceIntegration objects. + * Get workforceIntegrations from teamwork * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new workforceIntegration object.You can set up which entities you want to receive Shifts synchronous change notifications on and set entities to configure filtering by WFM rules eligibility for, including swap requests. + * Create new navigation property to workforceIntegrations for teamwork * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new workforceIntegration object.You can set up which entities you want to receive Shifts synchronous change notifications on and set entities to configure filtering by WFM rules eligibility for, including swap requests. + * Create new navigation property to workforceIntegrations for teamwork * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public WorkforceIntegrationsRequestBuilder withUrl(@jakarta.annotation.Nonnull f return new WorkforceIntegrationsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of workforceIntegration objects. + * Get workforceIntegrations from teamwork */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/teamwork/workforceintegrations/item/WorkforceIntegrationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/teamwork/workforceintegrations/item/WorkforceIntegrationItemRequestBuilder.java index f12964c452a..322b330a108 100644 --- a/src/main/java/com/microsoft/graph/generated/teamwork/workforceintegrations/item/WorkforceIntegrationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/teamwork/workforceintegrations/item/WorkforceIntegrationItemRequestBuilder.java @@ -37,18 +37,16 @@ public WorkforceIntegrationItemRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/teamwork/workforceIntegrations/{workforceIntegration%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an instance of a workforceIntegration. + * Delete navigation property workforceIntegrations for teamwork * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an instance of a workforceIntegration. + * Delete navigation property workforceIntegrations for teamwork * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a workforceIntegration object. + * Get workforceIntegrations from teamwork * @return a {@link WorkforceIntegration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkforceIntegration get() { return get(null); } /** - * Retrieve the properties and relationships of a workforceIntegration object. + * Get workforceIntegrations from teamwork * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkforceIntegration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkforceIntegration get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public WorkforceIntegration get(@jakarta.annotation.Nullable final java.util.fun return this.requestAdapter.send(requestInfo, errorMapping, WorkforceIntegration::createFromDiscriminatorValue); } /** - * Update the properties of a workforceIntegration object. + * Update the navigation property workforceIntegrations in teamwork * @param body The request body * @return a {@link WorkforceIntegration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkforceIntegration patch(@jakarta.annotation.Nonnull final WorkforceIntegration body) { return patch(body, null); } /** - * Update the properties of a workforceIntegration object. + * Update the navigation property workforceIntegrations in teamwork * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WorkforceIntegration} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WorkforceIntegration patch(@jakarta.annotation.Nonnull final WorkforceIntegration body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public WorkforceIntegration patch(@jakarta.annotation.Nonnull final WorkforceInt return this.requestAdapter.send(requestInfo, errorMapping, WorkforceIntegration::createFromDiscriminatorValue); } /** - * Delete an instance of a workforceIntegration. + * Delete navigation property workforceIntegrations for teamwork * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an instance of a workforceIntegration. + * Delete navigation property workforceIntegrations for teamwork * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a workforceIntegration object. + * Get workforceIntegrations from teamwork * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a workforceIntegration object. + * Get workforceIntegrations from teamwork * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a workforceIntegration object. + * Update the navigation property workforceIntegrations in teamwork * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a workforceIntegration object. + * Update the navigation property workforceIntegrations in teamwork * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public WorkforceIntegrationItemRequestBuilder withUrl(@jakarta.annotation.Nonnul public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a workforceIntegration object. + * Get workforceIntegrations from teamwork */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadmincustomers/DelegatedAdminCustomersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadmincustomers/DelegatedAdminCustomersRequestBuilder.java index 6db6faeb9b4..af958b19444 100644 --- a/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadmincustomers/DelegatedAdminCustomersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadmincustomers/DelegatedAdminCustomersRequestBuilder.java @@ -60,21 +60,19 @@ public DelegatedAdminCustomersRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/tenantRelationships/delegatedAdminCustomers{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the delegatedAdminCustomer objects and their properties. + * The customer who has a delegated admin relationship with a Microsoft partner. * @return a {@link DelegatedAdminCustomerCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DelegatedAdminCustomerCollectionResponse get() { return get(null); } /** - * Get a list of the delegatedAdminCustomer objects and their properties. + * The customer who has a delegated admin relationship with a Microsoft partner. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DelegatedAdminCustomerCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DelegatedAdminCustomerCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public DelegatedAdminCustomer post(@jakarta.annotation.Nonnull final DelegatedAd return this.requestAdapter.send(requestInfo, errorMapping, DelegatedAdminCustomer::createFromDiscriminatorValue); } /** - * Get a list of the delegatedAdminCustomer objects and their properties. + * The customer who has a delegated admin relationship with a Microsoft partner. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the delegatedAdminCustomer objects and their properties. + * The customer who has a delegated admin relationship with a Microsoft partner. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public DelegatedAdminCustomersRequestBuilder withUrl(@jakarta.annotation.Nonnull return new DelegatedAdminCustomersRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the delegatedAdminCustomer objects and their properties. + * The customer who has a delegated admin relationship with a Microsoft partner. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadmincustomers/item/DelegatedAdminCustomerItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadmincustomers/item/DelegatedAdminCustomerItemRequestBuilder.java index 7973f78fdec..73bd8afaf6b 100644 --- a/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadmincustomers/item/DelegatedAdminCustomerItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadmincustomers/item/DelegatedAdminCustomerItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties of a delegatedAdminCustomer object. + * The customer who has a delegated admin relationship with a Microsoft partner. * @return a {@link DelegatedAdminCustomer} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DelegatedAdminCustomer get() { return get(null); } /** - * Read the properties of a delegatedAdminCustomer object. + * The customer who has a delegated admin relationship with a Microsoft partner. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DelegatedAdminCustomer} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DelegatedAdminCustomer get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties of a delegatedAdminCustomer object. + * The customer who has a delegated admin relationship with a Microsoft partner. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties of a delegatedAdminCustomer object. + * The customer who has a delegated admin relationship with a Microsoft partner. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public DelegatedAdminCustomerItemRequestBuilder withUrl(@jakarta.annotation.Nonn public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties of a delegatedAdminCustomer object. + * The customer who has a delegated admin relationship with a Microsoft partner. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadmincustomers/item/servicemanagementdetails/ServiceManagementDetailsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadmincustomers/item/servicemanagementdetails/ServiceManagementDetailsRequestBuilder.java index d0f4da5b9c5..6cd2ec9e501 100644 --- a/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadmincustomers/item/servicemanagementdetails/ServiceManagementDetailsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadmincustomers/item/servicemanagementdetails/ServiceManagementDetailsRequestBuilder.java @@ -60,21 +60,19 @@ public ServiceManagementDetailsRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer%2Did}/serviceManagementDetails{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the delegatedAdminServiceManagementDetail objects and their properties. + * Contains the management details of a service in the customer tenant that's managed by delegated administration. * @return a {@link DelegatedAdminServiceManagementDetailCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DelegatedAdminServiceManagementDetailCollectionResponse get() { return get(null); } /** - * Get a list of the delegatedAdminServiceManagementDetail objects and their properties. + * Contains the management details of a service in the customer tenant that's managed by delegated administration. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DelegatedAdminServiceManagementDetailCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DelegatedAdminServiceManagementDetailCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public DelegatedAdminServiceManagementDetail post(@jakarta.annotation.Nonnull fi return this.requestAdapter.send(requestInfo, errorMapping, DelegatedAdminServiceManagementDetail::createFromDiscriminatorValue); } /** - * Get a list of the delegatedAdminServiceManagementDetail objects and their properties. + * Contains the management details of a service in the customer tenant that's managed by delegated administration. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the delegatedAdminServiceManagementDetail objects and their properties. + * Contains the management details of a service in the customer tenant that's managed by delegated administration. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public ServiceManagementDetailsRequestBuilder withUrl(@jakarta.annotation.Nonnul return new ServiceManagementDetailsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the delegatedAdminServiceManagementDetail objects and their properties. + * Contains the management details of a service in the customer tenant that's managed by delegated administration. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadminrelationships/DelegatedAdminRelationshipsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadminrelationships/DelegatedAdminRelationshipsRequestBuilder.java index 4894dca7e4e..4b3c0956e9a 100644 --- a/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadminrelationships/DelegatedAdminRelationshipsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadminrelationships/DelegatedAdminRelationshipsRequestBuilder.java @@ -60,21 +60,19 @@ public DelegatedAdminRelationshipsRequestBuilder(@jakarta.annotation.Nonnull fin super(requestAdapter, "{+baseurl}/tenantRelationships/delegatedAdminRelationships{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the delegatedAdminRelationship objects and their properties. + * The details of the delegated administrative privileges that a Microsoft partner has in a customer tenant. * @return a {@link DelegatedAdminRelationshipCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DelegatedAdminRelationshipCollectionResponse get() { return get(null); } /** - * Get a list of the delegatedAdminRelationship objects and their properties. + * The details of the delegated administrative privileges that a Microsoft partner has in a customer tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DelegatedAdminRelationshipCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DelegatedAdminRelationshipCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public DelegatedAdminRelationshipCollectionResponse get(@jakarta.annotation.Null return this.requestAdapter.send(requestInfo, errorMapping, DelegatedAdminRelationshipCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new delegatedAdminRelationship object. + * Create new navigation property to delegatedAdminRelationships for tenantRelationships * @param body The request body * @return a {@link DelegatedAdminRelationship} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DelegatedAdminRelationship post(@jakarta.annotation.Nonnull final DelegatedAdminRelationship body) { return post(body, null); } /** - * Create a new delegatedAdminRelationship object. + * Create new navigation property to delegatedAdminRelationships for tenantRelationships * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DelegatedAdminRelationship} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DelegatedAdminRelationship post(@jakarta.annotation.Nonnull final DelegatedAdminRelationship body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public DelegatedAdminRelationship post(@jakarta.annotation.Nonnull final Delegat return this.requestAdapter.send(requestInfo, errorMapping, DelegatedAdminRelationship::createFromDiscriminatorValue); } /** - * Get a list of the delegatedAdminRelationship objects and their properties. + * The details of the delegated administrative privileges that a Microsoft partner has in a customer tenant. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the delegatedAdminRelationship objects and their properties. + * The details of the delegated administrative privileges that a Microsoft partner has in a customer tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new delegatedAdminRelationship object. + * Create new navigation property to delegatedAdminRelationships for tenantRelationships * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new delegatedAdminRelationship object. + * Create new navigation property to delegatedAdminRelationships for tenantRelationships * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public DelegatedAdminRelationshipsRequestBuilder withUrl(@jakarta.annotation.Non return new DelegatedAdminRelationshipsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the delegatedAdminRelationship objects and their properties. + * The details of the delegated administrative privileges that a Microsoft partner has in a customer tenant. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadminrelationships/item/DelegatedAdminRelationshipItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadminrelationships/item/DelegatedAdminRelationshipItemRequestBuilder.java index 679cd0f70c3..7c9da8ada87 100644 --- a/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadminrelationships/item/DelegatedAdminRelationshipItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadminrelationships/item/DelegatedAdminRelationshipItemRequestBuilder.java @@ -64,18 +64,16 @@ public DelegatedAdminRelationshipItemRequestBuilder(@jakarta.annotation.Nonnull super(requestAdapter, "{+baseurl}/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a delegatedAdminRelationship object. A relationship can only be deleted if it's in the 'created' status. + * Delete navigation property delegatedAdminRelationships for tenantRelationships * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a delegatedAdminRelationship object. A relationship can only be deleted if it's in the 'created' status. + * Delete navigation property delegatedAdminRelationships for tenantRelationships * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -84,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties of a delegatedAdminRelationship object. + * The details of the delegated administrative privileges that a Microsoft partner has in a customer tenant. * @return a {@link DelegatedAdminRelationship} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DelegatedAdminRelationship get() { return get(null); } /** - * Read the properties of a delegatedAdminRelationship object. + * The details of the delegated administrative privileges that a Microsoft partner has in a customer tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DelegatedAdminRelationship} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DelegatedAdminRelationship get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,23 +104,21 @@ public DelegatedAdminRelationship get(@jakarta.annotation.Nullable final java.ut return this.requestAdapter.send(requestInfo, errorMapping, DelegatedAdminRelationship::createFromDiscriminatorValue); } /** - * Update the properties of a delegatedAdminRelationship object. You can only update a relationship when it's in the created status. However, you can update the autoExtendDuration property when the relationship is in either the created or active status. + * Update the navigation property delegatedAdminRelationships in tenantRelationships * @param body The request body * @return a {@link DelegatedAdminRelationship} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DelegatedAdminRelationship patch(@jakarta.annotation.Nonnull final DelegatedAdminRelationship body) { return patch(body, null); } /** - * Update the properties of a delegatedAdminRelationship object. You can only update a relationship when it's in the created status. However, you can update the autoExtendDuration property when the relationship is in either the created or active status. + * Update the navigation property delegatedAdminRelationships in tenantRelationships * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DelegatedAdminRelationship} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DelegatedAdminRelationship patch(@jakarta.annotation.Nonnull final DelegatedAdminRelationship body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +129,7 @@ public DelegatedAdminRelationship patch(@jakarta.annotation.Nonnull final Delega return this.requestAdapter.send(requestInfo, errorMapping, DelegatedAdminRelationship::createFromDiscriminatorValue); } /** - * Delete a delegatedAdminRelationship object. A relationship can only be deleted if it's in the 'created' status. + * Delete navigation property delegatedAdminRelationships for tenantRelationships * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +137,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a delegatedAdminRelationship object. A relationship can only be deleted if it's in the 'created' status. + * Delete navigation property delegatedAdminRelationships for tenantRelationships * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties of a delegatedAdminRelationship object. + * The details of the delegated administrative privileges that a Microsoft partner has in a customer tenant. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -163,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties of a delegatedAdminRelationship object. + * The details of the delegated administrative privileges that a Microsoft partner has in a customer tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -175,7 +169,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a delegatedAdminRelationship object. You can only update a relationship when it's in the created status. However, you can update the autoExtendDuration property when the relationship is in either the created or active status. + * Update the navigation property delegatedAdminRelationships in tenantRelationships * @param body The request body * @return a {@link RequestInformation} */ @@ -184,7 +178,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a delegatedAdminRelationship object. You can only update a relationship when it's in the created status. However, you can update the autoExtendDuration property when the relationship is in either the created or active status. + * Update the navigation property delegatedAdminRelationships in tenantRelationships * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -215,7 +209,7 @@ public DelegatedAdminRelationshipItemRequestBuilder withUrl(@jakarta.annotation. public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties of a delegatedAdminRelationship object. + * The details of the delegated administrative privileges that a Microsoft partner has in a customer tenant. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadminrelationships/item/accessassignments/AccessAssignmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadminrelationships/item/accessassignments/AccessAssignmentsRequestBuilder.java index 1d6f1e966d2..c50b8c1e13d 100644 --- a/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadminrelationships/item/accessassignments/AccessAssignmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadminrelationships/item/accessassignments/AccessAssignmentsRequestBuilder.java @@ -60,21 +60,19 @@ public AccessAssignmentsRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship%2Did}/accessAssignments{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the delegatedAdminAccessAssignment objects and their properties. + * The access assignments associated with the delegated admin relationship. * @return a {@link DelegatedAdminAccessAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DelegatedAdminAccessAssignmentCollectionResponse get() { return get(null); } /** - * Get a list of the delegatedAdminAccessAssignment objects and their properties. + * The access assignments associated with the delegated admin relationship. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DelegatedAdminAccessAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DelegatedAdminAccessAssignmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public DelegatedAdminAccessAssignmentCollectionResponse get(@jakarta.annotation. return this.requestAdapter.send(requestInfo, errorMapping, DelegatedAdminAccessAssignmentCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new delegatedAdminAccessAssignment object. + * Create new navigation property to accessAssignments for tenantRelationships * @param body The request body * @return a {@link DelegatedAdminAccessAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DelegatedAdminAccessAssignment post(@jakarta.annotation.Nonnull final DelegatedAdminAccessAssignment body) { return post(body, null); } /** - * Create a new delegatedAdminAccessAssignment object. + * Create new navigation property to accessAssignments for tenantRelationships * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DelegatedAdminAccessAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DelegatedAdminAccessAssignment post(@jakarta.annotation.Nonnull final DelegatedAdminAccessAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public DelegatedAdminAccessAssignment post(@jakarta.annotation.Nonnull final Del return this.requestAdapter.send(requestInfo, errorMapping, DelegatedAdminAccessAssignment::createFromDiscriminatorValue); } /** - * Get a list of the delegatedAdminAccessAssignment objects and their properties. + * The access assignments associated with the delegated admin relationship. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the delegatedAdminAccessAssignment objects and their properties. + * The access assignments associated with the delegated admin relationship. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new delegatedAdminAccessAssignment object. + * Create new navigation property to accessAssignments for tenantRelationships * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new delegatedAdminAccessAssignment object. + * Create new navigation property to accessAssignments for tenantRelationships * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public AccessAssignmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final return new AccessAssignmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the delegatedAdminAccessAssignment objects and their properties. + * The access assignments associated with the delegated admin relationship. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadminrelationships/item/accessassignments/item/DelegatedAdminAccessAssignmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadminrelationships/item/accessassignments/item/DelegatedAdminAccessAssignmentItemRequestBuilder.java index 901e5a7c508..99862569124 100644 --- a/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadminrelationships/item/accessassignments/item/DelegatedAdminAccessAssignmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadminrelationships/item/accessassignments/item/DelegatedAdminAccessAssignmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public DelegatedAdminAccessAssignmentItemRequestBuilder(@jakarta.annotation.Nonn super(requestAdapter, "{+baseurl}/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship%2Did}/accessAssignments/{delegatedAdminAccessAssignment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a delegatedAdminAccessAssignment object. + * Delete navigation property accessAssignments for tenantRelationships * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a delegatedAdminAccessAssignment object. + * Delete navigation property accessAssignments for tenantRelationships * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties of a delegatedAdminAccessAssignment object. + * The access assignments associated with the delegated admin relationship. * @return a {@link DelegatedAdminAccessAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DelegatedAdminAccessAssignment get() { return get(null); } /** - * Read the properties of a delegatedAdminAccessAssignment object. + * The access assignments associated with the delegated admin relationship. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DelegatedAdminAccessAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DelegatedAdminAccessAssignment get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public DelegatedAdminAccessAssignment get(@jakarta.annotation.Nullable final jav return this.requestAdapter.send(requestInfo, errorMapping, DelegatedAdminAccessAssignment::createFromDiscriminatorValue); } /** - * Update the properties of a delegatedAdminAccessAssignment object. + * Update the navigation property accessAssignments in tenantRelationships * @param body The request body * @return a {@link DelegatedAdminAccessAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DelegatedAdminAccessAssignment patch(@jakarta.annotation.Nonnull final DelegatedAdminAccessAssignment body) { return patch(body, null); } /** - * Update the properties of a delegatedAdminAccessAssignment object. + * Update the navigation property accessAssignments in tenantRelationships * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DelegatedAdminAccessAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DelegatedAdminAccessAssignment patch(@jakarta.annotation.Nonnull final DelegatedAdminAccessAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public DelegatedAdminAccessAssignment patch(@jakarta.annotation.Nonnull final De return this.requestAdapter.send(requestInfo, errorMapping, DelegatedAdminAccessAssignment::createFromDiscriminatorValue); } /** - * Delete a delegatedAdminAccessAssignment object. + * Delete navigation property accessAssignments for tenantRelationships * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a delegatedAdminAccessAssignment object. + * Delete navigation property accessAssignments for tenantRelationships * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties of a delegatedAdminAccessAssignment object. + * The access assignments associated with the delegated admin relationship. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties of a delegatedAdminAccessAssignment object. + * The access assignments associated with the delegated admin relationship. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a delegatedAdminAccessAssignment object. + * Update the navigation property accessAssignments in tenantRelationships * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a delegatedAdminAccessAssignment object. + * Update the navigation property accessAssignments in tenantRelationships * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public DelegatedAdminAccessAssignmentItemRequestBuilder withUrl(@jakarta.annotat public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties of a delegatedAdminAccessAssignment object. + * The access assignments associated with the delegated admin relationship. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadminrelationships/item/operations/OperationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadminrelationships/item/operations/OperationsRequestBuilder.java index 59b12be92bc..65957dd3a43 100644 --- a/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadminrelationships/item/operations/OperationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadminrelationships/item/operations/OperationsRequestBuilder.java @@ -60,21 +60,19 @@ public OperationsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship%2Did}/operations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the delegatedAdminRelationshipOperation objects and their properties. + * The long running operations associated with the delegated admin relationship. * @return a {@link DelegatedAdminRelationshipOperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DelegatedAdminRelationshipOperationCollectionResponse get() { return get(null); } /** - * Get a list of the delegatedAdminRelationshipOperation objects and their properties. + * The long running operations associated with the delegated admin relationship. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DelegatedAdminRelationshipOperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DelegatedAdminRelationshipOperationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public DelegatedAdminRelationshipOperation post(@jakarta.annotation.Nonnull fina return this.requestAdapter.send(requestInfo, errorMapping, DelegatedAdminRelationshipOperation::createFromDiscriminatorValue); } /** - * Get a list of the delegatedAdminRelationshipOperation objects and their properties. + * The long running operations associated with the delegated admin relationship. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the delegatedAdminRelationshipOperation objects and their properties. + * The long running operations associated with the delegated admin relationship. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public OperationsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new OperationsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the delegatedAdminRelationshipOperation objects and their properties. + * The long running operations associated with the delegated admin relationship. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadminrelationships/item/operations/item/DelegatedAdminRelationshipOperationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadminrelationships/item/operations/item/DelegatedAdminRelationshipOperationItemRequestBuilder.java index ce8eea1cf53..c92a5aa9a05 100644 --- a/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadminrelationships/item/operations/item/DelegatedAdminRelationshipOperationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadminrelationships/item/operations/item/DelegatedAdminRelationshipOperationItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties of a delegatedAdminRelationshipOperation object. + * The long running operations associated with the delegated admin relationship. * @return a {@link DelegatedAdminRelationshipOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DelegatedAdminRelationshipOperation get() { return get(null); } /** - * Read the properties of a delegatedAdminRelationshipOperation object. + * The long running operations associated with the delegated admin relationship. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DelegatedAdminRelationshipOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DelegatedAdminRelationshipOperation get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties of a delegatedAdminRelationshipOperation object. + * The long running operations associated with the delegated admin relationship. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties of a delegatedAdminRelationshipOperation object. + * The long running operations associated with the delegated admin relationship. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public DelegatedAdminRelationshipOperationItemRequestBuilder withUrl(@jakarta.an public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties of a delegatedAdminRelationshipOperation object. + * The long running operations associated with the delegated admin relationship. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadminrelationships/item/requests/RequestsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadminrelationships/item/requests/RequestsRequestBuilder.java index cb24b0a5e3a..ea512b2ea69 100644 --- a/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadminrelationships/item/requests/RequestsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadminrelationships/item/requests/RequestsRequestBuilder.java @@ -60,21 +60,19 @@ public RequestsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship%2Did}/requests{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the delegatedAdminRelationshipRequest objects and their properties. + * The requests associated with the delegated admin relationship. * @return a {@link DelegatedAdminRelationshipRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DelegatedAdminRelationshipRequestCollectionResponse get() { return get(null); } /** - * Get a list of the delegatedAdminRelationshipRequest objects and their properties. + * The requests associated with the delegated admin relationship. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DelegatedAdminRelationshipRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DelegatedAdminRelationshipRequestCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public DelegatedAdminRelationshipRequestCollectionResponse get(@jakarta.annotati return this.requestAdapter.send(requestInfo, errorMapping, DelegatedAdminRelationshipRequestCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new delegatedAdminRelationshipRequest object. + * Create new navigation property to requests for tenantRelationships * @param body The request body * @return a {@link DelegatedAdminRelationshipRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DelegatedAdminRelationshipRequest post(@jakarta.annotation.Nonnull final DelegatedAdminRelationshipRequest body) { return post(body, null); } /** - * Create a new delegatedAdminRelationshipRequest object. + * Create new navigation property to requests for tenantRelationships * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DelegatedAdminRelationshipRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DelegatedAdminRelationshipRequest post(@jakarta.annotation.Nonnull final DelegatedAdminRelationshipRequest body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public DelegatedAdminRelationshipRequest post(@jakarta.annotation.Nonnull final return this.requestAdapter.send(requestInfo, errorMapping, DelegatedAdminRelationshipRequest::createFromDiscriminatorValue); } /** - * Get a list of the delegatedAdminRelationshipRequest objects and their properties. + * The requests associated with the delegated admin relationship. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the delegatedAdminRelationshipRequest objects and their properties. + * The requests associated with the delegated admin relationship. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new delegatedAdminRelationshipRequest object. + * Create new navigation property to requests for tenantRelationships * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new delegatedAdminRelationshipRequest object. + * Create new navigation property to requests for tenantRelationships * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public RequestsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new RequestsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the delegatedAdminRelationshipRequest objects and their properties. + * The requests associated with the delegated admin relationship. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadminrelationships/item/requests/item/DelegatedAdminRelationshipRequestItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadminrelationships/item/requests/item/DelegatedAdminRelationshipRequestItemRequestBuilder.java index 74c23a504d5..f0a2b503d78 100644 --- a/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadminrelationships/item/requests/item/DelegatedAdminRelationshipRequestItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/tenantrelationships/delegatedadminrelationships/item/requests/item/DelegatedAdminRelationshipRequestItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a delegatedAdminRelationshipRequest object. + * The requests associated with the delegated admin relationship. * @return a {@link DelegatedAdminRelationshipRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DelegatedAdminRelationshipRequest get() { return get(null); } /** - * Read the properties and relationships of a delegatedAdminRelationshipRequest object. + * The requests associated with the delegated admin relationship. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DelegatedAdminRelationshipRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DelegatedAdminRelationshipRequest get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a delegatedAdminRelationshipRequest object. + * The requests associated with the delegated admin relationship. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a delegatedAdminRelationshipRequest object. + * The requests associated with the delegated admin relationship. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public DelegatedAdminRelationshipRequestItemRequestBuilder withUrl(@jakarta.anno public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a delegatedAdminRelationshipRequest object. + * The requests associated with the delegated admin relationship. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/tenantrelationships/findtenantinformationbydomainnamewithdomainname/FindTenantInformationByDomainNameWithDomainNameRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/tenantrelationships/findtenantinformationbydomainnamewithdomainname/FindTenantInformationByDomainNameWithDomainNameRequestBuilder.java index c2c20a6491a..9f6f42c3d70 100644 --- a/src/main/java/com/microsoft/graph/generated/tenantrelationships/findtenantinformationbydomainnamewithdomainname/FindTenantInformationByDomainNameWithDomainNameRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/tenantrelationships/findtenantinformationbydomainnamewithdomainname/FindTenantInformationByDomainNameWithDomainNameRequestBuilder.java @@ -38,19 +38,21 @@ public FindTenantInformationByDomainNameWithDomainNameRequestBuilder(@jakarta.an super(requestAdapter, "{+baseurl}/tenantRelationships/findTenantInformationByDomainName(domainName='{domainName}')", rawUrl); } /** - * Invoke function findTenantInformationByDomainName + * Given a domain name, search for a tenant and read its tenantInformation. You can use this API to validate tenant information and use the tenantId to configure cross-tenant access settings between you and the tenant. * @return a {@link TenantInformation} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public TenantInformation get() { return get(null); } /** - * Invoke function findTenantInformationByDomainName + * Given a domain name, search for a tenant and read its tenantInformation. You can use this API to validate tenant information and use the tenantId to configure cross-tenant access settings between you and the tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TenantInformation} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public TenantInformation get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public TenantInformation get(@jakarta.annotation.Nullable final java.util.functi return this.requestAdapter.send(requestInfo, errorMapping, TenantInformation::createFromDiscriminatorValue); } /** - * Invoke function findTenantInformationByDomainName + * Given a domain name, search for a tenant and read its tenantInformation. You can use this API to validate tenant information and use the tenantId to configure cross-tenant access settings between you and the tenant. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function findTenantInformationByDomainName + * Given a domain name, search for a tenant and read its tenantInformation. You can use this API to validate tenant information and use the tenantId to configure cross-tenant access settings between you and the tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/tenantrelationships/findtenantinformationbytenantidwithtenantid/FindTenantInformationByTenantIdWithTenantIdRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/tenantrelationships/findtenantinformationbytenantidwithtenantid/FindTenantInformationByTenantIdWithTenantIdRequestBuilder.java index 9a90105dbaa..4ce8cbbcb38 100644 --- a/src/main/java/com/microsoft/graph/generated/tenantrelationships/findtenantinformationbytenantidwithtenantid/FindTenantInformationByTenantIdWithTenantIdRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/tenantrelationships/findtenantinformationbytenantidwithtenantid/FindTenantInformationByTenantIdWithTenantIdRequestBuilder.java @@ -38,19 +38,21 @@ public FindTenantInformationByTenantIdWithTenantIdRequestBuilder(@jakarta.annota super(requestAdapter, "{+baseurl}/tenantRelationships/findTenantInformationByTenantId(tenantId='{tenantId}')", rawUrl); } /** - * Invoke function findTenantInformationByTenantId + * Given a tenant ID, search for a tenant and read its tenantInformation. You can use this API to validate tenant information and use the tenantId to configure cross-tenant cross-tenant access settings between you and the tenant. * @return a {@link TenantInformation} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public TenantInformation get() { return get(null); } /** - * Invoke function findTenantInformationByTenantId + * Given a tenant ID, search for a tenant and read its tenantInformation. You can use this API to validate tenant information and use the tenantId to configure cross-tenant cross-tenant access settings between you and the tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TenantInformation} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public TenantInformation get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public TenantInformation get(@jakarta.annotation.Nullable final java.util.functi return this.requestAdapter.send(requestInfo, errorMapping, TenantInformation::createFromDiscriminatorValue); } /** - * Invoke function findTenantInformationByTenantId + * Given a tenant ID, search for a tenant and read its tenantInformation. You can use this API to validate tenant information and use the tenantId to configure cross-tenant cross-tenant access settings between you and the tenant. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function findTenantInformationByTenantId + * Given a tenant ID, search for a tenant and read its tenantInformation. You can use this API to validate tenant information and use the tenantId to configure cross-tenant cross-tenant access settings between you and the tenant. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/users/UsersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/UsersRequestBuilder.java index ebe96115af1..0c0191b4ff5 100644 --- a/src/main/java/com/microsoft/graph/generated/users/UsersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/UsersRequestBuilder.java @@ -99,7 +99,7 @@ public UsersRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak * List properties and relationships of the user objects. * @return a {@link UserCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here + * @see Find more info here */ @jakarta.annotation.Nullable public UserCollectionResponse get() { @@ -110,7 +110,7 @@ public UserCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UserCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here + * @see Find more info here */ @jakarta.annotation.Nullable public UserCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,23 +120,23 @@ public UserCollectionResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, UserCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new user.The request body contains the user to create. At a minimum, you must specify the required properties for the user. You can optionally specify any other writable properties. + * Create a new user object. * @param body The request body * @return a {@link User} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here + * @see Find more info here */ @jakarta.annotation.Nullable public User post(@jakarta.annotation.Nonnull final User body) { return post(body, null); } /** - * Create a new user.The request body contains the user to create. At a minimum, you must specify the required properties for the user. You can optionally specify any other writable properties. + * Create a new user object. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link User} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here + * @see Find more info here */ @jakarta.annotation.Nullable public User post(@jakarta.annotation.Nonnull final User body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -167,7 +167,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new user.The request body contains the user to create. At a minimum, you must specify the required properties for the user. You can optionally specify any other writable properties. + * Create a new user object. * @param body The request body * @return a {@link RequestInformation} */ @@ -176,7 +176,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new user.The request body contains the user to create. At a minimum, you must specify the required properties for the user. You can optionally specify any other writable properties. + * Create a new user object. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/users/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/delta/DeltaRequestBuilder.java index 5db1922d7dc..60616b3ab2a 100644 --- a/src/main/java/com/microsoft/graph/generated/users/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/users/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Get newly created, updated, or deleted users without having to perform a full read of the entire user collection. See change tracking for details. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Get newly created, updated, or deleted users without having to perform a full read of the entire user collection. See change tracking for details. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Get newly created, updated, or deleted users without having to perform a full read of the entire user collection. See change tracking for details. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Get newly created, updated, or deleted users without having to perform a full read of the entire user collection. See change tracking for details. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Get newly created, updated, or deleted users without having to perform a full read of the entire user collection. See change tracking for details. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/UserItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/UserItemRequestBuilder.java index 86073c199be..3f21c38b48b 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/UserItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/UserItemRequestBuilder.java @@ -698,7 +698,7 @@ public UserItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ /** * Deletes a user. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here + * @see Find more info here */ public void delete() { delete(null); @@ -707,7 +707,7 @@ public void delete() { * Deletes a user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here + * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -752,23 +752,23 @@ public User get(@jakarta.annotation.Nullable final java.util.function.ConsumerFind more info here + * @see Find more info here */ @jakarta.annotation.Nullable public User patch(@jakarta.annotation.Nonnull final User body) { return patch(body, null); } /** - * Update the properties of a user object. + * Update the properties of a user object. Not all properties can be updated by Member or Guest users with their default permissions without Administrator roles. Compare member and guest default permissions to see properties they can manage. Customers through Microsoft Entra ID for customers can also use this API operation to update their details. See Default user permissions in customer tenants for the list of properties they can update. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link User} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here + * @see Find more info here */ @jakarta.annotation.Nullable public User patch(@jakarta.annotation.Nonnull final User body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -831,7 +831,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a user object. + * Update the properties of a user object. Not all properties can be updated by Member or Guest users with their default permissions without Administrator roles. Compare member and guest default permissions to see properties they can manage. Customers through Microsoft Entra ID for customers can also use this API operation to update their details. See Default user permissions in customer tenants for the list of properties they can update. * @param body The request body * @return a {@link RequestInformation} */ @@ -840,7 +840,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a user object. + * Update the properties of a user object. Not all properties can be updated by Member or Guest users with their default permissions without Administrator roles. Compare member and guest default permissions to see properties they can manage. Customers through Microsoft Entra ID for customers can also use this API operation to update their details. See Default user permissions in customer tenants for the list of properties they can update. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/users/item/activities/ActivitiesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/activities/ActivitiesRequestBuilder.java index f653efb98f9..ea3693225f9 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/activities/ActivitiesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/activities/ActivitiesRequestBuilder.java @@ -69,21 +69,19 @@ public ActivitiesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/users/{user%2Did}/activities{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get activities for a given user. Unlike the recent OData function, activities without histories will be returned. The permission UserActivity.ReadWrite.CreatedByApp will apply extra filtering to the response, so that only activities created by your application are returned. This server-side filtering might result in empty pages if the user is particularly active and other applications have created more recent activities. To get your application's activities, use the nextLink property to paginate. + * The user's activities across devices. Read-only. Nullable. * @return a {@link UserActivityCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserActivityCollectionResponse get() { return get(null); } /** - * Get activities for a given user. Unlike the recent OData function, activities without histories will be returned. The permission UserActivity.ReadWrite.CreatedByApp will apply extra filtering to the response, so that only activities created by your application are returned. This server-side filtering might result in empty pages if the user is particularly active and other applications have created more recent activities. To get your application's activities, use the nextLink property to paginate. + * The user's activities across devices. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UserActivityCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserActivityCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -118,7 +116,7 @@ public UserActivity post(@jakarta.annotation.Nonnull final UserActivity body, @j return this.requestAdapter.send(requestInfo, errorMapping, UserActivity::createFromDiscriminatorValue); } /** - * Get activities for a given user. Unlike the recent OData function, activities without histories will be returned. The permission UserActivity.ReadWrite.CreatedByApp will apply extra filtering to the response, so that only activities created by your application are returned. This server-side filtering might result in empty pages if the user is particularly active and other applications have created more recent activities. To get your application's activities, use the nextLink property to paginate. + * The user's activities across devices. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -126,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get activities for a given user. Unlike the recent OData function, activities without histories will be returned. The permission UserActivity.ReadWrite.CreatedByApp will apply extra filtering to the response, so that only activities created by your application are returned. This server-side filtering might result in empty pages if the user is particularly active and other applications have created more recent activities. To get your application's activities, use the nextLink property to paginate. + * The user's activities across devices. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -172,7 +170,7 @@ public ActivitiesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ActivitiesRequestBuilder(rawUrl, requestAdapter); } /** - * Get activities for a given user. Unlike the recent OData function, activities without histories will be returned. The permission UserActivity.ReadWrite.CreatedByApp will apply extra filtering to the response, so that only activities created by your application are returned. This server-side filtering might result in empty pages if the user is particularly active and other applications have created more recent activities. To get your application's activities, use the nextLink property to paginate. + * The user's activities across devices. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/activities/item/UserActivityItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/activities/item/UserActivityItemRequestBuilder.java index 09ec10fcdd8..d540a8f014c 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/activities/item/UserActivityItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/activities/item/UserActivityItemRequestBuilder.java @@ -46,18 +46,16 @@ public UserActivityItemRequestBuilder(@jakarta.annotation.Nonnull final String r super(requestAdapter, "{+baseurl}/users/{user%2Did}/activities/{userActivity%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an existing user activity for your app. + * Delete navigation property activities for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an existing user activity for your app. + * Delete navigation property activities for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -113,7 +111,7 @@ public UserActivity patch(@jakarta.annotation.Nonnull final UserActivity body, @ return this.requestAdapter.send(requestInfo, errorMapping, UserActivity::createFromDiscriminatorValue); } /** - * Delete an existing user activity for your app. + * Delete navigation property activities for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -121,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an existing user activity for your app. + * Delete navigation property activities for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/users/item/activities/item/historyitems/item/ActivityHistoryItemItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/activities/item/historyitems/item/ActivityHistoryItemItemRequestBuilder.java index acdc0375849..99e5e685c73 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/activities/item/historyitems/item/ActivityHistoryItemItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/activities/item/historyitems/item/ActivityHistoryItemItemRequestBuilder.java @@ -86,23 +86,21 @@ public ActivityHistoryItem get(@jakarta.annotation.Nullable final java.util.func return this.requestAdapter.send(requestInfo, errorMapping, ActivityHistoryItem::createFromDiscriminatorValue); } /** - * Create a new or replace an existing history item for an existing user activity. + * Update the navigation property historyItems in users * @param body The request body * @return a {@link ActivityHistoryItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ActivityHistoryItem patch(@jakarta.annotation.Nonnull final ActivityHistoryItem body) { return patch(body, null); } /** - * Create a new or replace an existing history item for an existing user activity. + * Update the navigation property historyItems in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ActivityHistoryItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ActivityHistoryItem patch(@jakarta.annotation.Nonnull final ActivityHistoryItem body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -153,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new or replace an existing history item for an existing user activity. + * Update the navigation property historyItems in users * @param body The request body * @return a {@link RequestInformation} */ @@ -162,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Create a new or replace an existing history item for an existing user activity. + * Update the navigation property historyItems in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/users/item/agreementacceptances/AgreementAcceptancesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/agreementacceptances/AgreementAcceptancesRequestBuilder.java index c9a88a81a8a..38aa6575ec7 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/agreementacceptances/AgreementAcceptancesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/agreementacceptances/AgreementAcceptancesRequestBuilder.java @@ -59,21 +59,19 @@ public AgreementAcceptancesRequestBuilder(@jakarta.annotation.Nonnull final Stri super(requestAdapter, "{+baseurl}/users/{user%2Did}/agreementAcceptances{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the signed-in user's agreementAcceptance objects. + * The user's terms of use acceptance statuses. Read-only. Nullable. * @return a {@link AgreementAcceptanceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AgreementAcceptanceCollectionResponse get() { return get(null); } /** - * Retrieve the signed-in user's agreementAcceptance objects. + * The user's terms of use acceptance statuses. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AgreementAcceptanceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AgreementAcceptanceCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public AgreementAcceptanceCollectionResponse get(@jakarta.annotation.Nullable fi return this.requestAdapter.send(requestInfo, errorMapping, AgreementAcceptanceCollectionResponse::createFromDiscriminatorValue); } /** - * Retrieve the signed-in user's agreementAcceptance objects. + * The user's terms of use acceptance statuses. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the signed-in user's agreementAcceptance objects. + * The user's terms of use acceptance statuses. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public AgreementAcceptancesRequestBuilder withUrl(@jakarta.annotation.Nonnull fi return new AgreementAcceptancesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the signed-in user's agreementAcceptance objects. + * The user's terms of use acceptance statuses. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/approleassignments/AppRoleAssignmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/approleassignments/AppRoleAssignmentsRequestBuilder.java index 85e3e084638..6f6198b1730 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/approleassignments/AppRoleAssignmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/approleassignments/AppRoleAssignmentsRequestBuilder.java @@ -63,7 +63,6 @@ public AppRoleAssignmentsRequestBuilder(@jakarta.annotation.Nonnull final String * Represents the app roles a user has been granted for an application. Supports $expand. * @return a {@link AppRoleAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AppRoleAssignmentCollectionResponse get() { @@ -74,7 +73,6 @@ public AppRoleAssignmentCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AppRoleAssignmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AppRoleAssignmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public AppRoleAssignmentCollectionResponse get(@jakarta.annotation.Nullable fina return this.requestAdapter.send(requestInfo, errorMapping, AppRoleAssignmentCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to assign an app role to a user. To grant an app role assignment to a user, you need three identifiers: + * Create new navigation property to appRoleAssignments for users * @param body The request body * @return a {@link AppRoleAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AppRoleAssignment post(@jakarta.annotation.Nonnull final AppRoleAssignment body) { return post(body, null); } /** - * Use this API to assign an app role to a user. To grant an app role assignment to a user, you need three identifiers: + * Create new navigation property to appRoleAssignments for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AppRoleAssignment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AppRoleAssignment post(@jakarta.annotation.Nonnull final AppRoleAssignment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to assign an app role to a user. To grant an app role assignment to a user, you need three identifiers: + * Create new navigation property to appRoleAssignments for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to assign an app role to a user. To grant an app role assignment to a user, you need three identifiers: + * Create new navigation property to appRoleAssignments for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/users/item/approleassignments/item/AppRoleAssignmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/approleassignments/item/AppRoleAssignmentItemRequestBuilder.java index 528aa161371..cb71363dee7 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/approleassignments/item/AppRoleAssignmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/approleassignments/item/AppRoleAssignmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public AppRoleAssignmentItemRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/users/{user%2Did}/appRoleAssignments/{appRoleAssignment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an appRoleAssignment that has been granted to a user. + * Delete navigation property appRoleAssignments for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an appRoleAssignment that has been granted to a user. + * Delete navigation property appRoleAssignments for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -104,7 +102,7 @@ public AppRoleAssignment patch(@jakarta.annotation.Nonnull final AppRoleAssignme return this.requestAdapter.send(requestInfo, errorMapping, AppRoleAssignment::createFromDiscriminatorValue); } /** - * Delete an appRoleAssignment that has been granted to a user. + * Delete navigation property appRoleAssignments for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -112,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an appRoleAssignment that has been granted to a user. + * Delete navigation property appRoleAssignments for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/users/item/authentication/emailmethods/EmailMethodsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/authentication/emailmethods/EmailMethodsRequestBuilder.java index 8364f3833f7..f6416dff572 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/authentication/emailmethods/EmailMethodsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/authentication/emailmethods/EmailMethodsRequestBuilder.java @@ -60,21 +60,19 @@ public EmailMethodsRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/users/{user%2Did}/authentication/emailMethods{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of a user's emailAuthenticationMethod objects and their properties. This API will return only a single object in the collection as only one email method can be set for a user. + * The email address registered to a user for authentication. * @return a {@link EmailAuthenticationMethodCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EmailAuthenticationMethodCollectionResponse get() { return get(null); } /** - * Retrieve a list of a user's emailAuthenticationMethod objects and their properties. This API will return only a single object in the collection as only one email method can be set for a user. + * The email address registered to a user for authentication. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EmailAuthenticationMethodCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EmailAuthenticationMethodCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public EmailAuthenticationMethodCollectionResponse get(@jakarta.annotation.Nulla return this.requestAdapter.send(requestInfo, errorMapping, EmailAuthenticationMethodCollectionResponse::createFromDiscriminatorValue); } /** - * Set a user's emailAuthenticationMethod object. Email authentication is a self-service password reset method. A user may only have one email authentication method. + * Create new navigation property to emailMethods for users * @param body The request body * @return a {@link EmailAuthenticationMethod} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EmailAuthenticationMethod post(@jakarta.annotation.Nonnull final EmailAuthenticationMethod body) { return post(body, null); } /** - * Set a user's emailAuthenticationMethod object. Email authentication is a self-service password reset method. A user may only have one email authentication method. + * Create new navigation property to emailMethods for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EmailAuthenticationMethod} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EmailAuthenticationMethod post(@jakarta.annotation.Nonnull final EmailAuthenticationMethod body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public EmailAuthenticationMethod post(@jakarta.annotation.Nonnull final EmailAut return this.requestAdapter.send(requestInfo, errorMapping, EmailAuthenticationMethod::createFromDiscriminatorValue); } /** - * Retrieve a list of a user's emailAuthenticationMethod objects and their properties. This API will return only a single object in the collection as only one email method can be set for a user. + * The email address registered to a user for authentication. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of a user's emailAuthenticationMethod objects and their properties. This API will return only a single object in the collection as only one email method can be set for a user. + * The email address registered to a user for authentication. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Set a user's emailAuthenticationMethod object. Email authentication is a self-service password reset method. A user may only have one email authentication method. + * Create new navigation property to emailMethods for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Set a user's emailAuthenticationMethod object. Email authentication is a self-service password reset method. A user may only have one email authentication method. + * Create new navigation property to emailMethods for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public EmailMethodsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri return new EmailMethodsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of a user's emailAuthenticationMethod objects and their properties. This API will return only a single object in the collection as only one email method can be set for a user. + * The email address registered to a user for authentication. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/authentication/emailmethods/item/EmailAuthenticationMethodItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/authentication/emailmethods/item/EmailAuthenticationMethodItemRequestBuilder.java index 72502b77d44..5039d51cc39 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/authentication/emailmethods/item/EmailAuthenticationMethodItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/authentication/emailmethods/item/EmailAuthenticationMethodItemRequestBuilder.java @@ -37,18 +37,16 @@ public EmailAuthenticationMethodItemRequestBuilder(@jakarta.annotation.Nonnull f super(requestAdapter, "{+baseurl}/users/{user%2Did}/authentication/emailMethods/{emailAuthenticationMethod%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a user's emailAuthenticationMethod object. + * Delete navigation property emailMethods for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a user's emailAuthenticationMethod object. + * Delete navigation property emailMethods for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a user's single email authentication method object. + * The email address registered to a user for authentication. * @return a {@link EmailAuthenticationMethod} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EmailAuthenticationMethod get() { return get(null); } /** - * Retrieve a user's single email authentication method object. + * The email address registered to a user for authentication. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EmailAuthenticationMethod} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EmailAuthenticationMethod get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public EmailAuthenticationMethod get(@jakarta.annotation.Nullable final java.uti return this.requestAdapter.send(requestInfo, errorMapping, EmailAuthenticationMethod::createFromDiscriminatorValue); } /** - * Update a user's email address represented by an emailAuthenticationMethod object. + * Update the navigation property emailMethods in users * @param body The request body * @return a {@link EmailAuthenticationMethod} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EmailAuthenticationMethod patch(@jakarta.annotation.Nonnull final EmailAuthenticationMethod body) { return patch(body, null); } /** - * Update a user's email address represented by an emailAuthenticationMethod object. + * Update the navigation property emailMethods in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EmailAuthenticationMethod} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EmailAuthenticationMethod patch(@jakarta.annotation.Nonnull final EmailAuthenticationMethod body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public EmailAuthenticationMethod patch(@jakarta.annotation.Nonnull final EmailAu return this.requestAdapter.send(requestInfo, errorMapping, EmailAuthenticationMethod::createFromDiscriminatorValue); } /** - * Deletes a user's emailAuthenticationMethod object. + * Delete navigation property emailMethods for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a user's emailAuthenticationMethod object. + * Delete navigation property emailMethods for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a user's single email authentication method object. + * The email address registered to a user for authentication. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a user's single email authentication method object. + * The email address registered to a user for authentication. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update a user's email address represented by an emailAuthenticationMethod object. + * Update the navigation property emailMethods in users * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update a user's email address represented by an emailAuthenticationMethod object. + * Update the navigation property emailMethods in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public EmailAuthenticationMethodItemRequestBuilder withUrl(@jakarta.annotation.N public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve a user's single email authentication method object. + * The email address registered to a user for authentication. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/authentication/fido2methods/Fido2MethodsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/authentication/fido2methods/Fido2MethodsRequestBuilder.java index 581e5fcd2eb..dec0fb092e8 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/authentication/fido2methods/Fido2MethodsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/authentication/fido2methods/Fido2MethodsRequestBuilder.java @@ -59,21 +59,19 @@ public Fido2MethodsRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/users/{user%2Did}/authentication/fido2Methods{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of a user's FIDO2 Security Key Authentication Method objects and their properties. + * Represents the FIDO2 security keys registered to a user for authentication. * @return a {@link Fido2AuthenticationMethodCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Fido2AuthenticationMethodCollectionResponse get() { return get(null); } /** - * Retrieve a list of a user's FIDO2 Security Key Authentication Method objects and their properties. + * Represents the FIDO2 security keys registered to a user for authentication. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Fido2AuthenticationMethodCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Fido2AuthenticationMethodCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public Fido2AuthenticationMethodCollectionResponse get(@jakarta.annotation.Nulla return this.requestAdapter.send(requestInfo, errorMapping, Fido2AuthenticationMethodCollectionResponse::createFromDiscriminatorValue); } /** - * Retrieve a list of a user's FIDO2 Security Key Authentication Method objects and their properties. + * Represents the FIDO2 security keys registered to a user for authentication. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of a user's FIDO2 Security Key Authentication Method objects and their properties. + * Represents the FIDO2 security keys registered to a user for authentication. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public Fido2MethodsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri return new Fido2MethodsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of a user's FIDO2 Security Key Authentication Method objects and their properties. + * Represents the FIDO2 security keys registered to a user for authentication. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/authentication/fido2methods/item/Fido2AuthenticationMethodItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/authentication/fido2methods/item/Fido2AuthenticationMethodItemRequestBuilder.java index 3bef1284e02..e0ddd478644 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/authentication/fido2methods/item/Fido2AuthenticationMethodItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/authentication/fido2methods/item/Fido2AuthenticationMethodItemRequestBuilder.java @@ -37,18 +37,16 @@ public Fido2AuthenticationMethodItemRequestBuilder(@jakarta.annotation.Nonnull f super(requestAdapter, "{+baseurl}/users/{user%2Did}/authentication/fido2Methods/{fido2AuthenticationMethod%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a user's FIDO2 Security Key Authentication Method object. + * Delete navigation property fido2Methods for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a user's FIDO2 Security Key Authentication Method object. + * Delete navigation property fido2Methods for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a user's single FIDO2 Security Key Authentication Method object. + * Represents the FIDO2 security keys registered to a user for authentication. * @return a {@link Fido2AuthenticationMethod} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Fido2AuthenticationMethod get() { return get(null); } /** - * Retrieve a user's single FIDO2 Security Key Authentication Method object. + * Represents the FIDO2 security keys registered to a user for authentication. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Fido2AuthenticationMethod} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Fido2AuthenticationMethod get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,7 +77,7 @@ public Fido2AuthenticationMethod get(@jakarta.annotation.Nullable final java.uti return this.requestAdapter.send(requestInfo, errorMapping, Fido2AuthenticationMethod::createFromDiscriminatorValue); } /** - * Deletes a user's FIDO2 Security Key Authentication Method object. + * Delete navigation property fido2Methods for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -89,7 +85,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a user's FIDO2 Security Key Authentication Method object. + * Delete navigation property fido2Methods for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -101,7 +97,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a user's single FIDO2 Security Key Authentication Method object. + * Represents the FIDO2 security keys registered to a user for authentication. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -109,7 +105,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a user's single FIDO2 Security Key Authentication Method object. + * Represents the FIDO2 security keys registered to a user for authentication. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +133,7 @@ public Fido2AuthenticationMethodItemRequestBuilder withUrl(@jakarta.annotation.N public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve a user's single FIDO2 Security Key Authentication Method object. + * Represents the FIDO2 security keys registered to a user for authentication. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/authentication/methods/MethodsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/authentication/methods/MethodsRequestBuilder.java index 520f45edfb7..e9a6bafd229 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/authentication/methods/MethodsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/authentication/methods/MethodsRequestBuilder.java @@ -60,21 +60,19 @@ public MethodsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/users/{user%2Did}/authentication/methods{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of authentication methods registered to a user. The authentication methods are defined by the types derived from the authenticationMethod resource type, and only the methods supported on this API version. See Microsoft Entra authentication methods API overview for a list of currently supported methods. We don't recommend using the authentication methods APIs for scenarios where you need to iterate over your entire user population for auditing or security check purposes. For these types of scenarios, we recommend using the authentication method registration and usage reporting APIs (available on the beta endpoint only). + * Represents all authentication methods registered to a user. * @return a {@link AuthenticationMethodCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationMethodCollectionResponse get() { return get(null); } /** - * Retrieve a list of authentication methods registered to a user. The authentication methods are defined by the types derived from the authenticationMethod resource type, and only the methods supported on this API version. See Microsoft Entra authentication methods API overview for a list of currently supported methods. We don't recommend using the authentication methods APIs for scenarios where you need to iterate over your entire user population for auditing or security check purposes. For these types of scenarios, we recommend using the authentication method registration and usage reporting APIs (available on the beta endpoint only). + * Represents all authentication methods registered to a user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AuthenticationMethodCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationMethodCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public AuthenticationMethod post(@jakarta.annotation.Nonnull final Authenticatio return this.requestAdapter.send(requestInfo, errorMapping, AuthenticationMethod::createFromDiscriminatorValue); } /** - * Retrieve a list of authentication methods registered to a user. The authentication methods are defined by the types derived from the authenticationMethod resource type, and only the methods supported on this API version. See Microsoft Entra authentication methods API overview for a list of currently supported methods. We don't recommend using the authentication methods APIs for scenarios where you need to iterate over your entire user population for auditing or security check purposes. For these types of scenarios, we recommend using the authentication method registration and usage reporting APIs (available on the beta endpoint only). + * Represents all authentication methods registered to a user. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of authentication methods registered to a user. The authentication methods are defined by the types derived from the authenticationMethod resource type, and only the methods supported on this API version. See Microsoft Entra authentication methods API overview for a list of currently supported methods. We don't recommend using the authentication methods APIs for scenarios where you need to iterate over your entire user population for auditing or security check purposes. For these types of scenarios, we recommend using the authentication method registration and usage reporting APIs (available on the beta endpoint only). + * Represents all authentication methods registered to a user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public MethodsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new MethodsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of authentication methods registered to a user. The authentication methods are defined by the types derived from the authenticationMethod resource type, and only the methods supported on this API version. See Microsoft Entra authentication methods API overview for a list of currently supported methods. We don't recommend using the authentication methods APIs for scenarios where you need to iterate over your entire user population for auditing or security check purposes. For these types of scenarios, we recommend using the authentication method registration and usage reporting APIs (available on the beta endpoint only). + * Represents all authentication methods registered to a user. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/authentication/methods/item/AuthenticationMethodItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/authentication/methods/item/AuthenticationMethodItemRequestBuilder.java index 768da13ae6d..ce35e39826b 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/authentication/methods/item/AuthenticationMethodItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/authentication/methods/item/AuthenticationMethodItemRequestBuilder.java @@ -46,21 +46,19 @@ public AuthenticationMethodItemRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/users/{user%2Did}/authentication/methods/{authenticationMethod%2Did}{?%24expand,%24select}", rawUrl); } /** - * Retrieve the properties and relationships of an authenticationMethod object. + * Represents all authentication methods registered to a user. * @return a {@link AuthenticationMethod} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationMethod get() { return get(null); } /** - * Retrieve the properties and relationships of an authenticationMethod object. + * Represents all authentication methods registered to a user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AuthenticationMethod} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AuthenticationMethod get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -95,7 +93,7 @@ public AuthenticationMethod patch(@jakarta.annotation.Nonnull final Authenticati return this.requestAdapter.send(requestInfo, errorMapping, AuthenticationMethod::createFromDiscriminatorValue); } /** - * Retrieve the properties and relationships of an authenticationMethod object. + * Represents all authentication methods registered to a user. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -103,7 +101,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of an authenticationMethod object. + * Represents all authentication methods registered to a user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -149,7 +147,7 @@ public AuthenticationMethodItemRequestBuilder withUrl(@jakarta.annotation.Nonnul return new AuthenticationMethodItemRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the properties and relationships of an authenticationMethod object. + * Represents all authentication methods registered to a user. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/authentication/microsoftauthenticatormethods/MicrosoftAuthenticatorMethodsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/authentication/microsoftauthenticatormethods/MicrosoftAuthenticatorMethodsRequestBuilder.java index 4d6fc08947d..770936a4ff1 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/authentication/microsoftauthenticatormethods/MicrosoftAuthenticatorMethodsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/authentication/microsoftauthenticatormethods/MicrosoftAuthenticatorMethodsRequestBuilder.java @@ -59,21 +59,19 @@ public MicrosoftAuthenticatorMethodsRequestBuilder(@jakarta.annotation.Nonnull f super(requestAdapter, "{+baseurl}/users/{user%2Did}/authentication/microsoftAuthenticatorMethods{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the microsoftAuthenticatorAuthenticationMethod objects and their properties. + * The details of the Microsoft Authenticator app registered to a user for authentication. * @return a {@link MicrosoftAuthenticatorAuthenticationMethodCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MicrosoftAuthenticatorAuthenticationMethodCollectionResponse get() { return get(null); } /** - * Get a list of the microsoftAuthenticatorAuthenticationMethod objects and their properties. + * The details of the Microsoft Authenticator app registered to a user for authentication. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MicrosoftAuthenticatorAuthenticationMethodCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MicrosoftAuthenticatorAuthenticationMethodCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public MicrosoftAuthenticatorAuthenticationMethodCollectionResponse get(@jakarta return this.requestAdapter.send(requestInfo, errorMapping, MicrosoftAuthenticatorAuthenticationMethodCollectionResponse::createFromDiscriminatorValue); } /** - * Get a list of the microsoftAuthenticatorAuthenticationMethod objects and their properties. + * The details of the Microsoft Authenticator app registered to a user for authentication. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the microsoftAuthenticatorAuthenticationMethod objects and their properties. + * The details of the Microsoft Authenticator app registered to a user for authentication. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public MicrosoftAuthenticatorMethodsRequestBuilder withUrl(@jakarta.annotation.N return new MicrosoftAuthenticatorMethodsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the microsoftAuthenticatorAuthenticationMethod objects and their properties. + * The details of the Microsoft Authenticator app registered to a user for authentication. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/authentication/microsoftauthenticatormethods/item/MicrosoftAuthenticatorAuthenticationMethodItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/authentication/microsoftauthenticatormethods/item/MicrosoftAuthenticatorAuthenticationMethodItemRequestBuilder.java index b053944f178..ea145f35907 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/authentication/microsoftauthenticatormethods/item/MicrosoftAuthenticatorAuthenticationMethodItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/authentication/microsoftauthenticatormethods/item/MicrosoftAuthenticatorAuthenticationMethodItemRequestBuilder.java @@ -46,18 +46,16 @@ public MicrosoftAuthenticatorAuthenticationMethodItemRequestBuilder(@jakarta.ann super(requestAdapter, "{+baseurl}/users/{user%2Did}/authentication/microsoftAuthenticatorMethods/{microsoftAuthenticatorAuthenticationMethod%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a microsoftAuthenticatorAuthenticationMethod object. + * Delete navigation property microsoftAuthenticatorMethods for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a microsoftAuthenticatorAuthenticationMethod object. + * Delete navigation property microsoftAuthenticatorMethods for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a microsoftAuthenticatorAuthenticationMethod object. + * The details of the Microsoft Authenticator app registered to a user for authentication. * @return a {@link MicrosoftAuthenticatorAuthenticationMethod} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MicrosoftAuthenticatorAuthenticationMethod get() { return get(null); } /** - * Read the properties and relationships of a microsoftAuthenticatorAuthenticationMethod object. + * The details of the Microsoft Authenticator app registered to a user for authentication. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MicrosoftAuthenticatorAuthenticationMethod} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MicrosoftAuthenticatorAuthenticationMethod get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,7 +86,7 @@ public MicrosoftAuthenticatorAuthenticationMethod get(@jakarta.annotation.Nullab return this.requestAdapter.send(requestInfo, errorMapping, MicrosoftAuthenticatorAuthenticationMethod::createFromDiscriminatorValue); } /** - * Deletes a microsoftAuthenticatorAuthenticationMethod object. + * Delete navigation property microsoftAuthenticatorMethods for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -98,7 +94,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a microsoftAuthenticatorAuthenticationMethod object. + * Delete navigation property microsoftAuthenticatorMethods for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -110,7 +106,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a microsoftAuthenticatorAuthenticationMethod object. + * The details of the Microsoft Authenticator app registered to a user for authentication. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -118,7 +114,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a microsoftAuthenticatorAuthenticationMethod object. + * The details of the Microsoft Authenticator app registered to a user for authentication. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public MicrosoftAuthenticatorAuthenticationMethodItemRequestBuilder withUrl(@jak public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a microsoftAuthenticatorAuthenticationMethod object. + * The details of the Microsoft Authenticator app registered to a user for authentication. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/authentication/operations/OperationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/authentication/operations/OperationsRequestBuilder.java index 824ac29c788..5f890434735 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/authentication/operations/OperationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/authentication/operations/OperationsRequestBuilder.java @@ -60,7 +60,7 @@ public OperationsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/users/{user%2Did}/authentication/operations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the status of a long-running operation, represented by a longRunningOperation object. A long-running operation is initiated when you reset a user's password. This resource type is also the base type for the richLongRunningOperation object that represents the status of a long-running operation on a site or a list. The possible states of the long-running operation are notStarted, running, succeeded, failed, unknownFutureValue where succeeded and failed are terminal states. + * Represents the status of a long-running operation. * @return a {@link LongRunningOperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public LongRunningOperationCollectionResponse get() { return get(null); } /** - * Retrieve the status of a long-running operation, represented by a longRunningOperation object. A long-running operation is initiated when you reset a user's password. This resource type is also the base type for the richLongRunningOperation object that represents the status of a long-running operation on a site or a list. The possible states of the long-running operation are notStarted, running, succeeded, failed, unknownFutureValue where succeeded and failed are terminal states. + * Represents the status of a long-running operation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link LongRunningOperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public LongRunningOperation post(@jakarta.annotation.Nonnull final LongRunningOp return this.requestAdapter.send(requestInfo, errorMapping, LongRunningOperation::createFromDiscriminatorValue); } /** - * Retrieve the status of a long-running operation, represented by a longRunningOperation object. A long-running operation is initiated when you reset a user's password. This resource type is also the base type for the richLongRunningOperation object that represents the status of a long-running operation on a site or a list. The possible states of the long-running operation are notStarted, running, succeeded, failed, unknownFutureValue where succeeded and failed are terminal states. + * Represents the status of a long-running operation. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the status of a long-running operation, represented by a longRunningOperation object. A long-running operation is initiated when you reset a user's password. This resource type is also the base type for the richLongRunningOperation object that represents the status of a long-running operation on a site or a list. The possible states of the long-running operation are notStarted, running, succeeded, failed, unknownFutureValue where succeeded and failed are terminal states. + * Represents the status of a long-running operation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public OperationsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new OperationsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the status of a long-running operation, represented by a longRunningOperation object. A long-running operation is initiated when you reset a user's password. This resource type is also the base type for the richLongRunningOperation object that represents the status of a long-running operation on a site or a list. The possible states of the long-running operation are notStarted, running, succeeded, failed, unknownFutureValue where succeeded and failed are terminal states. + * Represents the status of a long-running operation. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/authentication/operations/item/LongRunningOperationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/authentication/operations/item/LongRunningOperationItemRequestBuilder.java index e21ede0fdae..b86e656d786 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/authentication/operations/item/LongRunningOperationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/authentication/operations/item/LongRunningOperationItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the status of a long-running operation, represented by a longRunningOperation object. A long-running operation is initiated when you reset a user's password. This resource type is also the base type for the richLongRunningOperation object that represents the status of a long-running operation on a site or a list. The possible states of the long-running operation are notStarted, running, succeeded, failed, unknownFutureValue where succeeded and failed are terminal states. + * Represents the status of a long-running operation. * @return a {@link LongRunningOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LongRunningOperation get() { return get(null); } /** - * Retrieve the status of a long-running operation, represented by a longRunningOperation object. A long-running operation is initiated when you reset a user's password. This resource type is also the base type for the richLongRunningOperation object that represents the status of a long-running operation on a site or a list. The possible states of the long-running operation are notStarted, running, succeeded, failed, unknownFutureValue where succeeded and failed are terminal states. + * Represents the status of a long-running operation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link LongRunningOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LongRunningOperation get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the status of a long-running operation, represented by a longRunningOperation object. A long-running operation is initiated when you reset a user's password. This resource type is also the base type for the richLongRunningOperation object that represents the status of a long-running operation on a site or a list. The possible states of the long-running operation are notStarted, running, succeeded, failed, unknownFutureValue where succeeded and failed are terminal states. + * Represents the status of a long-running operation. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the status of a long-running operation, represented by a longRunningOperation object. A long-running operation is initiated when you reset a user's password. This resource type is also the base type for the richLongRunningOperation object that represents the status of a long-running operation on a site or a list. The possible states of the long-running operation are notStarted, running, succeeded, failed, unknownFutureValue where succeeded and failed are terminal states. + * Represents the status of a long-running operation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public LongRunningOperationItemRequestBuilder withUrl(@jakarta.annotation.Nonnul public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the status of a long-running operation, represented by a longRunningOperation object. A long-running operation is initiated when you reset a user's password. This resource type is also the base type for the richLongRunningOperation object that represents the status of a long-running operation on a site or a list. The possible states of the long-running operation are notStarted, running, succeeded, failed, unknownFutureValue where succeeded and failed are terminal states. + * Represents the status of a long-running operation. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/authentication/passwordmethods/PasswordMethodsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/authentication/passwordmethods/PasswordMethodsRequestBuilder.java index d08cfe8f07f..be5ae5c5c63 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/authentication/passwordmethods/PasswordMethodsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/authentication/passwordmethods/PasswordMethodsRequestBuilder.java @@ -60,21 +60,19 @@ public PasswordMethodsRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/users/{user%2Did}/authentication/passwordMethods{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of the passwords registered to a user, represented by a passwordAuthenticationMethod object. This API returns exactly one object, as a user can have exactly one password. For security, the password itself will never be returned in the object and the password property is always null. + * Represents the password that's registered to a user for authentication. For security, the password itself will never be returned in the object, but action can be taken to reset a password. * @return a {@link PasswordAuthenticationMethodCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PasswordAuthenticationMethodCollectionResponse get() { return get(null); } /** - * Retrieve a list of the passwords registered to a user, represented by a passwordAuthenticationMethod object. This API returns exactly one object, as a user can have exactly one password. For security, the password itself will never be returned in the object and the password property is always null. + * Represents the password that's registered to a user for authentication. For security, the password itself will never be returned in the object, but action can be taken to reset a password. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PasswordAuthenticationMethodCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PasswordAuthenticationMethodCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public PasswordAuthenticationMethod post(@jakarta.annotation.Nonnull final Passw return this.requestAdapter.send(requestInfo, errorMapping, PasswordAuthenticationMethod::createFromDiscriminatorValue); } /** - * Retrieve a list of the passwords registered to a user, represented by a passwordAuthenticationMethod object. This API returns exactly one object, as a user can have exactly one password. For security, the password itself will never be returned in the object and the password property is always null. + * Represents the password that's registered to a user for authentication. For security, the password itself will never be returned in the object, but action can be taken to reset a password. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of the passwords registered to a user, represented by a passwordAuthenticationMethod object. This API returns exactly one object, as a user can have exactly one password. For security, the password itself will never be returned in the object and the password property is always null. + * Represents the password that's registered to a user for authentication. For security, the password itself will never be returned in the object, but action can be taken to reset a password. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public PasswordMethodsRequestBuilder withUrl(@jakarta.annotation.Nonnull final S return new PasswordMethodsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of the passwords registered to a user, represented by a passwordAuthenticationMethod object. This API returns exactly one object, as a user can have exactly one password. For security, the password itself will never be returned in the object and the password property is always null. + * Represents the password that's registered to a user for authentication. For security, the password itself will never be returned in the object, but action can be taken to reset a password. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/authentication/passwordmethods/item/PasswordAuthenticationMethodItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/authentication/passwordmethods/item/PasswordAuthenticationMethodItemRequestBuilder.java index ddd9aeab20c..8debacce071 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/authentication/passwordmethods/item/PasswordAuthenticationMethodItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/authentication/passwordmethods/item/PasswordAuthenticationMethodItemRequestBuilder.java @@ -37,21 +37,19 @@ public PasswordAuthenticationMethodItemRequestBuilder(@jakarta.annotation.Nonnul super(requestAdapter, "{+baseurl}/users/{user%2Did}/authentication/passwordMethods/{passwordAuthenticationMethod%2Did}{?%24expand,%24select}", rawUrl); } /** - * Retrieve a password that's registered to a user, represented by a passwordAuthenticationMethod object. For security, the password itself will never be returned in the object and the password property is always null. + * Represents the password that's registered to a user for authentication. For security, the password itself will never be returned in the object, but action can be taken to reset a password. * @return a {@link PasswordAuthenticationMethod} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PasswordAuthenticationMethod get() { return get(null); } /** - * Retrieve a password that's registered to a user, represented by a passwordAuthenticationMethod object. For security, the password itself will never be returned in the object and the password property is always null. + * Represents the password that's registered to a user for authentication. For security, the password itself will never be returned in the object, but action can be taken to reset a password. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PasswordAuthenticationMethod} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PasswordAuthenticationMethod get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -61,7 +59,7 @@ public PasswordAuthenticationMethod get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, PasswordAuthenticationMethod::createFromDiscriminatorValue); } /** - * Retrieve a password that's registered to a user, represented by a passwordAuthenticationMethod object. For security, the password itself will never be returned in the object and the password property is always null. + * Represents the password that's registered to a user for authentication. For security, the password itself will never be returned in the object, but action can be taken to reset a password. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -69,7 +67,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a password that's registered to a user, represented by a passwordAuthenticationMethod object. For security, the password itself will never be returned in the object and the password property is always null. + * Represents the password that's registered to a user for authentication. For security, the password itself will never be returned in the object, but action can be taken to reset a password. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -91,7 +89,7 @@ public PasswordAuthenticationMethodItemRequestBuilder withUrl(@jakarta.annotatio return new PasswordAuthenticationMethodItemRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a password that's registered to a user, represented by a passwordAuthenticationMethod object. For security, the password itself will never be returned in the object and the password property is always null. + * Represents the password that's registered to a user for authentication. For security, the password itself will never be returned in the object, but action can be taken to reset a password. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/authentication/phonemethods/PhoneMethodsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/authentication/phonemethods/PhoneMethodsRequestBuilder.java index 29e54e997db..feda940807a 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/authentication/phonemethods/PhoneMethodsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/authentication/phonemethods/PhoneMethodsRequestBuilder.java @@ -60,21 +60,19 @@ public PhoneMethodsRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/users/{user%2Did}/authentication/phoneMethods{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of phone authentication method objects for a user. This will return up to three objects, as a user can have up to three phones usable for authentication. This method is available only for standard Microsoft Entra ID and B2B users, but not B2C users. + * The phone numbers registered to a user for authentication. * @return a {@link PhoneAuthenticationMethodCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PhoneAuthenticationMethodCollectionResponse get() { return get(null); } /** - * Retrieve a list of phone authentication method objects for a user. This will return up to three objects, as a user can have up to three phones usable for authentication. This method is available only for standard Microsoft Entra ID and B2B users, but not B2C users. + * The phone numbers registered to a user for authentication. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PhoneAuthenticationMethodCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PhoneAuthenticationMethodCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public PhoneAuthenticationMethodCollectionResponse get(@jakarta.annotation.Nulla return this.requestAdapter.send(requestInfo, errorMapping, PhoneAuthenticationMethodCollectionResponse::createFromDiscriminatorValue); } /** - * Add a new phone authentication method for a user. A user may only have one phone of each type, captured in the phoneType property. This means, for example, adding a mobile phone to a user with a pre-existing mobile phone fails. Additionally, a user must always have a mobile phone before adding an alternateMobile phone. Adding a phone number makes it available for use in both Azure multi-factor authentication (MFA) and self-service password reset (SSPR), if enabled. Additionally, if a user is enabled by policy to use SMS sign-in and a mobile number is added, the system attempts to register the number for use in that system. + * Create new navigation property to phoneMethods for users * @param body The request body * @return a {@link PhoneAuthenticationMethod} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PhoneAuthenticationMethod post(@jakarta.annotation.Nonnull final PhoneAuthenticationMethod body) { return post(body, null); } /** - * Add a new phone authentication method for a user. A user may only have one phone of each type, captured in the phoneType property. This means, for example, adding a mobile phone to a user with a pre-existing mobile phone fails. Additionally, a user must always have a mobile phone before adding an alternateMobile phone. Adding a phone number makes it available for use in both Azure multi-factor authentication (MFA) and self-service password reset (SSPR), if enabled. Additionally, if a user is enabled by policy to use SMS sign-in and a mobile number is added, the system attempts to register the number for use in that system. + * Create new navigation property to phoneMethods for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PhoneAuthenticationMethod} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PhoneAuthenticationMethod post(@jakarta.annotation.Nonnull final PhoneAuthenticationMethod body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public PhoneAuthenticationMethod post(@jakarta.annotation.Nonnull final PhoneAut return this.requestAdapter.send(requestInfo, errorMapping, PhoneAuthenticationMethod::createFromDiscriminatorValue); } /** - * Retrieve a list of phone authentication method objects for a user. This will return up to three objects, as a user can have up to three phones usable for authentication. This method is available only for standard Microsoft Entra ID and B2B users, but not B2C users. + * The phone numbers registered to a user for authentication. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of phone authentication method objects for a user. This will return up to three objects, as a user can have up to three phones usable for authentication. This method is available only for standard Microsoft Entra ID and B2B users, but not B2C users. + * The phone numbers registered to a user for authentication. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add a new phone authentication method for a user. A user may only have one phone of each type, captured in the phoneType property. This means, for example, adding a mobile phone to a user with a pre-existing mobile phone fails. Additionally, a user must always have a mobile phone before adding an alternateMobile phone. Adding a phone number makes it available for use in both Azure multi-factor authentication (MFA) and self-service password reset (SSPR), if enabled. Additionally, if a user is enabled by policy to use SMS sign-in and a mobile number is added, the system attempts to register the number for use in that system. + * Create new navigation property to phoneMethods for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add a new phone authentication method for a user. A user may only have one phone of each type, captured in the phoneType property. This means, for example, adding a mobile phone to a user with a pre-existing mobile phone fails. Additionally, a user must always have a mobile phone before adding an alternateMobile phone. Adding a phone number makes it available for use in both Azure multi-factor authentication (MFA) and self-service password reset (SSPR), if enabled. Additionally, if a user is enabled by policy to use SMS sign-in and a mobile number is added, the system attempts to register the number for use in that system. + * Create new navigation property to phoneMethods for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public PhoneMethodsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri return new PhoneMethodsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of phone authentication method objects for a user. This will return up to three objects, as a user can have up to three phones usable for authentication. This method is available only for standard Microsoft Entra ID and B2B users, but not B2C users. + * The phone numbers registered to a user for authentication. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/authentication/phonemethods/item/PhoneAuthenticationMethodItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/authentication/phonemethods/item/PhoneAuthenticationMethodItemRequestBuilder.java index 1a065730765..c133cc199d9 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/authentication/phonemethods/item/PhoneAuthenticationMethodItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/authentication/phonemethods/item/PhoneAuthenticationMethodItemRequestBuilder.java @@ -55,18 +55,16 @@ public PhoneAuthenticationMethodItemRequestBuilder(@jakarta.annotation.Nonnull f super(requestAdapter, "{+baseurl}/users/{user%2Did}/authentication/phoneMethods/{phoneAuthenticationMethod%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a user's phone authentication method. This removes the phone number from the user and they'll no longer be able to use the number for authentication, whether via SMS or voice calls. A user can't have an alternateMobile number without a mobile number. If you want to remove a mobile number from a user that also has an alternateMobile number, first update the mobile number to the new number, then delete the alternateMobile number. If the phone number is the user's default Azure multi-factor authentication (MFA) authentication method, it can't be deleted. Have the user change their default authentication method, and then delete the number. + * Delete navigation property phoneMethods for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a user's phone authentication method. This removes the phone number from the user and they'll no longer be able to use the number for authentication, whether via SMS or voice calls. A user can't have an alternateMobile number without a mobile number. If you want to remove a mobile number from a user that also has an alternateMobile number, first update the mobile number to the new number, then delete the alternateMobile number. If the phone number is the user's default Azure multi-factor authentication (MFA) authentication method, it can't be deleted. Have the user change their default authentication method, and then delete the number. + * Delete navigation property phoneMethods for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -75,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a single phoneAuthenticationMethod object for a user. This method is available only for standard Microsoft Entra ID and B2B users, but not B2C users. + * The phone numbers registered to a user for authentication. * @return a {@link PhoneAuthenticationMethod} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PhoneAuthenticationMethod get() { return get(null); } /** - * Retrieve a single phoneAuthenticationMethod object for a user. This method is available only for standard Microsoft Entra ID and B2B users, but not B2C users. + * The phone numbers registered to a user for authentication. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PhoneAuthenticationMethod} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PhoneAuthenticationMethod get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -99,23 +95,21 @@ public PhoneAuthenticationMethod get(@jakarta.annotation.Nullable final java.uti return this.requestAdapter.send(requestInfo, errorMapping, PhoneAuthenticationMethod::createFromDiscriminatorValue); } /** - * Update a user's phone number associated with a phone authentication method object. You can't change a phone's type. To change a phone's type, add a new number of the desired type and then delete the object with the original type. If a user is enabled by policy to use SMS to sign in and the mobile number is changed, the system will attempt to register the number for use in that system. + * Update the navigation property phoneMethods in users * @param body The request body * @return a {@link PhoneAuthenticationMethod} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PhoneAuthenticationMethod patch(@jakarta.annotation.Nonnull final PhoneAuthenticationMethod body) { return patch(body, null); } /** - * Update a user's phone number associated with a phone authentication method object. You can't change a phone's type. To change a phone's type, add a new number of the desired type and then delete the object with the original type. If a user is enabled by policy to use SMS to sign in and the mobile number is changed, the system will attempt to register the number for use in that system. + * Update the navigation property phoneMethods in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PhoneAuthenticationMethod} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PhoneAuthenticationMethod patch(@jakarta.annotation.Nonnull final PhoneAuthenticationMethod body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +120,7 @@ public PhoneAuthenticationMethod patch(@jakarta.annotation.Nonnull final PhoneAu return this.requestAdapter.send(requestInfo, errorMapping, PhoneAuthenticationMethod::createFromDiscriminatorValue); } /** - * Delete a user's phone authentication method. This removes the phone number from the user and they'll no longer be able to use the number for authentication, whether via SMS or voice calls. A user can't have an alternateMobile number without a mobile number. If you want to remove a mobile number from a user that also has an alternateMobile number, first update the mobile number to the new number, then delete the alternateMobile number. If the phone number is the user's default Azure multi-factor authentication (MFA) authentication method, it can't be deleted. Have the user change their default authentication method, and then delete the number. + * Delete navigation property phoneMethods for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +128,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a user's phone authentication method. This removes the phone number from the user and they'll no longer be able to use the number for authentication, whether via SMS or voice calls. A user can't have an alternateMobile number without a mobile number. If you want to remove a mobile number from a user that also has an alternateMobile number, first update the mobile number to the new number, then delete the alternateMobile number. If the phone number is the user's default Azure multi-factor authentication (MFA) authentication method, it can't be deleted. Have the user change their default authentication method, and then delete the number. + * Delete navigation property phoneMethods for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a single phoneAuthenticationMethod object for a user. This method is available only for standard Microsoft Entra ID and B2B users, but not B2C users. + * The phone numbers registered to a user for authentication. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -154,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a single phoneAuthenticationMethod object for a user. This method is available only for standard Microsoft Entra ID and B2B users, but not B2C users. + * The phone numbers registered to a user for authentication. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update a user's phone number associated with a phone authentication method object. You can't change a phone's type. To change a phone's type, add a new number of the desired type and then delete the object with the original type. If a user is enabled by policy to use SMS to sign in and the mobile number is changed, the system will attempt to register the number for use in that system. + * Update the navigation property phoneMethods in users * @param body The request body * @return a {@link RequestInformation} */ @@ -175,7 +169,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update a user's phone number associated with a phone authentication method object. You can't change a phone's type. To change a phone's type, add a new number of the desired type and then delete the object with the original type. If a user is enabled by policy to use SMS to sign in and the mobile number is changed, the system will attempt to register the number for use in that system. + * Update the navigation property phoneMethods in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -206,7 +200,7 @@ public PhoneAuthenticationMethodItemRequestBuilder withUrl(@jakarta.annotation.N public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve a single phoneAuthenticationMethod object for a user. This method is available only for standard Microsoft Entra ID and B2B users, but not B2C users. + * The phone numbers registered to a user for authentication. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/authentication/softwareoathmethods/SoftwareOathMethodsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/authentication/softwareoathmethods/SoftwareOathMethodsRequestBuilder.java index bcdd59a1b65..9cc41b7dac6 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/authentication/softwareoathmethods/SoftwareOathMethodsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/authentication/softwareoathmethods/SoftwareOathMethodsRequestBuilder.java @@ -59,21 +59,19 @@ public SoftwareOathMethodsRequestBuilder(@jakarta.annotation.Nonnull final Strin super(requestAdapter, "{+baseurl}/users/{user%2Did}/authentication/softwareOathMethods{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of a user's software OATH token authentication method objects and their properties. + * The software OATH TOTP applications registered to a user for authentication. * @return a {@link SoftwareOathAuthenticationMethodCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SoftwareOathAuthenticationMethodCollectionResponse get() { return get(null); } /** - * Retrieve a list of a user's software OATH token authentication method objects and their properties. + * The software OATH TOTP applications registered to a user for authentication. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SoftwareOathAuthenticationMethodCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SoftwareOathAuthenticationMethodCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public SoftwareOathAuthenticationMethodCollectionResponse get(@jakarta.annotatio return this.requestAdapter.send(requestInfo, errorMapping, SoftwareOathAuthenticationMethodCollectionResponse::createFromDiscriminatorValue); } /** - * Retrieve a list of a user's software OATH token authentication method objects and their properties. + * The software OATH TOTP applications registered to a user for authentication. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of a user's software OATH token authentication method objects and their properties. + * The software OATH TOTP applications registered to a user for authentication. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public SoftwareOathMethodsRequestBuilder withUrl(@jakarta.annotation.Nonnull fin return new SoftwareOathMethodsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of a user's software OATH token authentication method objects and their properties. + * The software OATH TOTP applications registered to a user for authentication. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/authentication/softwareoathmethods/item/SoftwareOathAuthenticationMethodItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/authentication/softwareoathmethods/item/SoftwareOathAuthenticationMethodItemRequestBuilder.java index ad7b004325a..58e0e34e161 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/authentication/softwareoathmethods/item/SoftwareOathAuthenticationMethodItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/authentication/softwareoathmethods/item/SoftwareOathAuthenticationMethodItemRequestBuilder.java @@ -37,18 +37,16 @@ public SoftwareOathAuthenticationMethodItemRequestBuilder(@jakarta.annotation.No super(requestAdapter, "{+baseurl}/users/{user%2Did}/authentication/softwareOathMethods/{softwareOathAuthenticationMethod%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a user's Software OATH token authentication method object. + * Delete navigation property softwareOathMethods for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a user's Software OATH token authentication method object. + * Delete navigation property softwareOathMethods for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a user's single Software OATH token authentication method object and its properties. + * The software OATH TOTP applications registered to a user for authentication. * @return a {@link SoftwareOathAuthenticationMethod} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SoftwareOathAuthenticationMethod get() { return get(null); } /** - * Retrieve a user's single Software OATH token authentication method object and its properties. + * The software OATH TOTP applications registered to a user for authentication. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SoftwareOathAuthenticationMethod} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SoftwareOathAuthenticationMethod get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,7 +77,7 @@ public SoftwareOathAuthenticationMethod get(@jakarta.annotation.Nullable final j return this.requestAdapter.send(requestInfo, errorMapping, SoftwareOathAuthenticationMethod::createFromDiscriminatorValue); } /** - * Delete a user's Software OATH token authentication method object. + * Delete navigation property softwareOathMethods for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -89,7 +85,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a user's Software OATH token authentication method object. + * Delete navigation property softwareOathMethods for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -101,7 +97,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a user's single Software OATH token authentication method object and its properties. + * The software OATH TOTP applications registered to a user for authentication. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -109,7 +105,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a user's single Software OATH token authentication method object and its properties. + * The software OATH TOTP applications registered to a user for authentication. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +133,7 @@ public SoftwareOathAuthenticationMethodItemRequestBuilder withUrl(@jakarta.annot public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve a user's single Software OATH token authentication method object and its properties. + * The software OATH TOTP applications registered to a user for authentication. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/authentication/temporaryaccesspassmethods/TemporaryAccessPassMethodsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/authentication/temporaryaccesspassmethods/TemporaryAccessPassMethodsRequestBuilder.java index 5b285d92713..2f70937a931 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/authentication/temporaryaccesspassmethods/TemporaryAccessPassMethodsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/authentication/temporaryaccesspassmethods/TemporaryAccessPassMethodsRequestBuilder.java @@ -60,21 +60,19 @@ public TemporaryAccessPassMethodsRequestBuilder(@jakarta.annotation.Nonnull fina super(requestAdapter, "{+baseurl}/users/{user%2Did}/authentication/temporaryAccessPassMethods{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of a user's temporaryAccessPassAuthenticationMethod objects and their properties. This API will only return a single object in the collection as a user can have only one Temporary Access Pass method. + * Represents a Temporary Access Pass registered to a user for authentication through time-limited passcodes. * @return a {@link TemporaryAccessPassAuthenticationMethodCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TemporaryAccessPassAuthenticationMethodCollectionResponse get() { return get(null); } /** - * Retrieve a list of a user's temporaryAccessPassAuthenticationMethod objects and their properties. This API will only return a single object in the collection as a user can have only one Temporary Access Pass method. + * Represents a Temporary Access Pass registered to a user for authentication through time-limited passcodes. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TemporaryAccessPassAuthenticationMethodCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TemporaryAccessPassAuthenticationMethodCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TemporaryAccessPassAuthenticationMethodCollectionResponse get(@jakarta.an return this.requestAdapter.send(requestInfo, errorMapping, TemporaryAccessPassAuthenticationMethodCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new temporaryAccessPassAuthenticationMethod object on a user. A user can only have one Temporary Access Pass that's usable within its specified lifetime. If the user requires a new Temporary Access Pass while the current Temporary Access Pass is valid, the admin can create a new Temporary Access Pass for the user, the previous Temporary Access Pass will be deleted, and a new Temporary Access Pass will be created. + * Create new navigation property to temporaryAccessPassMethods for users * @param body The request body * @return a {@link TemporaryAccessPassAuthenticationMethod} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TemporaryAccessPassAuthenticationMethod post(@jakarta.annotation.Nonnull final TemporaryAccessPassAuthenticationMethod body) { return post(body, null); } /** - * Create a new temporaryAccessPassAuthenticationMethod object on a user. A user can only have one Temporary Access Pass that's usable within its specified lifetime. If the user requires a new Temporary Access Pass while the current Temporary Access Pass is valid, the admin can create a new Temporary Access Pass for the user, the previous Temporary Access Pass will be deleted, and a new Temporary Access Pass will be created. + * Create new navigation property to temporaryAccessPassMethods for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TemporaryAccessPassAuthenticationMethod} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TemporaryAccessPassAuthenticationMethod post(@jakarta.annotation.Nonnull final TemporaryAccessPassAuthenticationMethod body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public TemporaryAccessPassAuthenticationMethod post(@jakarta.annotation.Nonnull return this.requestAdapter.send(requestInfo, errorMapping, TemporaryAccessPassAuthenticationMethod::createFromDiscriminatorValue); } /** - * Retrieve a list of a user's temporaryAccessPassAuthenticationMethod objects and their properties. This API will only return a single object in the collection as a user can have only one Temporary Access Pass method. + * Represents a Temporary Access Pass registered to a user for authentication through time-limited passcodes. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of a user's temporaryAccessPassAuthenticationMethod objects and their properties. This API will only return a single object in the collection as a user can have only one Temporary Access Pass method. + * Represents a Temporary Access Pass registered to a user for authentication through time-limited passcodes. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new temporaryAccessPassAuthenticationMethod object on a user. A user can only have one Temporary Access Pass that's usable within its specified lifetime. If the user requires a new Temporary Access Pass while the current Temporary Access Pass is valid, the admin can create a new Temporary Access Pass for the user, the previous Temporary Access Pass will be deleted, and a new Temporary Access Pass will be created. + * Create new navigation property to temporaryAccessPassMethods for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new temporaryAccessPassAuthenticationMethod object on a user. A user can only have one Temporary Access Pass that's usable within its specified lifetime. If the user requires a new Temporary Access Pass while the current Temporary Access Pass is valid, the admin can create a new Temporary Access Pass for the user, the previous Temporary Access Pass will be deleted, and a new Temporary Access Pass will be created. + * Create new navigation property to temporaryAccessPassMethods for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public TemporaryAccessPassMethodsRequestBuilder withUrl(@jakarta.annotation.Nonn return new TemporaryAccessPassMethodsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of a user's temporaryAccessPassAuthenticationMethod objects and their properties. This API will only return a single object in the collection as a user can have only one Temporary Access Pass method. + * Represents a Temporary Access Pass registered to a user for authentication through time-limited passcodes. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/authentication/temporaryaccesspassmethods/item/TemporaryAccessPassAuthenticationMethodItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/authentication/temporaryaccesspassmethods/item/TemporaryAccessPassAuthenticationMethodItemRequestBuilder.java index ba57bfd05fb..00ec8b53bb8 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/authentication/temporaryaccesspassmethods/item/TemporaryAccessPassAuthenticationMethodItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/authentication/temporaryaccesspassmethods/item/TemporaryAccessPassAuthenticationMethodItemRequestBuilder.java @@ -37,18 +37,16 @@ public TemporaryAccessPassAuthenticationMethodItemRequestBuilder(@jakarta.annota super(requestAdapter, "{+baseurl}/users/{user%2Did}/authentication/temporaryAccessPassMethods/{temporaryAccessPassAuthenticationMethod%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a users's temporaryAccessPassAuthenticationMethod object. + * Delete navigation property temporaryAccessPassMethods for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a users's temporaryAccessPassAuthenticationMethod object. + * Delete navigation property temporaryAccessPassMethods for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a user's single temporaryAccessPassAuthenticationMethod object. + * Represents a Temporary Access Pass registered to a user for authentication through time-limited passcodes. * @return a {@link TemporaryAccessPassAuthenticationMethod} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TemporaryAccessPassAuthenticationMethod get() { return get(null); } /** - * Retrieve a user's single temporaryAccessPassAuthenticationMethod object. + * Represents a Temporary Access Pass registered to a user for authentication through time-limited passcodes. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TemporaryAccessPassAuthenticationMethod} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TemporaryAccessPassAuthenticationMethod get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,7 +77,7 @@ public TemporaryAccessPassAuthenticationMethod get(@jakarta.annotation.Nullable return this.requestAdapter.send(requestInfo, errorMapping, TemporaryAccessPassAuthenticationMethod::createFromDiscriminatorValue); } /** - * Delete a users's temporaryAccessPassAuthenticationMethod object. + * Delete navigation property temporaryAccessPassMethods for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -89,7 +85,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a users's temporaryAccessPassAuthenticationMethod object. + * Delete navigation property temporaryAccessPassMethods for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -101,7 +97,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a user's single temporaryAccessPassAuthenticationMethod object. + * Represents a Temporary Access Pass registered to a user for authentication through time-limited passcodes. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -109,7 +105,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a user's single temporaryAccessPassAuthenticationMethod object. + * Represents a Temporary Access Pass registered to a user for authentication through time-limited passcodes. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +133,7 @@ public TemporaryAccessPassAuthenticationMethodItemRequestBuilder withUrl(@jakart public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve a user's single temporaryAccessPassAuthenticationMethod object. + * Represents a Temporary Access Pass registered to a user for authentication through time-limited passcodes. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/authentication/windowshelloforbusinessmethods/WindowsHelloForBusinessMethodsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/authentication/windowshelloforbusinessmethods/WindowsHelloForBusinessMethodsRequestBuilder.java index 322e6d989c7..8858c9a2c34 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/authentication/windowshelloforbusinessmethods/WindowsHelloForBusinessMethodsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/authentication/windowshelloforbusinessmethods/WindowsHelloForBusinessMethodsRequestBuilder.java @@ -59,21 +59,19 @@ public WindowsHelloForBusinessMethodsRequestBuilder(@jakarta.annotation.Nonnull super(requestAdapter, "{+baseurl}/users/{user%2Did}/authentication/windowsHelloForBusinessMethods{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the windowsHelloForBusinessAuthenticationMethod objects and their properties. + * Represents the Windows Hello for Business authentication method registered to a user for authentication. * @return a {@link WindowsHelloForBusinessAuthenticationMethodCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsHelloForBusinessAuthenticationMethodCollectionResponse get() { return get(null); } /** - * Get a list of the windowsHelloForBusinessAuthenticationMethod objects and their properties. + * Represents the Windows Hello for Business authentication method registered to a user for authentication. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WindowsHelloForBusinessAuthenticationMethodCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsHelloForBusinessAuthenticationMethodCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public WindowsHelloForBusinessAuthenticationMethodCollectionResponse get(@jakart return this.requestAdapter.send(requestInfo, errorMapping, WindowsHelloForBusinessAuthenticationMethodCollectionResponse::createFromDiscriminatorValue); } /** - * Get a list of the windowsHelloForBusinessAuthenticationMethod objects and their properties. + * Represents the Windows Hello for Business authentication method registered to a user for authentication. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the windowsHelloForBusinessAuthenticationMethod objects and their properties. + * Represents the Windows Hello for Business authentication method registered to a user for authentication. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public WindowsHelloForBusinessMethodsRequestBuilder withUrl(@jakarta.annotation. return new WindowsHelloForBusinessMethodsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the windowsHelloForBusinessAuthenticationMethod objects and their properties. + * Represents the Windows Hello for Business authentication method registered to a user for authentication. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/authentication/windowshelloforbusinessmethods/item/WindowsHelloForBusinessAuthenticationMethodItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/authentication/windowshelloforbusinessmethods/item/WindowsHelloForBusinessAuthenticationMethodItemRequestBuilder.java index d26e492bc19..56eacc11930 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/authentication/windowshelloforbusinessmethods/item/WindowsHelloForBusinessAuthenticationMethodItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/authentication/windowshelloforbusinessmethods/item/WindowsHelloForBusinessAuthenticationMethodItemRequestBuilder.java @@ -46,18 +46,16 @@ public WindowsHelloForBusinessAuthenticationMethodItemRequestBuilder(@jakarta.an super(requestAdapter, "{+baseurl}/users/{user%2Did}/authentication/windowsHelloForBusinessMethods/{windowsHelloForBusinessAuthenticationMethod%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a windowsHelloForBusinessAuthenticationMethod object. + * Delete navigation property windowsHelloForBusinessMethods for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a windowsHelloForBusinessAuthenticationMethod object. + * Delete navigation property windowsHelloForBusinessMethods for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a windowsHelloForBusinessAuthenticationMethod object. + * Represents the Windows Hello for Business authentication method registered to a user for authentication. * @return a {@link WindowsHelloForBusinessAuthenticationMethod} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsHelloForBusinessAuthenticationMethod get() { return get(null); } /** - * Read the properties and relationships of a windowsHelloForBusinessAuthenticationMethod object. + * Represents the Windows Hello for Business authentication method registered to a user for authentication. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WindowsHelloForBusinessAuthenticationMethod} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsHelloForBusinessAuthenticationMethod get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,7 +86,7 @@ public WindowsHelloForBusinessAuthenticationMethod get(@jakarta.annotation.Nulla return this.requestAdapter.send(requestInfo, errorMapping, WindowsHelloForBusinessAuthenticationMethod::createFromDiscriminatorValue); } /** - * Deletes a windowsHelloForBusinessAuthenticationMethod object. + * Delete navigation property windowsHelloForBusinessMethods for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -98,7 +94,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a windowsHelloForBusinessAuthenticationMethod object. + * Delete navigation property windowsHelloForBusinessMethods for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -110,7 +106,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a windowsHelloForBusinessAuthenticationMethod object. + * Represents the Windows Hello for Business authentication method registered to a user for authentication. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -118,7 +114,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a windowsHelloForBusinessAuthenticationMethod object. + * Represents the Windows Hello for Business authentication method registered to a user for authentication. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public WindowsHelloForBusinessAuthenticationMethodItemRequestBuilder withUrl(@ja public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a windowsHelloForBusinessAuthenticationMethod object. + * Represents the Windows Hello for Business authentication method registered to a user for authentication. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendar/CalendarRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendar/CalendarRequestBuilder.java index 07c4b955608..b92ec51608f 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendar/CalendarRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendar/CalendarRequestBuilder.java @@ -84,41 +84,19 @@ public CalendarRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendar{?%24select}", rawUrl); } /** - * Delete a calendar other than the default calendar. - * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here - */ - public void delete() { - delete(null); - } - /** - * Delete a calendar other than the default calendar. - * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. - * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here - */ - public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { - final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); - final HashMap> errorMapping = new HashMap>(); - errorMapping.put("XXX", ODataError::createFromDiscriminatorValue); - this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); - } - /** - * Get the properties and relationships of a calendar object. The calendar can be one for a user,or the default calendar of a Microsoft 365 group. There are two scenarios where an app can get another user's calendar: + * The user's primary calendar. Read-only. * @return a {@link Calendar} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Calendar get() { return get(null); } /** - * Get the properties and relationships of a calendar object. The calendar can be one for a user,or the default calendar of a Microsoft 365 group. There are two scenarios where an app can get another user's calendar: + * The user's primary calendar. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Calendar} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Calendar get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -128,23 +106,21 @@ public Calendar get(@jakarta.annotation.Nullable final java.util.function.Consum return this.requestAdapter.send(requestInfo, errorMapping, Calendar::createFromDiscriminatorValue); } /** - * Update the properties of a calendar object. The calendar can be one for a user,or the default calendar of a Microsoft 365 group. + * Update the navigation property calendar in users * @param body The request body * @return a {@link Calendar} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Calendar patch(@jakarta.annotation.Nonnull final Calendar body) { return patch(body, null); } /** - * Update the properties of a calendar object. The calendar can be one for a user,or the default calendar of a Microsoft 365 group. + * Update the navigation property calendar in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Calendar} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Calendar patch(@jakarta.annotation.Nonnull final Calendar body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -155,27 +131,7 @@ public Calendar patch(@jakarta.annotation.Nonnull final Calendar body, @jakarta. return this.requestAdapter.send(requestInfo, errorMapping, Calendar::createFromDiscriminatorValue); } /** - * Delete a calendar other than the default calendar. - * @return a {@link RequestInformation} - */ - @jakarta.annotation.Nonnull - public RequestInformation toDeleteRequestInformation() { - return toDeleteRequestInformation(null); - } - /** - * Delete a calendar other than the default calendar. - * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. - * @return a {@link RequestInformation} - */ - @jakarta.annotation.Nonnull - public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { - final RequestInformation requestInfo = new RequestInformation(HttpMethod.DELETE, urlTemplate, pathParameters); - requestInfo.configure(requestConfiguration, DeleteRequestConfiguration::new); - requestInfo.headers.tryAdd("Accept", "application/json"); - return requestInfo; - } - /** - * Get the properties and relationships of a calendar object. The calendar can be one for a user,or the default calendar of a Microsoft 365 group. There are two scenarios where an app can get another user's calendar: + * The user's primary calendar. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -183,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the properties and relationships of a calendar object. The calendar can be one for a user,or the default calendar of a Microsoft 365 group. There are two scenarios where an app can get another user's calendar: + * The user's primary calendar. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -195,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a calendar object. The calendar can be one for a user,or the default calendar of a Microsoft 365 group. + * Update the navigation property calendar in users * @param body The request body * @return a {@link RequestInformation} */ @@ -204,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a calendar object. The calendar can be one for a user,or the default calendar of a Microsoft 365 group. + * Update the navigation property calendar in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -229,13 +185,7 @@ public CalendarRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new CalendarRequestBuilder(rawUrl, requestAdapter); } /** - * Configuration for the request such as headers, query parameters, and middleware options. - */ - @jakarta.annotation.Generated("com.microsoft.kiota") - public class DeleteRequestConfiguration extends BaseRequestConfiguration { - } - /** - * Get the properties and relationships of a calendar object. The calendar can be one for a user,or the default calendar of a Microsoft 365 group. There are two scenarios where an app can get another user's calendar: + * The user's primary calendar. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarpermissions/CalendarPermissionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarpermissions/CalendarPermissionsRequestBuilder.java index 78c20d96717..1bd24b2d8e1 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarpermissions/CalendarPermissionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarpermissions/CalendarPermissionsRequestBuilder.java @@ -60,21 +60,19 @@ public CalendarPermissionsRequestBuilder(@jakarta.annotation.Nonnull final Strin super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendar/calendarPermissions{?%24count,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get a collection of calendarPermission resources that describe the identity and roles of users with whom the specified calendar has been shared or delegated. Here, the calendar can be a user calendar or group calendar. + * The permissions of the users with whom the calendar is shared. * @return a {@link CalendarPermissionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarPermissionCollectionResponse get() { return get(null); } /** - * Get a collection of calendarPermission resources that describe the identity and roles of users with whom the specified calendar has been shared or delegated. Here, the calendar can be a user calendar or group calendar. + * The permissions of the users with whom the calendar is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CalendarPermissionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarPermissionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public CalendarPermissionCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, CalendarPermissionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a calendarPermission resource to specify the identity and role of the user with whom the specified calendar is being shared or delegated. + * Create new navigation property to calendarPermissions for users * @param body The request body * @return a {@link CalendarPermission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarPermission post(@jakarta.annotation.Nonnull final CalendarPermission body) { return post(body, null); } /** - * Create a calendarPermission resource to specify the identity and role of the user with whom the specified calendar is being shared or delegated. + * Create new navigation property to calendarPermissions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CalendarPermission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarPermission post(@jakarta.annotation.Nonnull final CalendarPermission body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public CalendarPermission post(@jakarta.annotation.Nonnull final CalendarPermiss return this.requestAdapter.send(requestInfo, errorMapping, CalendarPermission::createFromDiscriminatorValue); } /** - * Get a collection of calendarPermission resources that describe the identity and roles of users with whom the specified calendar has been shared or delegated. Here, the calendar can be a user calendar or group calendar. + * The permissions of the users with whom the calendar is shared. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a collection of calendarPermission resources that describe the identity and roles of users with whom the specified calendar has been shared or delegated. Here, the calendar can be a user calendar or group calendar. + * The permissions of the users with whom the calendar is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a calendarPermission resource to specify the identity and role of the user with whom the specified calendar is being shared or delegated. + * Create new navigation property to calendarPermissions for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a calendarPermission resource to specify the identity and role of the user with whom the specified calendar is being shared or delegated. + * Create new navigation property to calendarPermissions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public CalendarPermissionsRequestBuilder withUrl(@jakarta.annotation.Nonnull fin return new CalendarPermissionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a collection of calendarPermission resources that describe the identity and roles of users with whom the specified calendar has been shared or delegated. Here, the calendar can be a user calendar or group calendar. + * The permissions of the users with whom the calendar is shared. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarpermissions/item/CalendarPermissionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarpermissions/item/CalendarPermissionItemRequestBuilder.java index 9c973e7fb17..12ed43f19aa 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarpermissions/item/CalendarPermissionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarpermissions/item/CalendarPermissionItemRequestBuilder.java @@ -37,18 +37,16 @@ public CalendarPermissionItemRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendar/calendarPermissions/{calendarPermission%2Did}{?%24select}", rawUrl); } /** - * Delete calendarPermission. + * Delete navigation property calendarPermissions for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete calendarPermission. + * Delete navigation property calendarPermissions for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the specified permissions object of a user or group calendar that has been shared. + * The permissions of the users with whom the calendar is shared. * @return a {@link CalendarPermission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarPermission get() { return get(null); } /** - * Get the specified permissions object of a user or group calendar that has been shared. + * The permissions of the users with whom the calendar is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CalendarPermission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarPermission get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public CalendarPermission get(@jakarta.annotation.Nullable final java.util.funct return this.requestAdapter.send(requestInfo, errorMapping, CalendarPermission::createFromDiscriminatorValue); } /** - * Update the permissions assigned to an existing share recipient or delegate, through the corresponding calendarPermission object for a calendar. + * Update the navigation property calendarPermissions in users * @param body The request body * @return a {@link CalendarPermission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarPermission patch(@jakarta.annotation.Nonnull final CalendarPermission body) { return patch(body, null); } /** - * Update the permissions assigned to an existing share recipient or delegate, through the corresponding calendarPermission object for a calendar. + * Update the navigation property calendarPermissions in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CalendarPermission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarPermission patch(@jakarta.annotation.Nonnull final CalendarPermission body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public CalendarPermission patch(@jakarta.annotation.Nonnull final CalendarPermis return this.requestAdapter.send(requestInfo, errorMapping, CalendarPermission::createFromDiscriminatorValue); } /** - * Delete calendarPermission. + * Delete navigation property calendarPermissions for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete calendarPermission. + * Delete navigation property calendarPermissions for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the specified permissions object of a user or group calendar that has been shared. + * The permissions of the users with whom the calendar is shared. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the specified permissions object of a user or group calendar that has been shared. + * The permissions of the users with whom the calendar is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the permissions assigned to an existing share recipient or delegate, through the corresponding calendarPermission object for a calendar. + * Update the navigation property calendarPermissions in users * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the permissions assigned to an existing share recipient or delegate, through the corresponding calendarPermission object for a calendar. + * Update the navigation property calendarPermissions in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public CalendarPermissionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the specified permissions object of a user or group calendar that has been shared. + * The permissions of the users with whom the calendar is shared. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/CalendarViewRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/CalendarViewRequestBuilder.java index 7a6191ca0ac..2e41badbdd2 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/CalendarViewRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/CalendarViewRequestBuilder.java @@ -71,7 +71,6 @@ public CalendarViewRequestBuilder(@jakarta.annotation.Nonnull final String rawUr * The calendar view for the calendar. Navigation property. Read-only. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get() { @@ -82,7 +81,6 @@ public EventCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/attachments/AttachmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/attachments/AttachmentsRequestBuilder.java index 8f96677f6bf..5a9018e62b3 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/attachments/AttachmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/attachments/AttachmentsRequestBuilder.java @@ -69,21 +69,19 @@ public AttachmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendar/calendarView/{event%2Did}/attachments{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get() { return get(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, AttachmentCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body) { return post(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public AttachmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AttachmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/attachments/item/AttachmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/attachments/item/AttachmentItemRequestBuilder.java index 93050174ee6..8b7bc0e4130 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/attachments/item/AttachmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/attachments/item/AttachmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public AttachmentItemRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendar/calendarView/{event%2Did}/attachments/{attachment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -79,7 +77,7 @@ public Attachment get(@jakarta.annotation.Nullable final java.util.function.Cons return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -87,7 +85,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/extensions/ExtensionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/extensions/ExtensionsRequestBuilder.java index 1bd077a1ec6..c85f624e636 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/extensions/ExtensionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/extensions/ExtensionsRequestBuilder.java @@ -60,7 +60,7 @@ public ExtensionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendar/calendarView/{event%2Did}/extensions{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public ExtensionCollectionResponse get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -82,23 +82,21 @@ public ExtensionCollectionResponse get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, ExtensionCollectionResponse::createFromDiscriminatorValue); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body) { return post(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, Extension::createFromDiscriminatorValue); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -129,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @return a {@link RequestInformation} */ @@ -138,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -163,7 +161,7 @@ public ExtensionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ExtensionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/extensions/item/ExtensionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/extensions/item/ExtensionItemRequestBuilder.java index 5a0fcde0a46..efb96740700 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/extensions/item/ExtensionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/extensions/item/ExtensionItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public ExtensionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/instances/InstancesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/instances/InstancesRequestBuilder.java index 344d17fc403..dfab5018d7d 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/instances/InstancesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/instances/InstancesRequestBuilder.java @@ -71,7 +71,6 @@ public InstancesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, * 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. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get() { @@ -82,7 +81,6 @@ public EventCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/instances/item/attachments/AttachmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/instances/item/attachments/AttachmentsRequestBuilder.java index adb48c31730..91ae0086805 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/instances/item/attachments/AttachmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/instances/item/attachments/AttachmentsRequestBuilder.java @@ -69,21 +69,19 @@ public AttachmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendar/calendarView/{event%2Did}/instances/{event%2Did1}/attachments{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get() { return get(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, AttachmentCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body) { return post(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public AttachmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AttachmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java index a5dd11e50ba..a787d4a88be 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public AttachmentItemRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendar/calendarView/{event%2Did}/instances/{event%2Did1}/attachments/{attachment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -79,7 +77,7 @@ public Attachment get(@jakarta.annotation.Nullable final java.util.function.Cons return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -87,7 +85,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/instances/item/extensions/ExtensionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/instances/item/extensions/ExtensionsRequestBuilder.java index f4733a6e790..2a16b037d8c 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/instances/item/extensions/ExtensionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/instances/item/extensions/ExtensionsRequestBuilder.java @@ -60,7 +60,7 @@ public ExtensionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendar/calendarView/{event%2Did}/instances/{event%2Did1}/extensions{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public ExtensionCollectionResponse get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -82,23 +82,21 @@ public ExtensionCollectionResponse get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, ExtensionCollectionResponse::createFromDiscriminatorValue); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body) { return post(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, Extension::createFromDiscriminatorValue); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -129,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @return a {@link RequestInformation} */ @@ -138,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -163,7 +161,7 @@ public ExtensionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ExtensionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java index e585ae97e08..6c8dcd5f44e 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendar/calendarview/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public ExtensionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/EventsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/EventsRequestBuilder.java index 4daa01ae321..de8e234691f 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/EventsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/EventsRequestBuilder.java @@ -69,21 +69,19 @@ public EventsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendar/events{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of events in a calendar. The calendar can be one for a user, or the default calendar of a Microsoft 365 group. The list of events contains single instance meetings and series masters. To get expanded event instances, you can get the calendar view, orget the instances of an event. + * The events in the calendar. Navigation property. Read-only. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get() { return get(null); } /** - * Retrieve a list of events in a calendar. The calendar can be one for a user, or the default calendar of a Microsoft 365 group. The list of events contains single instance meetings and series masters. To get expanded event instances, you can get the calendar view, orget the instances of an event. + * The events in the calendar. Navigation property. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public EventCollectionResponse get(@jakarta.annotation.Nullable final java.util. return this.requestAdapter.send(requestInfo, errorMapping, EventCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to create a new event in a calendar. The calendar can be one for a user, or the default calendar of a Microsoft 365 group. + * Create new navigation property to events for users * @param body The request body * @return a {@link Event} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Event post(@jakarta.annotation.Nonnull final Event body) { return post(body, null); } /** - * Use this API to create a new event in a calendar. The calendar can be one for a user, or the default calendar of a Microsoft 365 group. + * Create new navigation property to events for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Event} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Event post(@jakarta.annotation.Nonnull final Event body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public Event post(@jakarta.annotation.Nonnull final Event body, @jakarta.annotat return this.requestAdapter.send(requestInfo, errorMapping, Event::createFromDiscriminatorValue); } /** - * Retrieve a list of events in a calendar. The calendar can be one for a user, or the default calendar of a Microsoft 365 group. The list of events contains single instance meetings and series masters. To get expanded event instances, you can get the calendar view, orget the instances of an event. + * The events in the calendar. Navigation property. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of events in a calendar. The calendar can be one for a user, or the default calendar of a Microsoft 365 group. The list of events contains single instance meetings and series masters. To get expanded event instances, you can get the calendar view, orget the instances of an event. + * The events in the calendar. Navigation property. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to create a new event in a calendar. The calendar can be one for a user, or the default calendar of a Microsoft 365 group. + * Create new navigation property to events for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to create a new event in a calendar. The calendar can be one for a user, or the default calendar of a Microsoft 365 group. + * Create new navigation property to events for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public EventsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw return new EventsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of events in a calendar. The calendar can be one for a user, or the default calendar of a Microsoft 365 group. The list of events contains single instance meetings and series masters. To get expanded event instances, you can get the calendar view, orget the instances of an event. + * The events in the calendar. Navigation property. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/EventItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/EventItemRequestBuilder.java index 8c7cd83dda5..74d1bf9c42f 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/EventItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/EventItemRequestBuilder.java @@ -176,23 +176,21 @@ public Event get(@jakarta.annotation.Nullable final java.util.function.Consumer< return this.requestAdapter.send(requestInfo, errorMapping, Event::createFromDiscriminatorValue); } /** - * Update an event object. + * Update the navigation property events in users * @param body The request body * @return a {@link Event} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Event patch(@jakarta.annotation.Nonnull final Event body) { return patch(body, null); } /** - * Update an event object. + * Update the navigation property events in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Event} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Event patch(@jakarta.annotation.Nonnull final Event body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -243,7 +241,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update an event object. + * Update the navigation property events in users * @param body The request body * @return a {@link RequestInformation} */ @@ -252,7 +250,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update an event object. + * Update the navigation property events in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/attachments/AttachmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/attachments/AttachmentsRequestBuilder.java index 198df535b1a..b91b9744bba 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/attachments/AttachmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/attachments/AttachmentsRequestBuilder.java @@ -69,21 +69,19 @@ public AttachmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendar/events/{event%2Did}/attachments{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get() { return get(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, AttachmentCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body) { return post(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public AttachmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AttachmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/attachments/item/AttachmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/attachments/item/AttachmentItemRequestBuilder.java index 986ff5c3b89..d9b3b5af04c 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/attachments/item/AttachmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/attachments/item/AttachmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public AttachmentItemRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendar/events/{event%2Did}/attachments/{attachment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -79,7 +77,7 @@ public Attachment get(@jakarta.annotation.Nullable final java.util.function.Cons return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -87,7 +85,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/extensions/ExtensionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/extensions/ExtensionsRequestBuilder.java index e1cfab97a87..76f81087f72 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/extensions/ExtensionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/extensions/ExtensionsRequestBuilder.java @@ -60,7 +60,7 @@ public ExtensionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendar/events/{event%2Did}/extensions{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public ExtensionCollectionResponse get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -82,23 +82,21 @@ public ExtensionCollectionResponse get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, ExtensionCollectionResponse::createFromDiscriminatorValue); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body) { return post(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, Extension::createFromDiscriminatorValue); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -129,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @return a {@link RequestInformation} */ @@ -138,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -163,7 +161,7 @@ public ExtensionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ExtensionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/extensions/item/ExtensionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/extensions/item/ExtensionItemRequestBuilder.java index 632f642f16f..5a86cc0de20 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/extensions/item/ExtensionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/extensions/item/ExtensionItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public ExtensionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/instances/InstancesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/instances/InstancesRequestBuilder.java index a10d2ed8499..61c0f2963a2 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/instances/InstancesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/instances/InstancesRequestBuilder.java @@ -71,7 +71,6 @@ public InstancesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, * 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. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get() { @@ -82,7 +81,6 @@ public EventCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/instances/item/attachments/AttachmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/instances/item/attachments/AttachmentsRequestBuilder.java index 5e9b065fd5d..dd94aed63a6 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/instances/item/attachments/AttachmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/instances/item/attachments/AttachmentsRequestBuilder.java @@ -69,21 +69,19 @@ public AttachmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendar/events/{event%2Did}/instances/{event%2Did1}/attachments{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get() { return get(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, AttachmentCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body) { return post(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public AttachmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AttachmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java index ecb04c5c199..b0e35f18bfb 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public AttachmentItemRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendar/events/{event%2Did}/instances/{event%2Did1}/attachments/{attachment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -79,7 +77,7 @@ public Attachment get(@jakarta.annotation.Nullable final java.util.function.Cons return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -87,7 +85,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/instances/item/extensions/ExtensionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/instances/item/extensions/ExtensionsRequestBuilder.java index dc13787e123..b8c879204fe 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/instances/item/extensions/ExtensionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/instances/item/extensions/ExtensionsRequestBuilder.java @@ -60,7 +60,7 @@ public ExtensionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendar/events/{event%2Did}/instances/{event%2Did1}/extensions{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public ExtensionCollectionResponse get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -82,23 +82,21 @@ public ExtensionCollectionResponse get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, ExtensionCollectionResponse::createFromDiscriminatorValue); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body) { return post(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, Extension::createFromDiscriminatorValue); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -129,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @return a {@link RequestInformation} */ @@ -138,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -163,7 +161,7 @@ public ExtensionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ExtensionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java index fe62a76e8fd..dca6fb93644 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendar/events/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public ExtensionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/CalendarGroupsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/CalendarGroupsRequestBuilder.java index e357dcc03eb..91182c53093 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/CalendarGroupsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/CalendarGroupsRequestBuilder.java @@ -60,21 +60,19 @@ public CalendarGroupsRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendarGroups{?%24count,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get the user's calendar groups. + * The user's calendar groups. Read-only. Nullable. * @return a {@link CalendarGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarGroupCollectionResponse get() { return get(null); } /** - * Get the user's calendar groups. + * The user's calendar groups. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CalendarGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarGroupCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public CalendarGroupCollectionResponse get(@jakarta.annotation.Nullable final ja return this.requestAdapter.send(requestInfo, errorMapping, CalendarGroupCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to create a new CalendarGroup. + * Create new navigation property to calendarGroups for users * @param body The request body * @return a {@link CalendarGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarGroup post(@jakarta.annotation.Nonnull final CalendarGroup body) { return post(body, null); } /** - * Use this API to create a new CalendarGroup. + * Create new navigation property to calendarGroups for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CalendarGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarGroup post(@jakarta.annotation.Nonnull final CalendarGroup body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public CalendarGroup post(@jakarta.annotation.Nonnull final CalendarGroup body, return this.requestAdapter.send(requestInfo, errorMapping, CalendarGroup::createFromDiscriminatorValue); } /** - * Get the user's calendar groups. + * The user's calendar groups. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the user's calendar groups. + * The user's calendar groups. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to create a new CalendarGroup. + * Create new navigation property to calendarGroups for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to create a new CalendarGroup. + * Create new navigation property to calendarGroups for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public CalendarGroupsRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new CalendarGroupsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the user's calendar groups. + * The user's calendar groups. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/CalendarGroupItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/CalendarGroupItemRequestBuilder.java index 5d5c16f7e25..1a874961dca 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/CalendarGroupItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/CalendarGroupItemRequestBuilder.java @@ -46,18 +46,16 @@ public CalendarGroupItemRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendarGroups/{calendarGroup%2Did}{?%24select}", rawUrl); } /** - * Delete a calendar group other than the default calendar group. + * Delete navigation property calendarGroups for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a calendar group other than the default calendar group. + * Delete navigation property calendarGroups for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a calendar group object. + * The user's calendar groups. Read-only. Nullable. * @return a {@link CalendarGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarGroup get() { return get(null); } /** - * Retrieve the properties and relationships of a calendar group object. + * The user's calendar groups. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CalendarGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarGroup get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public CalendarGroup get(@jakarta.annotation.Nullable final java.util.function.C return this.requestAdapter.send(requestInfo, errorMapping, CalendarGroup::createFromDiscriminatorValue); } /** - * Update the properties of calendargroup object. + * Update the navigation property calendarGroups in users * @param body The request body * @return a {@link CalendarGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarGroup patch(@jakarta.annotation.Nonnull final CalendarGroup body) { return patch(body, null); } /** - * Update the properties of calendargroup object. + * Update the navigation property calendarGroups in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CalendarGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarGroup patch(@jakarta.annotation.Nonnull final CalendarGroup body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public CalendarGroup patch(@jakarta.annotation.Nonnull final CalendarGroup body, return this.requestAdapter.send(requestInfo, errorMapping, CalendarGroup::createFromDiscriminatorValue); } /** - * Delete a calendar group other than the default calendar group. + * Delete navigation property calendarGroups for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a calendar group other than the default calendar group. + * Delete navigation property calendarGroups for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a calendar group object. + * The user's calendar groups. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a calendar group object. + * The user's calendar groups. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of calendargroup object. + * Update the navigation property calendarGroups in users * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of calendargroup object. + * Update the navigation property calendarGroups in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public CalendarGroupItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a calendar group object. + * The user's calendar groups. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/CalendarsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/CalendarsRequestBuilder.java index 2dd02c87c9e..385f58a7ac4 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/CalendarsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/CalendarsRequestBuilder.java @@ -60,21 +60,19 @@ public CalendarsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendarGroups/{calendarGroup%2Did}/calendars{?%24count,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of calendars belonging to a calendar group. + * The calendars in the calendar group. Navigation property. Read-only. Nullable. * @return a {@link CalendarCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarCollectionResponse get() { return get(null); } /** - * Retrieve a list of calendars belonging to a calendar group. + * The calendars in the calendar group. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CalendarCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public CalendarCollectionResponse get(@jakarta.annotation.Nullable final java.ut return this.requestAdapter.send(requestInfo, errorMapping, CalendarCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to create a new calendar in a calendar group for a user. + * Create new navigation property to calendars for users * @param body The request body * @return a {@link Calendar} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Calendar post(@jakarta.annotation.Nonnull final Calendar body) { return post(body, null); } /** - * Use this API to create a new calendar in a calendar group for a user. + * Create new navigation property to calendars for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Calendar} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Calendar post(@jakarta.annotation.Nonnull final Calendar body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public Calendar post(@jakarta.annotation.Nonnull final Calendar body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, Calendar::createFromDiscriminatorValue); } /** - * Retrieve a list of calendars belonging to a calendar group. + * The calendars in the calendar group. Navigation property. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of calendars belonging to a calendar group. + * The calendars in the calendar group. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to create a new calendar in a calendar group for a user. + * Create new navigation property to calendars for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to create a new calendar in a calendar group for a user. + * Create new navigation property to calendars for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public CalendarsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new CalendarsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of calendars belonging to a calendar group. + * The calendars in the calendar group. Navigation property. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarpermissions/CalendarPermissionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarpermissions/CalendarPermissionsRequestBuilder.java index 30d56e4e4eb..831122ec7ca 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarpermissions/CalendarPermissionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarpermissions/CalendarPermissionsRequestBuilder.java @@ -60,21 +60,19 @@ public CalendarPermissionsRequestBuilder(@jakarta.annotation.Nonnull final Strin super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendarGroups/{calendarGroup%2Did}/calendars/{calendar%2Did}/calendarPermissions{?%24count,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get a collection of calendarPermission resources that describe the identity and roles of users with whom the specified calendar has been shared or delegated. Here, the calendar can be a user calendar or group calendar. + * The permissions of the users with whom the calendar is shared. * @return a {@link CalendarPermissionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarPermissionCollectionResponse get() { return get(null); } /** - * Get a collection of calendarPermission resources that describe the identity and roles of users with whom the specified calendar has been shared or delegated. Here, the calendar can be a user calendar or group calendar. + * The permissions of the users with whom the calendar is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CalendarPermissionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarPermissionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public CalendarPermissionCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, CalendarPermissionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a calendarPermission resource to specify the identity and role of the user with whom the specified calendar is being shared or delegated. + * Create new navigation property to calendarPermissions for users * @param body The request body * @return a {@link CalendarPermission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarPermission post(@jakarta.annotation.Nonnull final CalendarPermission body) { return post(body, null); } /** - * Create a calendarPermission resource to specify the identity and role of the user with whom the specified calendar is being shared or delegated. + * Create new navigation property to calendarPermissions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CalendarPermission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarPermission post(@jakarta.annotation.Nonnull final CalendarPermission body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public CalendarPermission post(@jakarta.annotation.Nonnull final CalendarPermiss return this.requestAdapter.send(requestInfo, errorMapping, CalendarPermission::createFromDiscriminatorValue); } /** - * Get a collection of calendarPermission resources that describe the identity and roles of users with whom the specified calendar has been shared or delegated. Here, the calendar can be a user calendar or group calendar. + * The permissions of the users with whom the calendar is shared. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a collection of calendarPermission resources that describe the identity and roles of users with whom the specified calendar has been shared or delegated. Here, the calendar can be a user calendar or group calendar. + * The permissions of the users with whom the calendar is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a calendarPermission resource to specify the identity and role of the user with whom the specified calendar is being shared or delegated. + * Create new navigation property to calendarPermissions for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a calendarPermission resource to specify the identity and role of the user with whom the specified calendar is being shared or delegated. + * Create new navigation property to calendarPermissions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public CalendarPermissionsRequestBuilder withUrl(@jakarta.annotation.Nonnull fin return new CalendarPermissionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a collection of calendarPermission resources that describe the identity and roles of users with whom the specified calendar has been shared or delegated. Here, the calendar can be a user calendar or group calendar. + * The permissions of the users with whom the calendar is shared. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarpermissions/item/CalendarPermissionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarpermissions/item/CalendarPermissionItemRequestBuilder.java index 6ef7b60ded7..e4660a834ed 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarpermissions/item/CalendarPermissionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarpermissions/item/CalendarPermissionItemRequestBuilder.java @@ -37,18 +37,16 @@ public CalendarPermissionItemRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendarGroups/{calendarGroup%2Did}/calendars/{calendar%2Did}/calendarPermissions/{calendarPermission%2Did}{?%24select}", rawUrl); } /** - * Delete calendarPermission. + * Delete navigation property calendarPermissions for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete calendarPermission. + * Delete navigation property calendarPermissions for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the specified permissions object of a user or group calendar that has been shared. + * The permissions of the users with whom the calendar is shared. * @return a {@link CalendarPermission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarPermission get() { return get(null); } /** - * Get the specified permissions object of a user or group calendar that has been shared. + * The permissions of the users with whom the calendar is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CalendarPermission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarPermission get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public CalendarPermission get(@jakarta.annotation.Nullable final java.util.funct return this.requestAdapter.send(requestInfo, errorMapping, CalendarPermission::createFromDiscriminatorValue); } /** - * Update the permissions assigned to an existing share recipient or delegate, through the corresponding calendarPermission object for a calendar. + * Update the navigation property calendarPermissions in users * @param body The request body * @return a {@link CalendarPermission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarPermission patch(@jakarta.annotation.Nonnull final CalendarPermission body) { return patch(body, null); } /** - * Update the permissions assigned to an existing share recipient or delegate, through the corresponding calendarPermission object for a calendar. + * Update the navigation property calendarPermissions in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CalendarPermission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarPermission patch(@jakarta.annotation.Nonnull final CalendarPermission body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public CalendarPermission patch(@jakarta.annotation.Nonnull final CalendarPermis return this.requestAdapter.send(requestInfo, errorMapping, CalendarPermission::createFromDiscriminatorValue); } /** - * Delete calendarPermission. + * Delete navigation property calendarPermissions for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete calendarPermission. + * Delete navigation property calendarPermissions for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the specified permissions object of a user or group calendar that has been shared. + * The permissions of the users with whom the calendar is shared. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the specified permissions object of a user or group calendar that has been shared. + * The permissions of the users with whom the calendar is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the permissions assigned to an existing share recipient or delegate, through the corresponding calendarPermission object for a calendar. + * Update the navigation property calendarPermissions in users * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the permissions assigned to an existing share recipient or delegate, through the corresponding calendarPermission object for a calendar. + * Update the navigation property calendarPermissions in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public CalendarPermissionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the specified permissions object of a user or group calendar that has been shared. + * The permissions of the users with whom the calendar is shared. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/CalendarViewRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/CalendarViewRequestBuilder.java index 51d9bd0b43d..17a8b2b400b 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/CalendarViewRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/CalendarViewRequestBuilder.java @@ -71,7 +71,6 @@ public CalendarViewRequestBuilder(@jakarta.annotation.Nonnull final String rawUr * The calendar view for the calendar. Navigation property. Read-only. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get() { @@ -82,7 +81,6 @@ public EventCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/attachments/AttachmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/attachments/AttachmentsRequestBuilder.java index eaab1c0a043..48f9a47e5c6 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/attachments/AttachmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/attachments/AttachmentsRequestBuilder.java @@ -69,21 +69,19 @@ public AttachmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendarGroups/{calendarGroup%2Did}/calendars/{calendar%2Did}/calendarView/{event%2Did}/attachments{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get() { return get(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, AttachmentCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body) { return post(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public AttachmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AttachmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/attachments/item/AttachmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/attachments/item/AttachmentItemRequestBuilder.java index 9510bc30eee..ede605e4a11 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/attachments/item/AttachmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/attachments/item/AttachmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public AttachmentItemRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendarGroups/{calendarGroup%2Did}/calendars/{calendar%2Did}/calendarView/{event%2Did}/attachments/{attachment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -79,7 +77,7 @@ public Attachment get(@jakarta.annotation.Nullable final java.util.function.Cons return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -87,7 +85,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/extensions/ExtensionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/extensions/ExtensionsRequestBuilder.java index c9a84648d44..20a758b8aba 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/extensions/ExtensionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/extensions/ExtensionsRequestBuilder.java @@ -60,7 +60,7 @@ public ExtensionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendarGroups/{calendarGroup%2Did}/calendars/{calendar%2Did}/calendarView/{event%2Did}/extensions{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public ExtensionCollectionResponse get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -82,23 +82,21 @@ public ExtensionCollectionResponse get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, ExtensionCollectionResponse::createFromDiscriminatorValue); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body) { return post(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, Extension::createFromDiscriminatorValue); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -129,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @return a {@link RequestInformation} */ @@ -138,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -163,7 +161,7 @@ public ExtensionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ExtensionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/extensions/item/ExtensionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/extensions/item/ExtensionItemRequestBuilder.java index a5a476c73a5..8f66d3c1bcb 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/extensions/item/ExtensionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/extensions/item/ExtensionItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public ExtensionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/instances/InstancesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/instances/InstancesRequestBuilder.java index e0ccbaff9b7..a8d9ef4949e 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/instances/InstancesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/instances/InstancesRequestBuilder.java @@ -71,7 +71,6 @@ public InstancesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, * 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. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get() { @@ -82,7 +81,6 @@ public EventCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/instances/item/attachments/AttachmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/instances/item/attachments/AttachmentsRequestBuilder.java index 7d1eafa04be..ae0ab769476 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/instances/item/attachments/AttachmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/instances/item/attachments/AttachmentsRequestBuilder.java @@ -69,21 +69,19 @@ public AttachmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendarGroups/{calendarGroup%2Did}/calendars/{calendar%2Did}/calendarView/{event%2Did}/instances/{event%2Did1}/attachments{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get() { return get(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, AttachmentCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body) { return post(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public AttachmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AttachmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java index d7c00e82481..7ae07e3f2a9 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public AttachmentItemRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendarGroups/{calendarGroup%2Did}/calendars/{calendar%2Did}/calendarView/{event%2Did}/instances/{event%2Did1}/attachments/{attachment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -79,7 +77,7 @@ public Attachment get(@jakarta.annotation.Nullable final java.util.function.Cons return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -87,7 +85,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/instances/item/extensions/ExtensionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/instances/item/extensions/ExtensionsRequestBuilder.java index 2358f01188c..fd1deebe112 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/instances/item/extensions/ExtensionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/instances/item/extensions/ExtensionsRequestBuilder.java @@ -60,7 +60,7 @@ public ExtensionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendarGroups/{calendarGroup%2Did}/calendars/{calendar%2Did}/calendarView/{event%2Did}/instances/{event%2Did1}/extensions{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public ExtensionCollectionResponse get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -82,23 +82,21 @@ public ExtensionCollectionResponse get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, ExtensionCollectionResponse::createFromDiscriminatorValue); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body) { return post(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, Extension::createFromDiscriminatorValue); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -129,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @return a {@link RequestInformation} */ @@ -138,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -163,7 +161,7 @@ public ExtensionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ExtensionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java index 8f31314fdd9..164f4cf3db7 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/calendarview/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public ExtensionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/EventsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/EventsRequestBuilder.java index b382b3ad586..931274ad381 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/EventsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/EventsRequestBuilder.java @@ -69,21 +69,19 @@ public EventsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendarGroups/{calendarGroup%2Did}/calendars/{calendar%2Did}/events{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of events in a calendar. The calendar can be one for a user, or the default calendar of a Microsoft 365 group. The list of events contains single instance meetings and series masters. To get expanded event instances, you can get the calendar view, orget the instances of an event. + * The events in the calendar. Navigation property. Read-only. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get() { return get(null); } /** - * Retrieve a list of events in a calendar. The calendar can be one for a user, or the default calendar of a Microsoft 365 group. The list of events contains single instance meetings and series masters. To get expanded event instances, you can get the calendar view, orget the instances of an event. + * The events in the calendar. Navigation property. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public EventCollectionResponse get(@jakarta.annotation.Nullable final java.util. return this.requestAdapter.send(requestInfo, errorMapping, EventCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to create a new event in a calendar. The calendar can be one for a user, or the default calendar of a Microsoft 365 group. + * Create new navigation property to events for users * @param body The request body * @return a {@link Event} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Event post(@jakarta.annotation.Nonnull final Event body) { return post(body, null); } /** - * Use this API to create a new event in a calendar. The calendar can be one for a user, or the default calendar of a Microsoft 365 group. + * Create new navigation property to events for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Event} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Event post(@jakarta.annotation.Nonnull final Event body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public Event post(@jakarta.annotation.Nonnull final Event body, @jakarta.annotat return this.requestAdapter.send(requestInfo, errorMapping, Event::createFromDiscriminatorValue); } /** - * Retrieve a list of events in a calendar. The calendar can be one for a user, or the default calendar of a Microsoft 365 group. The list of events contains single instance meetings and series masters. To get expanded event instances, you can get the calendar view, orget the instances of an event. + * The events in the calendar. Navigation property. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of events in a calendar. The calendar can be one for a user, or the default calendar of a Microsoft 365 group. The list of events contains single instance meetings and series masters. To get expanded event instances, you can get the calendar view, orget the instances of an event. + * The events in the calendar. Navigation property. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to create a new event in a calendar. The calendar can be one for a user, or the default calendar of a Microsoft 365 group. + * Create new navigation property to events for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to create a new event in a calendar. The calendar can be one for a user, or the default calendar of a Microsoft 365 group. + * Create new navigation property to events for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public EventsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw return new EventsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of events in a calendar. The calendar can be one for a user, or the default calendar of a Microsoft 365 group. The list of events contains single instance meetings and series masters. To get expanded event instances, you can get the calendar view, orget the instances of an event. + * The events in the calendar. Navigation property. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/EventItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/EventItemRequestBuilder.java index 8a6e20332a8..6daa2a6a37c 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/EventItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/EventItemRequestBuilder.java @@ -176,23 +176,21 @@ public Event get(@jakarta.annotation.Nullable final java.util.function.Consumer< return this.requestAdapter.send(requestInfo, errorMapping, Event::createFromDiscriminatorValue); } /** - * Update an event object. + * Update the navigation property events in users * @param body The request body * @return a {@link Event} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Event patch(@jakarta.annotation.Nonnull final Event body) { return patch(body, null); } /** - * Update an event object. + * Update the navigation property events in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Event} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Event patch(@jakarta.annotation.Nonnull final Event body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -243,7 +241,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update an event object. + * Update the navigation property events in users * @param body The request body * @return a {@link RequestInformation} */ @@ -252,7 +250,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update an event object. + * Update the navigation property events in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/attachments/AttachmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/attachments/AttachmentsRequestBuilder.java index fde3818d1d9..ccb499e1362 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/attachments/AttachmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/attachments/AttachmentsRequestBuilder.java @@ -69,21 +69,19 @@ public AttachmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendarGroups/{calendarGroup%2Did}/calendars/{calendar%2Did}/events/{event%2Did}/attachments{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get() { return get(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, AttachmentCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body) { return post(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public AttachmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AttachmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/attachments/item/AttachmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/attachments/item/AttachmentItemRequestBuilder.java index 66eea6ebc8a..5eb6ab4352c 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/attachments/item/AttachmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/attachments/item/AttachmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public AttachmentItemRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendarGroups/{calendarGroup%2Did}/calendars/{calendar%2Did}/events/{event%2Did}/attachments/{attachment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -79,7 +77,7 @@ public Attachment get(@jakarta.annotation.Nullable final java.util.function.Cons return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -87,7 +85,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/extensions/ExtensionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/extensions/ExtensionsRequestBuilder.java index 60a7025a996..bd00b8e9ee4 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/extensions/ExtensionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/extensions/ExtensionsRequestBuilder.java @@ -60,7 +60,7 @@ public ExtensionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendarGroups/{calendarGroup%2Did}/calendars/{calendar%2Did}/events/{event%2Did}/extensions{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public ExtensionCollectionResponse get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -82,23 +82,21 @@ public ExtensionCollectionResponse get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, ExtensionCollectionResponse::createFromDiscriminatorValue); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body) { return post(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, Extension::createFromDiscriminatorValue); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -129,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @return a {@link RequestInformation} */ @@ -138,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -163,7 +161,7 @@ public ExtensionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ExtensionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/extensions/item/ExtensionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/extensions/item/ExtensionItemRequestBuilder.java index 7ae93245519..cb42005e02e 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/extensions/item/ExtensionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/extensions/item/ExtensionItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public ExtensionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/instances/InstancesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/instances/InstancesRequestBuilder.java index aa91e476165..c540cef6ad2 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/instances/InstancesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/instances/InstancesRequestBuilder.java @@ -71,7 +71,6 @@ public InstancesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, * 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. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get() { @@ -82,7 +81,6 @@ public EventCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/instances/item/attachments/AttachmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/instances/item/attachments/AttachmentsRequestBuilder.java index 03dad209b9d..1f43bff3d08 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/instances/item/attachments/AttachmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/instances/item/attachments/AttachmentsRequestBuilder.java @@ -69,21 +69,19 @@ public AttachmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendarGroups/{calendarGroup%2Did}/calendars/{calendar%2Did}/events/{event%2Did}/instances/{event%2Did1}/attachments{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get() { return get(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, AttachmentCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body) { return post(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public AttachmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AttachmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java index 815bf99d6e9..8b2d02013e7 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public AttachmentItemRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendarGroups/{calendarGroup%2Did}/calendars/{calendar%2Did}/events/{event%2Did}/instances/{event%2Did1}/attachments/{attachment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -79,7 +77,7 @@ public Attachment get(@jakarta.annotation.Nullable final java.util.function.Cons return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -87,7 +85,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/instances/item/extensions/ExtensionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/instances/item/extensions/ExtensionsRequestBuilder.java index 754f8158f77..c1dcf828edc 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/instances/item/extensions/ExtensionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/instances/item/extensions/ExtensionsRequestBuilder.java @@ -60,7 +60,7 @@ public ExtensionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendarGroups/{calendarGroup%2Did}/calendars/{calendar%2Did}/events/{event%2Did}/instances/{event%2Did1}/extensions{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public ExtensionCollectionResponse get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -82,23 +82,21 @@ public ExtensionCollectionResponse get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, ExtensionCollectionResponse::createFromDiscriminatorValue); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body) { return post(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, Extension::createFromDiscriminatorValue); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -129,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @return a {@link RequestInformation} */ @@ -138,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -163,7 +161,7 @@ public ExtensionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ExtensionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java index fdaa57a51e7..288f33b8712 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendargroups/item/calendars/item/events/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public ExtensionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendars/CalendarsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendars/CalendarsRequestBuilder.java index f1b04103e53..93532ccb0db 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendars/CalendarsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendars/CalendarsRequestBuilder.java @@ -60,21 +60,19 @@ public CalendarsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendars{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get all the user's calendars (/calendars navigation property), get the calendars from the default calendar group or from a specific calendar group. + * The user's calendars. Read-only. Nullable. * @return a {@link CalendarCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarCollectionResponse get() { return get(null); } /** - * Get all the user's calendars (/calendars navigation property), get the calendars from the default calendar group or from a specific calendar group. + * The user's calendars. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CalendarCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public CalendarCollectionResponse get(@jakarta.annotation.Nullable final java.ut return this.requestAdapter.send(requestInfo, errorMapping, CalendarCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new calendar for a user. + * Create new navigation property to calendars for users * @param body The request body * @return a {@link Calendar} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Calendar post(@jakarta.annotation.Nonnull final Calendar body) { return post(body, null); } /** - * Create a new calendar for a user. + * Create new navigation property to calendars for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Calendar} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Calendar post(@jakarta.annotation.Nonnull final Calendar body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public Calendar post(@jakarta.annotation.Nonnull final Calendar body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, Calendar::createFromDiscriminatorValue); } /** - * Get all the user's calendars (/calendars navigation property), get the calendars from the default calendar group or from a specific calendar group. + * The user's calendars. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get all the user's calendars (/calendars navigation property), get the calendars from the default calendar group or from a specific calendar group. + * The user's calendars. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new calendar for a user. + * Create new navigation property to calendars for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new calendar for a user. + * Create new navigation property to calendars for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public CalendarsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new CalendarsRequestBuilder(rawUrl, requestAdapter); } /** - * Get all the user's calendars (/calendars navigation property), get the calendars from the default calendar group or from a specific calendar group. + * The user's calendars. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarpermissions/CalendarPermissionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarpermissions/CalendarPermissionsRequestBuilder.java index 2e45bddf151..2b16c90814b 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarpermissions/CalendarPermissionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarpermissions/CalendarPermissionsRequestBuilder.java @@ -60,21 +60,19 @@ public CalendarPermissionsRequestBuilder(@jakarta.annotation.Nonnull final Strin super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendars/{calendar%2Did}/calendarPermissions{?%24count,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get a collection of calendarPermission resources that describe the identity and roles of users with whom the specified calendar has been shared or delegated. Here, the calendar can be a user calendar or group calendar. + * The permissions of the users with whom the calendar is shared. * @return a {@link CalendarPermissionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarPermissionCollectionResponse get() { return get(null); } /** - * Get a collection of calendarPermission resources that describe the identity and roles of users with whom the specified calendar has been shared or delegated. Here, the calendar can be a user calendar or group calendar. + * The permissions of the users with whom the calendar is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CalendarPermissionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarPermissionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public CalendarPermissionCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, CalendarPermissionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a calendarPermission resource to specify the identity and role of the user with whom the specified calendar is being shared or delegated. + * Create new navigation property to calendarPermissions for users * @param body The request body * @return a {@link CalendarPermission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarPermission post(@jakarta.annotation.Nonnull final CalendarPermission body) { return post(body, null); } /** - * Create a calendarPermission resource to specify the identity and role of the user with whom the specified calendar is being shared or delegated. + * Create new navigation property to calendarPermissions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CalendarPermission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarPermission post(@jakarta.annotation.Nonnull final CalendarPermission body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public CalendarPermission post(@jakarta.annotation.Nonnull final CalendarPermiss return this.requestAdapter.send(requestInfo, errorMapping, CalendarPermission::createFromDiscriminatorValue); } /** - * Get a collection of calendarPermission resources that describe the identity and roles of users with whom the specified calendar has been shared or delegated. Here, the calendar can be a user calendar or group calendar. + * The permissions of the users with whom the calendar is shared. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a collection of calendarPermission resources that describe the identity and roles of users with whom the specified calendar has been shared or delegated. Here, the calendar can be a user calendar or group calendar. + * The permissions of the users with whom the calendar is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a calendarPermission resource to specify the identity and role of the user with whom the specified calendar is being shared or delegated. + * Create new navigation property to calendarPermissions for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a calendarPermission resource to specify the identity and role of the user with whom the specified calendar is being shared or delegated. + * Create new navigation property to calendarPermissions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public CalendarPermissionsRequestBuilder withUrl(@jakarta.annotation.Nonnull fin return new CalendarPermissionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a collection of calendarPermission resources that describe the identity and roles of users with whom the specified calendar has been shared or delegated. Here, the calendar can be a user calendar or group calendar. + * The permissions of the users with whom the calendar is shared. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarpermissions/item/CalendarPermissionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarpermissions/item/CalendarPermissionItemRequestBuilder.java index 4d09a9153ab..138ed2e7673 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarpermissions/item/CalendarPermissionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarpermissions/item/CalendarPermissionItemRequestBuilder.java @@ -37,18 +37,16 @@ public CalendarPermissionItemRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendars/{calendar%2Did}/calendarPermissions/{calendarPermission%2Did}{?%24select}", rawUrl); } /** - * Delete calendarPermission. + * Delete navigation property calendarPermissions for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete calendarPermission. + * Delete navigation property calendarPermissions for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the specified permissions object of a user or group calendar that has been shared. + * The permissions of the users with whom the calendar is shared. * @return a {@link CalendarPermission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarPermission get() { return get(null); } /** - * Get the specified permissions object of a user or group calendar that has been shared. + * The permissions of the users with whom the calendar is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CalendarPermission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarPermission get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public CalendarPermission get(@jakarta.annotation.Nullable final java.util.funct return this.requestAdapter.send(requestInfo, errorMapping, CalendarPermission::createFromDiscriminatorValue); } /** - * Update the permissions assigned to an existing share recipient or delegate, through the corresponding calendarPermission object for a calendar. + * Update the navigation property calendarPermissions in users * @param body The request body * @return a {@link CalendarPermission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarPermission patch(@jakarta.annotation.Nonnull final CalendarPermission body) { return patch(body, null); } /** - * Update the permissions assigned to an existing share recipient or delegate, through the corresponding calendarPermission object for a calendar. + * Update the navigation property calendarPermissions in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CalendarPermission} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CalendarPermission patch(@jakarta.annotation.Nonnull final CalendarPermission body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public CalendarPermission patch(@jakarta.annotation.Nonnull final CalendarPermis return this.requestAdapter.send(requestInfo, errorMapping, CalendarPermission::createFromDiscriminatorValue); } /** - * Delete calendarPermission. + * Delete navigation property calendarPermissions for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete calendarPermission. + * Delete navigation property calendarPermissions for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the specified permissions object of a user or group calendar that has been shared. + * The permissions of the users with whom the calendar is shared. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the specified permissions object of a user or group calendar that has been shared. + * The permissions of the users with whom the calendar is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the permissions assigned to an existing share recipient or delegate, through the corresponding calendarPermission object for a calendar. + * Update the navigation property calendarPermissions in users * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the permissions assigned to an existing share recipient or delegate, through the corresponding calendarPermission object for a calendar. + * Update the navigation property calendarPermissions in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public CalendarPermissionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the specified permissions object of a user or group calendar that has been shared. + * The permissions of the users with whom the calendar is shared. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/CalendarViewRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/CalendarViewRequestBuilder.java index ddf2451d228..a6d03dcaa77 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/CalendarViewRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/CalendarViewRequestBuilder.java @@ -71,7 +71,6 @@ public CalendarViewRequestBuilder(@jakarta.annotation.Nonnull final String rawUr * The calendar view for the calendar. Navigation property. Read-only. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get() { @@ -82,7 +81,6 @@ public EventCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/attachments/AttachmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/attachments/AttachmentsRequestBuilder.java index 15b0ebd4f2f..9fe71e103d6 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/attachments/AttachmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/attachments/AttachmentsRequestBuilder.java @@ -69,21 +69,19 @@ public AttachmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendars/{calendar%2Did}/calendarView/{event%2Did}/attachments{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get() { return get(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, AttachmentCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body) { return post(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public AttachmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AttachmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/attachments/item/AttachmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/attachments/item/AttachmentItemRequestBuilder.java index c012420ae02..0072322fa1e 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/attachments/item/AttachmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/attachments/item/AttachmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public AttachmentItemRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendars/{calendar%2Did}/calendarView/{event%2Did}/attachments/{attachment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -79,7 +77,7 @@ public Attachment get(@jakarta.annotation.Nullable final java.util.function.Cons return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -87,7 +85,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/extensions/ExtensionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/extensions/ExtensionsRequestBuilder.java index bc92f1a6fb9..d61ecb5cd37 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/extensions/ExtensionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/extensions/ExtensionsRequestBuilder.java @@ -60,7 +60,7 @@ public ExtensionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendars/{calendar%2Did}/calendarView/{event%2Did}/extensions{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public ExtensionCollectionResponse get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -82,23 +82,21 @@ public ExtensionCollectionResponse get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, ExtensionCollectionResponse::createFromDiscriminatorValue); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body) { return post(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, Extension::createFromDiscriminatorValue); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -129,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @return a {@link RequestInformation} */ @@ -138,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -163,7 +161,7 @@ public ExtensionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ExtensionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/extensions/item/ExtensionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/extensions/item/ExtensionItemRequestBuilder.java index a9a9b005f2e..46ab596686d 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/extensions/item/ExtensionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/extensions/item/ExtensionItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public ExtensionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/instances/InstancesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/instances/InstancesRequestBuilder.java index 2d4afab118b..9648bf8d84d 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/instances/InstancesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/instances/InstancesRequestBuilder.java @@ -71,7 +71,6 @@ public InstancesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, * 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. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get() { @@ -82,7 +81,6 @@ public EventCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/instances/item/attachments/AttachmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/instances/item/attachments/AttachmentsRequestBuilder.java index e6e15372dc6..1721b18dbc4 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/instances/item/attachments/AttachmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/instances/item/attachments/AttachmentsRequestBuilder.java @@ -69,21 +69,19 @@ public AttachmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendars/{calendar%2Did}/calendarView/{event%2Did}/instances/{event%2Did1}/attachments{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get() { return get(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, AttachmentCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body) { return post(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public AttachmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AttachmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java index 8590e3106dc..1495cccebf0 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public AttachmentItemRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendars/{calendar%2Did}/calendarView/{event%2Did}/instances/{event%2Did1}/attachments/{attachment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -79,7 +77,7 @@ public Attachment get(@jakarta.annotation.Nullable final java.util.function.Cons return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -87,7 +85,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/instances/item/extensions/ExtensionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/instances/item/extensions/ExtensionsRequestBuilder.java index 7523f6154bb..aa80c4ed016 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/instances/item/extensions/ExtensionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/instances/item/extensions/ExtensionsRequestBuilder.java @@ -60,7 +60,7 @@ public ExtensionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendars/{calendar%2Did}/calendarView/{event%2Did}/instances/{event%2Did1}/extensions{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public ExtensionCollectionResponse get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -82,23 +82,21 @@ public ExtensionCollectionResponse get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, ExtensionCollectionResponse::createFromDiscriminatorValue); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body) { return post(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, Extension::createFromDiscriminatorValue); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -129,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @return a {@link RequestInformation} */ @@ -138,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -163,7 +161,7 @@ public ExtensionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ExtensionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java index 078e9d08724..8972e08c650 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/calendarview/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public ExtensionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/EventsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/EventsRequestBuilder.java index 8103a0c6fa3..848ad65ed04 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/EventsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/EventsRequestBuilder.java @@ -69,21 +69,19 @@ public EventsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendars/{calendar%2Did}/events{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of events in a calendar. The calendar can be one for a user, or the default calendar of a Microsoft 365 group. The list of events contains single instance meetings and series masters. To get expanded event instances, you can get the calendar view, orget the instances of an event. + * The events in the calendar. Navigation property. Read-only. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get() { return get(null); } /** - * Retrieve a list of events in a calendar. The calendar can be one for a user, or the default calendar of a Microsoft 365 group. The list of events contains single instance meetings and series masters. To get expanded event instances, you can get the calendar view, orget the instances of an event. + * The events in the calendar. Navigation property. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public EventCollectionResponse get(@jakarta.annotation.Nullable final java.util. return this.requestAdapter.send(requestInfo, errorMapping, EventCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to create a new event in a calendar. The calendar can be one for a user, or the default calendar of a Microsoft 365 group. + * Create new navigation property to events for users * @param body The request body * @return a {@link Event} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Event post(@jakarta.annotation.Nonnull final Event body) { return post(body, null); } /** - * Use this API to create a new event in a calendar. The calendar can be one for a user, or the default calendar of a Microsoft 365 group. + * Create new navigation property to events for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Event} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Event post(@jakarta.annotation.Nonnull final Event body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public Event post(@jakarta.annotation.Nonnull final Event body, @jakarta.annotat return this.requestAdapter.send(requestInfo, errorMapping, Event::createFromDiscriminatorValue); } /** - * Retrieve a list of events in a calendar. The calendar can be one for a user, or the default calendar of a Microsoft 365 group. The list of events contains single instance meetings and series masters. To get expanded event instances, you can get the calendar view, orget the instances of an event. + * The events in the calendar. Navigation property. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of events in a calendar. The calendar can be one for a user, or the default calendar of a Microsoft 365 group. The list of events contains single instance meetings and series masters. To get expanded event instances, you can get the calendar view, orget the instances of an event. + * The events in the calendar. Navigation property. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to create a new event in a calendar. The calendar can be one for a user, or the default calendar of a Microsoft 365 group. + * Create new navigation property to events for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to create a new event in a calendar. The calendar can be one for a user, or the default calendar of a Microsoft 365 group. + * Create new navigation property to events for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public EventsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw return new EventsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of events in a calendar. The calendar can be one for a user, or the default calendar of a Microsoft 365 group. The list of events contains single instance meetings and series masters. To get expanded event instances, you can get the calendar view, orget the instances of an event. + * The events in the calendar. Navigation property. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/EventItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/EventItemRequestBuilder.java index c16dc194885..9a3faf8c209 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/EventItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/EventItemRequestBuilder.java @@ -176,23 +176,21 @@ public Event get(@jakarta.annotation.Nullable final java.util.function.Consumer< return this.requestAdapter.send(requestInfo, errorMapping, Event::createFromDiscriminatorValue); } /** - * Update an event object. + * Update the navigation property events in users * @param body The request body * @return a {@link Event} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Event patch(@jakarta.annotation.Nonnull final Event body) { return patch(body, null); } /** - * Update an event object. + * Update the navigation property events in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Event} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Event patch(@jakarta.annotation.Nonnull final Event body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -243,7 +241,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update an event object. + * Update the navigation property events in users * @param body The request body * @return a {@link RequestInformation} */ @@ -252,7 +250,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update an event object. + * Update the navigation property events in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/attachments/AttachmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/attachments/AttachmentsRequestBuilder.java index c234bdd7b1f..d7588244e53 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/attachments/AttachmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/attachments/AttachmentsRequestBuilder.java @@ -69,21 +69,19 @@ public AttachmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendars/{calendar%2Did}/events/{event%2Did}/attachments{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get() { return get(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, AttachmentCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body) { return post(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public AttachmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AttachmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/attachments/item/AttachmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/attachments/item/AttachmentItemRequestBuilder.java index 81f7e499970..77718ac0cdd 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/attachments/item/AttachmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/attachments/item/AttachmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public AttachmentItemRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendars/{calendar%2Did}/events/{event%2Did}/attachments/{attachment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -79,7 +77,7 @@ public Attachment get(@jakarta.annotation.Nullable final java.util.function.Cons return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -87,7 +85,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/extensions/ExtensionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/extensions/ExtensionsRequestBuilder.java index 99b3c5e982b..c1b4bad587d 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/extensions/ExtensionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/extensions/ExtensionsRequestBuilder.java @@ -60,7 +60,7 @@ public ExtensionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendars/{calendar%2Did}/events/{event%2Did}/extensions{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public ExtensionCollectionResponse get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -82,23 +82,21 @@ public ExtensionCollectionResponse get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, ExtensionCollectionResponse::createFromDiscriminatorValue); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body) { return post(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, Extension::createFromDiscriminatorValue); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -129,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @return a {@link RequestInformation} */ @@ -138,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -163,7 +161,7 @@ public ExtensionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ExtensionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/extensions/item/ExtensionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/extensions/item/ExtensionItemRequestBuilder.java index 318cb2521cb..aeeb46bd9a8 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/extensions/item/ExtensionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/extensions/item/ExtensionItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public ExtensionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/instances/InstancesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/instances/InstancesRequestBuilder.java index cc443ae5bfd..5d32b933c38 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/instances/InstancesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/instances/InstancesRequestBuilder.java @@ -71,7 +71,6 @@ public InstancesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, * 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. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get() { @@ -82,7 +81,6 @@ public EventCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/instances/item/attachments/AttachmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/instances/item/attachments/AttachmentsRequestBuilder.java index 9e2aef45b70..d99d4a30859 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/instances/item/attachments/AttachmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/instances/item/attachments/AttachmentsRequestBuilder.java @@ -69,21 +69,19 @@ public AttachmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendars/{calendar%2Did}/events/{event%2Did}/instances/{event%2Did1}/attachments{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get() { return get(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, AttachmentCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body) { return post(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public AttachmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AttachmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java index e74c3560c5f..92c61d91b70 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public AttachmentItemRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendars/{calendar%2Did}/events/{event%2Did}/instances/{event%2Did1}/attachments/{attachment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -79,7 +77,7 @@ public Attachment get(@jakarta.annotation.Nullable final java.util.function.Cons return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -87,7 +85,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/instances/item/extensions/ExtensionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/instances/item/extensions/ExtensionsRequestBuilder.java index 449b7d25168..e676c83cd9d 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/instances/item/extensions/ExtensionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/instances/item/extensions/ExtensionsRequestBuilder.java @@ -60,7 +60,7 @@ public ExtensionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendars/{calendar%2Did}/events/{event%2Did}/instances/{event%2Did1}/extensions{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public ExtensionCollectionResponse get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -82,23 +82,21 @@ public ExtensionCollectionResponse get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, ExtensionCollectionResponse::createFromDiscriminatorValue); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body) { return post(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, Extension::createFromDiscriminatorValue); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -129,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @return a {@link RequestInformation} */ @@ -138,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -163,7 +161,7 @@ public ExtensionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ExtensionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java index f9c67bd9bbd..dfb6c84fa8a 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendars/item/events/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public ExtensionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendarview/CalendarViewRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendarview/CalendarViewRequestBuilder.java index 57c207c16e4..4eae4589cd2 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendarview/CalendarViewRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendarview/CalendarViewRequestBuilder.java @@ -71,7 +71,6 @@ public CalendarViewRequestBuilder(@jakarta.annotation.Nonnull final String rawUr * The calendar view for the calendar. Read-only. Nullable. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get() { @@ -82,7 +81,6 @@ public EventCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/attachments/AttachmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/attachments/AttachmentsRequestBuilder.java index 0aa17a7ae79..e8f12aecf1e 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/attachments/AttachmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/attachments/AttachmentsRequestBuilder.java @@ -69,21 +69,19 @@ public AttachmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendarView/{event%2Did}/attachments{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get() { return get(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, AttachmentCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body) { return post(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public AttachmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AttachmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/attachments/item/AttachmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/attachments/item/AttachmentItemRequestBuilder.java index aa8d819bb45..a30b66a5057 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/attachments/item/AttachmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/attachments/item/AttachmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public AttachmentItemRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendarView/{event%2Did}/attachments/{attachment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -79,7 +77,7 @@ public Attachment get(@jakarta.annotation.Nullable final java.util.function.Cons return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -87,7 +85,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/extensions/ExtensionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/extensions/ExtensionsRequestBuilder.java index 726bb930244..fbed0bc9dcc 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/extensions/ExtensionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/extensions/ExtensionsRequestBuilder.java @@ -60,7 +60,7 @@ public ExtensionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendarView/{event%2Did}/extensions{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public ExtensionCollectionResponse get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -82,23 +82,21 @@ public ExtensionCollectionResponse get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, ExtensionCollectionResponse::createFromDiscriminatorValue); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body) { return post(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, Extension::createFromDiscriminatorValue); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -129,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @return a {@link RequestInformation} */ @@ -138,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -163,7 +161,7 @@ public ExtensionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ExtensionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/extensions/item/ExtensionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/extensions/item/ExtensionItemRequestBuilder.java index bd439bdfbb6..8db6464f298 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/extensions/item/ExtensionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/extensions/item/ExtensionItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public ExtensionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/instances/InstancesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/instances/InstancesRequestBuilder.java index 8628735068a..d94ff480976 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/instances/InstancesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/instances/InstancesRequestBuilder.java @@ -71,7 +71,6 @@ public InstancesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, * 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. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get() { @@ -82,7 +81,6 @@ public EventCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/instances/item/attachments/AttachmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/instances/item/attachments/AttachmentsRequestBuilder.java index b02378a2876..bb9fef624ce 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/instances/item/attachments/AttachmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/instances/item/attachments/AttachmentsRequestBuilder.java @@ -69,21 +69,19 @@ public AttachmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendarView/{event%2Did}/instances/{event%2Did1}/attachments{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get() { return get(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, AttachmentCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body) { return post(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public AttachmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AttachmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java index 2fcd19939ea..93ea5fff311 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public AttachmentItemRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendarView/{event%2Did}/instances/{event%2Did1}/attachments/{attachment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -79,7 +77,7 @@ public Attachment get(@jakarta.annotation.Nullable final java.util.function.Cons return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -87,7 +85,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/instances/item/extensions/ExtensionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/instances/item/extensions/ExtensionsRequestBuilder.java index b045ff6bf51..97f185d27e5 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/instances/item/extensions/ExtensionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/instances/item/extensions/ExtensionsRequestBuilder.java @@ -60,7 +60,7 @@ public ExtensionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/users/{user%2Did}/calendarView/{event%2Did}/instances/{event%2Did1}/extensions{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public ExtensionCollectionResponse get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -82,23 +82,21 @@ public ExtensionCollectionResponse get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, ExtensionCollectionResponse::createFromDiscriminatorValue); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body) { return post(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, Extension::createFromDiscriminatorValue); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -129,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @return a {@link RequestInformation} */ @@ -138,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -163,7 +161,7 @@ public ExtensionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ExtensionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java index 2b712fcf597..e44e1f0059f 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/calendarview/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public ExtensionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/chats/ChatsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/chats/ChatsRequestBuilder.java index 457f0833821..3e72b7a5318 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/chats/ChatsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/chats/ChatsRequestBuilder.java @@ -69,21 +69,19 @@ public ChatsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/users/{user%2Did}/chats{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of chats that the user is part of. This method supports federation. When a user ID is provided, the calling application must belong to the same tenant that the user belongs to. + * Get chats from users * @return a {@link ChatCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatCollectionResponse get() { return get(null); } /** - * Retrieve the list of chats that the user is part of. This method supports federation. When a user ID is provided, the calling application must belong to the same tenant that the user belongs to. + * Get chats from users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -118,7 +116,7 @@ public Chat post(@jakarta.annotation.Nonnull final Chat body, @jakarta.annotatio return this.requestAdapter.send(requestInfo, errorMapping, Chat::createFromDiscriminatorValue); } /** - * Retrieve the list of chats that the user is part of. This method supports federation. When a user ID is provided, the calling application must belong to the same tenant that the user belongs to. + * Get chats from users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -126,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of chats that the user is part of. This method supports federation. When a user ID is provided, the calling application must belong to the same tenant that the user belongs to. + * Get chats from users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -172,7 +170,7 @@ public ChatsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new ChatsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of chats that the user is part of. This method supports federation. When a user ID is provided, the calling application must belong to the same tenant that the user belongs to. + * Get chats from users */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/chats/getallmessages/GetAllMessagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/chats/getallmessages/GetAllMessagesRequestBuilder.java index 57c24f32ac9..86f2fa54d2f 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/chats/getallmessages/GetAllMessagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/chats/getallmessages/GetAllMessagesRequestBuilder.java @@ -36,19 +36,21 @@ public GetAllMessagesRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/users/{user%2Did}/chats/getAllMessages(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top,model*}", rawUrl); } /** - * Invoke function getAllMessages + * Get all messages from all chats that a user is a participant in, including one-on-one chats, group chats, and meeting chats. * @return a {@link GetAllMessagesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetAllMessagesGetResponse get() { return get(null); } /** - * Invoke function getAllMessages + * Get all messages from all chats that a user is a participant in, including one-on-one chats, group chats, and meeting chats. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GetAllMessagesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetAllMessagesGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public GetAllMessagesGetResponse get(@jakarta.annotation.Nullable final java.uti return this.requestAdapter.send(requestInfo, errorMapping, GetAllMessagesGetResponse::createFromDiscriminatorValue); } /** - * Invoke function getAllMessages + * Get all messages from all chats that a user is a participant in, including one-on-one chats, group chats, and meeting chats. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getAllMessages + * Get all messages from all chats that a user is a participant in, including one-on-one chats, group chats, and meeting chats. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public GetAllMessagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new GetAllMessagesRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function getAllMessages + * Get all messages from all chats that a user is a participant in, including one-on-one chats, group chats, and meeting chats. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/ChatItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/ChatItemRequestBuilder.java index 6d666d31b70..2ad70be1ff1 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/ChatItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/ChatItemRequestBuilder.java @@ -163,21 +163,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a single chat (without its messages). This method supports federation. To access a chat, at least one chat member must belong to the tenant the request initiated from. + * Get chats from users * @return a {@link Chat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Chat get() { return get(null); } /** - * Retrieve a single chat (without its messages). This method supports federation. To access a chat, at least one chat member must belong to the tenant the request initiated from. + * Get chats from users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Chat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Chat get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -232,7 +230,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a single chat (without its messages). This method supports federation. To access a chat, at least one chat member must belong to the tenant the request initiated from. + * Get chats from users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -240,7 +238,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a single chat (without its messages). This method supports federation. To access a chat, at least one chat member must belong to the tenant the request initiated from. + * Get chats from users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -292,7 +290,7 @@ public ChatItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve a single chat (without its messages). This method supports federation. To access a chat, at least one chat member must belong to the tenant the request initiated from. + * Get chats from users */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/installedapps/InstalledAppsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/installedapps/InstalledAppsRequestBuilder.java index 4436854cc30..0979be8d328 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/installedapps/InstalledAppsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/installedapps/InstalledAppsRequestBuilder.java @@ -60,21 +60,19 @@ public InstalledAppsRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/users/{user%2Did}/chats/{chat%2Did}/installedApps{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List all app installations within a chat. + * A collection of all the apps in the chat. Nullable. * @return a {@link TeamsAppInstallationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsAppInstallationCollectionResponse get() { return get(null); } /** - * List all app installations within a chat. + * A collection of all the apps in the chat. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsAppInstallationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsAppInstallationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TeamsAppInstallationCollectionResponse get(@jakarta.annotation.Nullable f return this.requestAdapter.send(requestInfo, errorMapping, TeamsAppInstallationCollectionResponse::createFromDiscriminatorValue); } /** - * Install a teamsApp to the specified chat. + * Create new navigation property to installedApps for users * @param body The request body * @return a {@link TeamsAppInstallation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsAppInstallation post(@jakarta.annotation.Nonnull final TeamsAppInstallation body) { return post(body, null); } /** - * Install a teamsApp to the specified chat. + * Create new navigation property to installedApps for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsAppInstallation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsAppInstallation post(@jakarta.annotation.Nonnull final TeamsAppInstallation body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public TeamsAppInstallation post(@jakarta.annotation.Nonnull final TeamsAppInsta return this.requestAdapter.send(requestInfo, errorMapping, TeamsAppInstallation::createFromDiscriminatorValue); } /** - * List all app installations within a chat. + * A collection of all the apps in the chat. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List all app installations within a chat. + * A collection of all the apps in the chat. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Install a teamsApp to the specified chat. + * Create new navigation property to installedApps for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Install a teamsApp to the specified chat. + * Create new navigation property to installedApps for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public InstalledAppsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new InstalledAppsRequestBuilder(rawUrl, requestAdapter); } /** - * List all app installations within a chat. + * A collection of all the apps in the chat. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/installedapps/item/TeamsAppInstallationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/installedapps/item/TeamsAppInstallationItemRequestBuilder.java index 31428b7e3f5..29846aa0b55 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/installedapps/item/TeamsAppInstallationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/installedapps/item/TeamsAppInstallationItemRequestBuilder.java @@ -64,18 +64,16 @@ public TeamsAppInstallationItemRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/users/{user%2Did}/chats/{chat%2Did}/installedApps/{teamsAppInstallation%2Did}{?%24expand,%24select}", rawUrl); } /** - * Uninstall an app installed within a chat. + * Delete navigation property installedApps for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Uninstall an app installed within a chat. + * Delete navigation property installedApps for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -84,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get an app installed in a chat. + * A collection of all the apps in the chat. Nullable. * @return a {@link TeamsAppInstallation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsAppInstallation get() { return get(null); } /** - * Get an app installed in a chat. + * A collection of all the apps in the chat. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsAppInstallation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsAppInstallation get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +129,7 @@ public TeamsAppInstallation patch(@jakarta.annotation.Nonnull final TeamsAppInst return this.requestAdapter.send(requestInfo, errorMapping, TeamsAppInstallation::createFromDiscriminatorValue); } /** - * Uninstall an app installed within a chat. + * Delete navigation property installedApps for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +137,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Uninstall an app installed within a chat. + * Delete navigation property installedApps for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -153,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get an app installed in a chat. + * A collection of all the apps in the chat. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -161,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an app installed in a chat. + * A collection of all the apps in the chat. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -213,7 +209,7 @@ public TeamsAppInstallationItemRequestBuilder withUrl(@jakarta.annotation.Nonnul public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get an app installed in a chat. + * A collection of all the apps in the chat. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/members/MembersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/members/MembersRequestBuilder.java index 136fcde4df8..fba56e5be4e 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/members/MembersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/members/MembersRequestBuilder.java @@ -69,21 +69,19 @@ public MembersRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/users/{user%2Did}/chats/{chat%2Did}/members{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List all conversation members in a chat or channel. + * A collection of all the members in the chat. Nullable. * @return a {@link ConversationMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMemberCollectionResponse get() { return get(null); } /** - * List all conversation members in a chat or channel. + * A collection of all the members in the chat. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMemberCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public ConversationMemberCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, ConversationMemberCollectionResponse::createFromDiscriminatorValue); } /** - * Add a conversationMember to a chat. + * Create new navigation property to members for users * @param body The request body * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember post(@jakarta.annotation.Nonnull final ConversationMember body) { return post(body, null); } /** - * Add a conversationMember to a chat. + * Create new navigation property to members for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember post(@jakarta.annotation.Nonnull final ConversationMember body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public ConversationMember post(@jakarta.annotation.Nonnull final ConversationMem return this.requestAdapter.send(requestInfo, errorMapping, ConversationMember::createFromDiscriminatorValue); } /** - * List all conversation members in a chat or channel. + * A collection of all the members in the chat. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List all conversation members in a chat or channel. + * A collection of all the members in the chat. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add a conversationMember to a chat. + * Create new navigation property to members for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add a conversationMember to a chat. + * Create new navigation property to members for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public MembersRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new MembersRequestBuilder(rawUrl, requestAdapter); } /** - * List all conversation members in a chat or channel. + * A collection of all the members in the chat. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/members/item/ConversationMemberItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/members/item/ConversationMemberItemRequestBuilder.java index d6bb6b6ea14..275de1f2276 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/members/item/ConversationMemberItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/members/item/ConversationMemberItemRequestBuilder.java @@ -37,18 +37,16 @@ public ConversationMemberItemRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/users/{user%2Did}/chats/{chat%2Did}/members/{conversationMember%2Did}{?%24expand,%24select}", rawUrl); } /** - * Remove a conversationMember from a chat. + * Delete navigation property members for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove a conversationMember from a chat. + * Delete navigation property members for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a conversationMember from a chat or channel. + * A collection of all the members in the chat. Nullable. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember get() { return get(null); } /** - * Retrieve a conversationMember from a chat or channel. + * A collection of all the members in the chat. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -106,7 +102,7 @@ public ConversationMember patch(@jakarta.annotation.Nonnull final ConversationMe return this.requestAdapter.send(requestInfo, errorMapping, ConversationMember::createFromDiscriminatorValue); } /** - * Remove a conversationMember from a chat. + * Delete navigation property members for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -114,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove a conversationMember from a chat. + * Delete navigation property members for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a conversationMember from a chat or channel. + * A collection of all the members in the chat. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a conversationMember from a chat or channel. + * A collection of all the members in the chat. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public ConversationMemberItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve a conversationMember from a chat or channel. + * A collection of all the members in the chat. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/MessagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/MessagesRequestBuilder.java index 34973dc5ef8..16dccb395db 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/MessagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/MessagesRequestBuilder.java @@ -69,21 +69,19 @@ public MessagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/users/{user%2Did}/chats/{chat%2Did}/messages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of messages in a chat. This method supports federation. To list chat messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the chat. Nullable. * @return a {@link ChatMessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageCollectionResponse get() { return get(null); } /** - * Retrieve the list of messages in a chat. This method supports federation. To list chat messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the chat. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public ChatMessageCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, ChatMessageCollectionResponse::createFromDiscriminatorValue); } /** - * Send a new chatMessage in the specified chat. This API can't create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can create a chat message. + * Create new navigation property to messages for users * @param body The request body * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body) { return post(body, null); } /** - * Send a new chatMessage in the specified chat. This API can't create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can create a chat message. + * Create new navigation property to messages for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body, @jak return this.requestAdapter.send(requestInfo, errorMapping, ChatMessage::createFromDiscriminatorValue); } /** - * Retrieve the list of messages in a chat. This method supports federation. To list chat messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the chat. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of messages in a chat. This method supports federation. To list chat messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the chat. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Send a new chatMessage in the specified chat. This API can't create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can create a chat message. + * Create new navigation property to messages for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Send a new chatMessage in the specified chat. This API can't create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can create a chat message. + * Create new navigation property to messages for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public MessagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new MessagesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of messages in a chat. This method supports federation. To list chat messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the chat. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/delta/DeltaRequestBuilder.java index 6fd2133db26..f78fd669d09 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/users/{user%2Did}/chats/{chat%2Did}/messages/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/item/ChatMessageItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/item/ChatMessageItemRequestBuilder.java index e0c4a168311..a2e20ac4e38 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/item/ChatMessageItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/item/ChatMessageItemRequestBuilder.java @@ -109,21 +109,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the chat. Nullable. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage get() { return get(null); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the chat. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -178,7 +176,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the chat. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -186,7 +184,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the chat. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -238,7 +236,7 @@ public ChatMessageItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final S public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the chat. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/item/hostedcontents/HostedContentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/item/hostedcontents/HostedContentsRequestBuilder.java index 409a2e34672..1209d78a96f 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/item/hostedcontents/HostedContentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/item/hostedcontents/HostedContentsRequestBuilder.java @@ -60,21 +60,19 @@ public HostedContentsRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/users/{user%2Did}/chats/{chat%2Did}/messages/{chatMessage%2Did}/hostedContents{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link ChatMessageHostedContentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContentCollectionResponse get() { return get(null); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageHostedContentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ChatMessageHostedContent post(@jakarta.annotation.Nonnull final ChatMessa return this.requestAdapter.send(requestInfo, errorMapping, ChatMessageHostedContent::createFromDiscriminatorValue); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public HostedContentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new HostedContentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java index 8432f3a4c0c..548f9e42bdd 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link ChatMessageHostedContent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContent get() { return get(null); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageHostedContent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContent get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public ChatMessageHostedContentItemRequestBuilder withUrl(@jakarta.annotation.No public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/item/hostedcontents/item/value/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/item/hostedcontents/item/value/ContentRequestBuilder.java index 20564f9787f..158dfe4ca4e 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/item/hostedcontents/item/value/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/item/hostedcontents/item/value/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * Get media content for the navigation property hostedContents from users * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/item/replies/RepliesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/item/replies/RepliesRequestBuilder.java index 0205aab010b..37d1ffb0cc5 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/item/replies/RepliesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/item/replies/RepliesRequestBuilder.java @@ -69,21 +69,19 @@ public RepliesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/users/{user%2Did}/chats/{chat%2Did}/messages/{chatMessage%2Did}/replies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. * @return a {@link ChatMessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageCollectionResponse get() { return get(null); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public ChatMessageCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, ChatMessageCollectionResponse::createFromDiscriminatorValue); } /** - * Send a new reply to a chatMessage in a specified channel. + * Create new navigation property to replies for users * @param body The request body * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body) { return post(body, null); } /** - * Send a new reply to a chatMessage in a specified channel. + * Create new navigation property to replies for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body, @jak return this.requestAdapter.send(requestInfo, errorMapping, ChatMessage::createFromDiscriminatorValue); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Send a new reply to a chatMessage in a specified channel. + * Create new navigation property to replies for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Send a new reply to a chatMessage in a specified channel. + * Create new navigation property to replies for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public RepliesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new RepliesRequestBuilder(rawUrl, requestAdapter); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/item/replies/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/item/replies/delta/DeltaRequestBuilder.java index 4cb2f5a2716..cb0257cf3b4 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/item/replies/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/item/replies/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/users/{user%2Did}/chats/{chat%2Did}/messages/{chatMessage%2Did}/replies/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/item/replies/item/ChatMessageItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/item/replies/item/ChatMessageItemRequestBuilder.java index cd1f6255626..c339392a008 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/item/replies/item/ChatMessageItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/item/replies/item/ChatMessageItemRequestBuilder.java @@ -100,21 +100,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage get() { return get(null); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -169,7 +167,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -177,7 +175,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -229,7 +227,7 @@ public ChatMessageItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final S public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/item/replies/item/hostedcontents/HostedContentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/item/replies/item/hostedcontents/HostedContentsRequestBuilder.java index e724fae2f45..052eca2e94c 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/item/replies/item/hostedcontents/HostedContentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/item/replies/item/hostedcontents/HostedContentsRequestBuilder.java @@ -60,21 +60,19 @@ public HostedContentsRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/users/{user%2Did}/chats/{chat%2Did}/messages/{chatMessage%2Did}/replies/{chatMessage%2Did1}/hostedContents{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link ChatMessageHostedContentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContentCollectionResponse get() { return get(null); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageHostedContentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ChatMessageHostedContent post(@jakarta.annotation.Nonnull final ChatMessa return this.requestAdapter.send(requestInfo, errorMapping, ChatMessageHostedContent::createFromDiscriminatorValue); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public HostedContentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new HostedContentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/item/replies/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/item/replies/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java index a9fd2ce8130..b4e8e22f0b1 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/item/replies/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/item/replies/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link ChatMessageHostedContent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContent get() { return get(null); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageHostedContent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContent get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public ChatMessageHostedContentItemRequestBuilder withUrl(@jakarta.annotation.No public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/item/replies/item/hostedcontents/item/value/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/item/replies/item/hostedcontents/item/value/ContentRequestBuilder.java index 75d4c530b51..5952467fe3b 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/item/replies/item/hostedcontents/item/value/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/messages/item/replies/item/hostedcontents/item/value/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * Get media content for the navigation property hostedContents from users * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/permissiongrants/PermissionGrantsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/permissiongrants/PermissionGrantsRequestBuilder.java index d4ec0ab0ebf..9d7258ed189 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/permissiongrants/PermissionGrantsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/permissiongrants/PermissionGrantsRequestBuilder.java @@ -60,21 +60,19 @@ public PermissionGrantsRequestBuilder(@jakarta.annotation.Nonnull final String r super(requestAdapter, "{+baseurl}/users/{user%2Did}/chats/{chat%2Did}/permissionGrants{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List all resource-specific permission grants on the chat. This list specifies the Microsoft Entra apps that have access to the chat, along with the corresponding resource-specific access that each app has. + * A collection of permissions granted to apps for the chat. * @return a {@link ResourceSpecificPermissionGrantCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ResourceSpecificPermissionGrantCollectionResponse get() { return get(null); } /** - * List all resource-specific permission grants on the chat. This list specifies the Microsoft Entra apps that have access to the chat, along with the corresponding resource-specific access that each app has. + * A collection of permissions granted to apps for the chat. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ResourceSpecificPermissionGrantCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ResourceSpecificPermissionGrantCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ResourceSpecificPermissionGrant post(@jakarta.annotation.Nonnull final Re return this.requestAdapter.send(requestInfo, errorMapping, ResourceSpecificPermissionGrant::createFromDiscriminatorValue); } /** - * List all resource-specific permission grants on the chat. This list specifies the Microsoft Entra apps that have access to the chat, along with the corresponding resource-specific access that each app has. + * A collection of permissions granted to apps for the chat. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List all resource-specific permission grants on the chat. This list specifies the Microsoft Entra apps that have access to the chat, along with the corresponding resource-specific access that each app has. + * A collection of permissions granted to apps for the chat. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public PermissionGrantsRequestBuilder withUrl(@jakarta.annotation.Nonnull final return new PermissionGrantsRequestBuilder(rawUrl, requestAdapter); } /** - * List all resource-specific permission grants on the chat. This list specifies the Microsoft Entra apps that have access to the chat, along with the corresponding resource-specific access that each app has. + * A collection of permissions granted to apps for the chat. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/pinnedmessages/PinnedMessagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/pinnedmessages/PinnedMessagesRequestBuilder.java index ffadd454f82..6986f63cb9d 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/pinnedmessages/PinnedMessagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/pinnedmessages/PinnedMessagesRequestBuilder.java @@ -60,21 +60,19 @@ public PinnedMessagesRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/users/{user%2Did}/chats/{chat%2Did}/pinnedMessages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of pinnedChatMessages in a chat. + * A collection of all the pinned messages in the chat. Nullable. * @return a {@link PinnedChatMessageInfoCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PinnedChatMessageInfoCollectionResponse get() { return get(null); } /** - * Get a list of pinnedChatMessages in a chat. + * A collection of all the pinned messages in the chat. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PinnedChatMessageInfoCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PinnedChatMessageInfoCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public PinnedChatMessageInfoCollectionResponse get(@jakarta.annotation.Nullable return this.requestAdapter.send(requestInfo, errorMapping, PinnedChatMessageInfoCollectionResponse::createFromDiscriminatorValue); } /** - * Pin a chat message in the specified chat. This API cannot create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can pin a chat message. + * Create new navigation property to pinnedMessages for users * @param body The request body * @return a {@link PinnedChatMessageInfo} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PinnedChatMessageInfo post(@jakarta.annotation.Nonnull final PinnedChatMessageInfo body) { return post(body, null); } /** - * Pin a chat message in the specified chat. This API cannot create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can pin a chat message. + * Create new navigation property to pinnedMessages for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PinnedChatMessageInfo} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PinnedChatMessageInfo post(@jakarta.annotation.Nonnull final PinnedChatMessageInfo body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public PinnedChatMessageInfo post(@jakarta.annotation.Nonnull final PinnedChatMe return this.requestAdapter.send(requestInfo, errorMapping, PinnedChatMessageInfo::createFromDiscriminatorValue); } /** - * Get a list of pinnedChatMessages in a chat. + * A collection of all the pinned messages in the chat. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of pinnedChatMessages in a chat. + * A collection of all the pinned messages in the chat. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Pin a chat message in the specified chat. This API cannot create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can pin a chat message. + * Create new navigation property to pinnedMessages for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Pin a chat message in the specified chat. This API cannot create a new chat; you must use the list chats method to retrieve the ID of an existing chat before you can pin a chat message. + * Create new navigation property to pinnedMessages for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public PinnedMessagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new PinnedMessagesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of pinnedChatMessages in a chat. + * A collection of all the pinned messages in the chat. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/pinnedmessages/item/PinnedChatMessageInfoItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/pinnedmessages/item/PinnedChatMessageInfoItemRequestBuilder.java index 619b45642bc..979b7992a40 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/pinnedmessages/item/PinnedChatMessageInfoItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/pinnedmessages/item/PinnedChatMessageInfoItemRequestBuilder.java @@ -46,18 +46,16 @@ public PinnedChatMessageInfoItemRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/users/{user%2Did}/chats/{chat%2Did}/pinnedMessages/{pinnedChatMessageInfo%2Did}{?%24expand,%24select}", rawUrl); } /** - * Unpin a message from a chat. + * Delete navigation property pinnedMessages for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Unpin a message from a chat. + * Delete navigation property pinnedMessages for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -113,7 +111,7 @@ public PinnedChatMessageInfo patch(@jakarta.annotation.Nonnull final PinnedChatM return this.requestAdapter.send(requestInfo, errorMapping, PinnedChatMessageInfo::createFromDiscriminatorValue); } /** - * Unpin a message from a chat. + * Delete navigation property pinnedMessages for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -121,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Unpin a message from a chat. + * Delete navigation property pinnedMessages for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/tabs/TabsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/tabs/TabsRequestBuilder.java index e0d1fcb1fac..a6838281221 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/tabs/TabsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/tabs/TabsRequestBuilder.java @@ -60,21 +60,19 @@ public TabsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka super(requestAdapter, "{+baseurl}/users/{user%2Did}/chats/{chat%2Did}/tabs{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of tabs in the specified chat. + * A collection of all the tabs in the chat. Nullable. * @return a {@link TeamsTabCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTabCollectionResponse get() { return get(null); } /** - * Retrieve the list of tabs in the specified chat. + * A collection of all the tabs in the chat. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsTabCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTabCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TeamsTabCollectionResponse get(@jakarta.annotation.Nullable final java.ut return this.requestAdapter.send(requestInfo, errorMapping, TeamsTabCollectionResponse::createFromDiscriminatorValue); } /** - * Add (pin) a tab to the specified chat. The corresponding app must already be installed in the chat. + * Create new navigation property to tabs for users * @param body The request body * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab post(@jakarta.annotation.Nonnull final TeamsTab body) { return post(body, null); } /** - * Add (pin) a tab to the specified chat. The corresponding app must already be installed in the chat. + * Create new navigation property to tabs for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab post(@jakarta.annotation.Nonnull final TeamsTab body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public TeamsTab post(@jakarta.annotation.Nonnull final TeamsTab body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, TeamsTab::createFromDiscriminatorValue); } /** - * Retrieve the list of tabs in the specified chat. + * A collection of all the tabs in the chat. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of tabs in the specified chat. + * A collection of all the tabs in the chat. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add (pin) a tab to the specified chat. The corresponding app must already be installed in the chat. + * Create new navigation property to tabs for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add (pin) a tab to the specified chat. The corresponding app must already be installed in the chat. + * Create new navigation property to tabs for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public TabsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr return new TabsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of tabs in the specified chat. + * A collection of all the tabs in the chat. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/tabs/item/TeamsTabItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/tabs/item/TeamsTabItemRequestBuilder.java index 8bbc990e7a0..b3689091bd0 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/chats/item/tabs/item/TeamsTabItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/chats/item/tabs/item/TeamsTabItemRequestBuilder.java @@ -46,18 +46,16 @@ public TeamsTabItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/users/{user%2Did}/chats/{chat%2Did}/tabs/{teamsTab%2Did}{?%24expand,%24select}", rawUrl); } /** - * Remove (unpin) a tab from the specified chat. + * Delete navigation property tabs for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove (unpin) a tab from the specified chat. + * Delete navigation property tabs for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of the specified tab in a chat. + * A collection of all the tabs in the chat. Nullable. * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab get() { return get(null); } /** - * Retrieve the properties and relationships of the specified tab in a chat. + * A collection of all the tabs in the chat. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public TeamsTab get(@jakarta.annotation.Nullable final java.util.function.Consum return this.requestAdapter.send(requestInfo, errorMapping, TeamsTab::createFromDiscriminatorValue); } /** - * Update the properties of the specified tab in a chat. This can be used to configure the content of the tab. + * Update the navigation property tabs in users * @param body The request body * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab patch(@jakarta.annotation.Nonnull final TeamsTab body) { return patch(body, null); } /** - * Update the properties of the specified tab in a chat. This can be used to configure the content of the tab. + * Update the navigation property tabs in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab patch(@jakarta.annotation.Nonnull final TeamsTab body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public TeamsTab patch(@jakarta.annotation.Nonnull final TeamsTab body, @jakarta. return this.requestAdapter.send(requestInfo, errorMapping, TeamsTab::createFromDiscriminatorValue); } /** - * Remove (unpin) a tab from the specified chat. + * Delete navigation property tabs for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove (unpin) a tab from the specified chat. + * Delete navigation property tabs for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of the specified tab in a chat. + * A collection of all the tabs in the chat. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of the specified tab in a chat. + * A collection of all the tabs in the chat. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of the specified tab in a chat. This can be used to configure the content of the tab. + * Update the navigation property tabs in users * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of the specified tab in a chat. This can be used to configure the content of the tab. + * Update the navigation property tabs in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public TeamsTabItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of the specified tab in a chat. + * A collection of all the tabs in the chat. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/contactfolders/ContactFoldersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/contactfolders/ContactFoldersRequestBuilder.java index 5b68c2a1976..e109698cea3 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/contactfolders/ContactFoldersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/contactfolders/ContactFoldersRequestBuilder.java @@ -69,21 +69,19 @@ public ContactFoldersRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/users/{user%2Did}/contactFolders{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get the contact folder collection in the default Contacts folder of the signed-in user. + * The user's contacts folders. Read-only. Nullable. * @return a {@link ContactFolderCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContactFolderCollectionResponse get() { return get(null); } /** - * Get the contact folder collection in the default Contacts folder of the signed-in user. + * The user's contacts folders. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ContactFolderCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContactFolderCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public ContactFolderCollectionResponse get(@jakarta.annotation.Nullable final ja return this.requestAdapter.send(requestInfo, errorMapping, ContactFolderCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new contactFolder under the user's default contacts folder. You can also create a new contactfolder as a child of any specified contact folder. + * Create new navigation property to contactFolders for users * @param body The request body * @return a {@link ContactFolder} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContactFolder post(@jakarta.annotation.Nonnull final ContactFolder body) { return post(body, null); } /** - * Create a new contactFolder under the user's default contacts folder. You can also create a new contactfolder as a child of any specified contact folder. + * Create new navigation property to contactFolders for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ContactFolder} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContactFolder post(@jakarta.annotation.Nonnull final ContactFolder body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public ContactFolder post(@jakarta.annotation.Nonnull final ContactFolder body, return this.requestAdapter.send(requestInfo, errorMapping, ContactFolder::createFromDiscriminatorValue); } /** - * Get the contact folder collection in the default Contacts folder of the signed-in user. + * The user's contacts folders. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the contact folder collection in the default Contacts folder of the signed-in user. + * The user's contacts folders. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new contactFolder under the user's default contacts folder. You can also create a new contactfolder as a child of any specified contact folder. + * Create new navigation property to contactFolders for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new contactFolder under the user's default contacts folder. You can also create a new contactfolder as a child of any specified contact folder. + * Create new navigation property to contactFolders for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public ContactFoldersRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new ContactFoldersRequestBuilder(rawUrl, requestAdapter); } /** - * Get the contact folder collection in the default Contacts folder of the signed-in user. + * The user's contacts folders. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/contactfolders/item/ContactFolderItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/contactfolders/item/ContactFolderItemRequestBuilder.java index 5bfac772b22..2f135f20c26 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/contactfolders/item/ContactFolderItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/contactfolders/item/ContactFolderItemRequestBuilder.java @@ -55,18 +55,16 @@ public ContactFolderItemRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/users/{user%2Did}/contactFolders/{contactFolder%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete contactFolder other than the default contactFolder. + * Delete navigation property contactFolders for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete contactFolder other than the default contactFolder. + * Delete navigation property contactFolders for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -75,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get a contact folder by using the contact folder ID. There are two scenarios where an app can get another user's contact folder: + * The user's contacts folders. Read-only. Nullable. * @return a {@link ContactFolder} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContactFolder get() { return get(null); } /** - * Get a contact folder by using the contact folder ID. There are two scenarios where an app can get another user's contact folder: + * The user's contacts folders. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ContactFolder} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContactFolder get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -99,23 +95,21 @@ public ContactFolder get(@jakarta.annotation.Nullable final java.util.function.C return this.requestAdapter.send(requestInfo, errorMapping, ContactFolder::createFromDiscriminatorValue); } /** - * Update the properties of contactfolder object. + * Update the navigation property contactFolders in users * @param body The request body * @return a {@link ContactFolder} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContactFolder patch(@jakarta.annotation.Nonnull final ContactFolder body) { return patch(body, null); } /** - * Update the properties of contactfolder object. + * Update the navigation property contactFolders in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ContactFolder} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContactFolder patch(@jakarta.annotation.Nonnull final ContactFolder body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +120,7 @@ public ContactFolder patch(@jakarta.annotation.Nonnull final ContactFolder body, return this.requestAdapter.send(requestInfo, errorMapping, ContactFolder::createFromDiscriminatorValue); } /** - * Delete contactFolder other than the default contactFolder. + * Delete navigation property contactFolders for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +128,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete contactFolder other than the default contactFolder. + * Delete navigation property contactFolders for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get a contact folder by using the contact folder ID. There are two scenarios where an app can get another user's contact folder: + * The user's contacts folders. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -154,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a contact folder by using the contact folder ID. There are two scenarios where an app can get another user's contact folder: + * The user's contacts folders. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of contactfolder object. + * Update the navigation property contactFolders in users * @param body The request body * @return a {@link RequestInformation} */ @@ -175,7 +169,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of contactfolder object. + * Update the navigation property contactFolders in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -206,7 +200,7 @@ public ContactFolderItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get a contact folder by using the contact folder ID. There are two scenarios where an app can get another user's contact folder: + * The user's contacts folders. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/contactfolders/item/childfolders/ChildFoldersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/contactfolders/item/childfolders/ChildFoldersRequestBuilder.java index 6532542111c..2b5ee47a6b1 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/contactfolders/item/childfolders/ChildFoldersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/contactfolders/item/childfolders/ChildFoldersRequestBuilder.java @@ -69,21 +69,19 @@ public ChildFoldersRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/users/{user%2Did}/contactFolders/{contactFolder%2Did}/childFolders{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get a collection of child folders under the specified contact folder. + * The collection of child folders in the folder. Navigation property. Read-only. Nullable. * @return a {@link ContactFolderCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContactFolderCollectionResponse get() { return get(null); } /** - * Get a collection of child folders under the specified contact folder. + * The collection of child folders in the folder. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ContactFolderCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContactFolderCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public ContactFolderCollectionResponse get(@jakarta.annotation.Nullable final ja return this.requestAdapter.send(requestInfo, errorMapping, ContactFolderCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new contactFolder as a child of a specified folder. You can also create a new contactFolder under the user's default contact folder. + * Create new navigation property to childFolders for users * @param body The request body * @return a {@link ContactFolder} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContactFolder post(@jakarta.annotation.Nonnull final ContactFolder body) { return post(body, null); } /** - * Create a new contactFolder as a child of a specified folder. You can also create a new contactFolder under the user's default contact folder. + * Create new navigation property to childFolders for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ContactFolder} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContactFolder post(@jakarta.annotation.Nonnull final ContactFolder body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public ContactFolder post(@jakarta.annotation.Nonnull final ContactFolder body, return this.requestAdapter.send(requestInfo, errorMapping, ContactFolder::createFromDiscriminatorValue); } /** - * Get a collection of child folders under the specified contact folder. + * The collection of child folders in the folder. Navigation property. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a collection of child folders under the specified contact folder. + * The collection of child folders in the folder. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new contactFolder as a child of a specified folder. You can also create a new contactFolder under the user's default contact folder. + * Create new navigation property to childFolders for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new contactFolder as a child of a specified folder. You can also create a new contactFolder under the user's default contact folder. + * Create new navigation property to childFolders for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public ChildFoldersRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri return new ChildFoldersRequestBuilder(rawUrl, requestAdapter); } /** - * Get a collection of child folders under the specified contact folder. + * The collection of child folders in the folder. Navigation property. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/contactfolders/item/childfolders/item/contacts/ContactsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/contactfolders/item/childfolders/item/contacts/ContactsRequestBuilder.java index b6634910561..7425ad41f43 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/contactfolders/item/childfolders/item/contacts/ContactsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/contactfolders/item/childfolders/item/contacts/ContactsRequestBuilder.java @@ -69,21 +69,19 @@ public ContactsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/users/{user%2Did}/contactFolders/{contactFolder%2Did}/childFolders/{contactFolder%2Did1}/contacts{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get a contact collection from the default Contacts folder of the signed-in user (.../me/contacts), or from the specified contact folder. + * The contacts in the folder. Navigation property. Read-only. Nullable. * @return a {@link ContactCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContactCollectionResponse get() { return get(null); } /** - * Get a contact collection from the default Contacts folder of the signed-in user (.../me/contacts), or from the specified contact folder. + * The contacts in the folder. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ContactCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContactCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public ContactCollectionResponse get(@jakarta.annotation.Nullable final java.uti return this.requestAdapter.send(requestInfo, errorMapping, ContactCollectionResponse::createFromDiscriminatorValue); } /** - * Add a contact to the root Contacts folder or to the contacts endpoint of another contact folder. + * Create new navigation property to contacts for users * @param body The request body * @return a {@link Contact} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Contact post(@jakarta.annotation.Nonnull final Contact body) { return post(body, null); } /** - * Add a contact to the root Contacts folder or to the contacts endpoint of another contact folder. + * Create new navigation property to contacts for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Contact} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Contact post(@jakarta.annotation.Nonnull final Contact body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public Contact post(@jakarta.annotation.Nonnull final Contact body, @jakarta.ann return this.requestAdapter.send(requestInfo, errorMapping, Contact::createFromDiscriminatorValue); } /** - * Get a contact collection from the default Contacts folder of the signed-in user (.../me/contacts), or from the specified contact folder. + * The contacts in the folder. Navigation property. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a contact collection from the default Contacts folder of the signed-in user (.../me/contacts), or from the specified contact folder. + * The contacts in the folder. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add a contact to the root Contacts folder or to the contacts endpoint of another contact folder. + * Create new navigation property to contacts for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add a contact to the root Contacts folder or to the contacts endpoint of another contact folder. + * Create new navigation property to contacts for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public ContactsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new ContactsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a contact collection from the default Contacts folder of the signed-in user (.../me/contacts), or from the specified contact folder. + * The contacts in the folder. Navigation property. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/contactfolders/item/contacts/ContactsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/contactfolders/item/contacts/ContactsRequestBuilder.java index d851bbdceb3..cb1e67c36ab 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/contactfolders/item/contacts/ContactsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/contactfolders/item/contacts/ContactsRequestBuilder.java @@ -69,21 +69,19 @@ public ContactsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/users/{user%2Did}/contactFolders/{contactFolder%2Did}/contacts{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get a contact collection from the default Contacts folder of the signed-in user (.../me/contacts), or from the specified contact folder. + * The contacts in the folder. Navigation property. Read-only. Nullable. * @return a {@link ContactCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContactCollectionResponse get() { return get(null); } /** - * Get a contact collection from the default Contacts folder of the signed-in user (.../me/contacts), or from the specified contact folder. + * The contacts in the folder. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ContactCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContactCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public ContactCollectionResponse get(@jakarta.annotation.Nullable final java.uti return this.requestAdapter.send(requestInfo, errorMapping, ContactCollectionResponse::createFromDiscriminatorValue); } /** - * Add a contact to the root Contacts folder or to the contacts endpoint of another contact folder. + * Create new navigation property to contacts for users * @param body The request body * @return a {@link Contact} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Contact post(@jakarta.annotation.Nonnull final Contact body) { return post(body, null); } /** - * Add a contact to the root Contacts folder or to the contacts endpoint of another contact folder. + * Create new navigation property to contacts for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Contact} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Contact post(@jakarta.annotation.Nonnull final Contact body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public Contact post(@jakarta.annotation.Nonnull final Contact body, @jakarta.ann return this.requestAdapter.send(requestInfo, errorMapping, Contact::createFromDiscriminatorValue); } /** - * Get a contact collection from the default Contacts folder of the signed-in user (.../me/contacts), or from the specified contact folder. + * The contacts in the folder. Navigation property. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a contact collection from the default Contacts folder of the signed-in user (.../me/contacts), or from the specified contact folder. + * The contacts in the folder. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add a contact to the root Contacts folder or to the contacts endpoint of another contact folder. + * Create new navigation property to contacts for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add a contact to the root Contacts folder or to the contacts endpoint of another contact folder. + * Create new navigation property to contacts for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public ContactsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new ContactsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a contact collection from the default Contacts folder of the signed-in user (.../me/contacts), or from the specified contact folder. + * The contacts in the folder. Navigation property. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/contacts/ContactsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/contacts/ContactsRequestBuilder.java index 88dbf654066..215455ea32c 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/contacts/ContactsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/contacts/ContactsRequestBuilder.java @@ -69,21 +69,19 @@ public ContactsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/users/{user%2Did}/contacts{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a contact collection from the default contacts folder of the signed-in user. There are two scenarios where an app can get contacts in another user's contact folder: + * The user's contacts. Read-only. Nullable. * @return a {@link ContactCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContactCollectionResponse get() { return get(null); } /** - * Get a contact collection from the default contacts folder of the signed-in user. There are two scenarios where an app can get contacts in another user's contact folder: + * The user's contacts. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ContactCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ContactCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public ContactCollectionResponse get(@jakarta.annotation.Nullable final java.uti return this.requestAdapter.send(requestInfo, errorMapping, ContactCollectionResponse::createFromDiscriminatorValue); } /** - * Add a contact to the root Contacts folder or to the contacts endpoint of another contact folder. + * Create new navigation property to contacts for users * @param body The request body * @return a {@link Contact} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Contact post(@jakarta.annotation.Nonnull final Contact body) { return post(body, null); } /** - * Add a contact to the root Contacts folder or to the contacts endpoint of another contact folder. + * Create new navigation property to contacts for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Contact} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Contact post(@jakarta.annotation.Nonnull final Contact body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public Contact post(@jakarta.annotation.Nonnull final Contact body, @jakarta.ann return this.requestAdapter.send(requestInfo, errorMapping, Contact::createFromDiscriminatorValue); } /** - * Get a contact collection from the default contacts folder of the signed-in user. There are two scenarios where an app can get contacts in another user's contact folder: + * The user's contacts. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a contact collection from the default contacts folder of the signed-in user. There are two scenarios where an app can get contacts in another user's contact folder: + * The user's contacts. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add a contact to the root Contacts folder or to the contacts endpoint of another contact folder. + * Create new navigation property to contacts for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add a contact to the root Contacts folder or to the contacts endpoint of another contact folder. + * Create new navigation property to contacts for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public ContactsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new ContactsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a contact collection from the default contacts folder of the signed-in user. There are two scenarios where an app can get contacts in another user's contact folder: + * The user's contacts. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/contacts/item/ContactItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/contacts/item/ContactItemRequestBuilder.java index 6003e666088..24a25b7d2f9 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/contacts/item/ContactItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/contacts/item/ContactItemRequestBuilder.java @@ -55,18 +55,16 @@ public ContactItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/users/{user%2Did}/contacts/{contact%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a contact. + * Delete navigation property contacts for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a contact. + * Delete navigation property contacts for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -75,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a contact object. There are two scenarios where an app can get a contact in another user's contact folder: + * The user's contacts. Read-only. Nullable. * @return a {@link Contact} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Contact get() { return get(null); } /** - * Retrieve the properties and relationships of a contact object. There are two scenarios where an app can get a contact in another user's contact folder: + * The user's contacts. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Contact} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Contact get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -99,23 +95,21 @@ public Contact get(@jakarta.annotation.Nullable final java.util.function.Consume return this.requestAdapter.send(requestInfo, errorMapping, Contact::createFromDiscriminatorValue); } /** - * Update the properties of a contact object. + * Update the navigation property contacts in users * @param body The request body * @return a {@link Contact} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Contact patch(@jakarta.annotation.Nonnull final Contact body) { return patch(body, null); } /** - * Update the properties of a contact object. + * Update the navigation property contacts in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Contact} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Contact patch(@jakarta.annotation.Nonnull final Contact body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +120,7 @@ public Contact patch(@jakarta.annotation.Nonnull final Contact body, @jakarta.an return this.requestAdapter.send(requestInfo, errorMapping, Contact::createFromDiscriminatorValue); } /** - * Delete a contact. + * Delete navigation property contacts for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +128,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a contact. + * Delete navigation property contacts for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a contact object. There are two scenarios where an app can get a contact in another user's contact folder: + * The user's contacts. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -154,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a contact object. There are two scenarios where an app can get a contact in another user's contact folder: + * The user's contacts. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a contact object. + * Update the navigation property contacts in users * @param body The request body * @return a {@link RequestInformation} */ @@ -175,7 +169,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a contact object. + * Update the navigation property contacts in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -206,7 +200,7 @@ public ContactItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a contact object. There are two scenarios where an app can get a contact in another user's contact folder: + * The user's contacts. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/createdobjects/CreatedObjectsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/createdobjects/CreatedObjectsRequestBuilder.java index f0416d5234b..0b8c3d89027 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/createdobjects/CreatedObjectsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/createdobjects/CreatedObjectsRequestBuilder.java @@ -68,21 +68,19 @@ public CreatedObjectsRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/users/{user%2Did}/createdObjects{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of directory objects that were created by the user. This API returns only those directory objects that were created by a user who isn't in any administrator role; otherwise, it returns an empty object. + * Directory objects that the user created. Read-only. Nullable. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get() { return get(null); } /** - * Get a list of directory objects that were created by the user. This API returns only those directory objects that were created by a user who isn't in any administrator role; otherwise, it returns an empty object. + * Directory objects that the user created. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -92,7 +90,7 @@ public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, DirectoryObjectCollectionResponse::createFromDiscriminatorValue); } /** - * Get a list of directory objects that were created by the user. This API returns only those directory objects that were created by a user who isn't in any administrator role; otherwise, it returns an empty object. + * Directory objects that the user created. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -100,7 +98,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of directory objects that were created by the user. This API returns only those directory objects that were created by a user who isn't in any administrator role; otherwise, it returns an empty object. + * Directory objects that the user created. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -122,7 +120,7 @@ public CreatedObjectsRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new CreatedObjectsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of directory objects that were created by the user. This API returns only those directory objects that were created by a user who isn't in any administrator role; otherwise, it returns an empty object. + * Directory objects that the user created. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/directreports/DirectReportsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/directreports/DirectReportsRequestBuilder.java index 8f2bea4bd5f..729b8398442 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/directreports/DirectReportsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/directreports/DirectReportsRequestBuilder.java @@ -80,7 +80,6 @@ public DirectReportsRequestBuilder(@jakarta.annotation.Nonnull final String rawU * 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. Supports $expand. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get() { @@ -91,7 +90,6 @@ public DirectoryObjectCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/drive/DriveRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/drive/DriveRequestBuilder.java index 807bc6864f6..3a7221e9a48 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/drive/DriveRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/drive/DriveRequestBuilder.java @@ -37,21 +37,19 @@ public DriveRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/users/{user%2Did}/drive{?%24expand,%24select}", rawUrl); } /** - * Retrieve the properties and relationships of a Drive resource. A Drive is the top-level container for a file system, such as OneDrive or SharePoint document libraries. + * The user's OneDrive. Read-only. * @return a {@link Drive} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Drive get() { return get(null); } /** - * Retrieve the properties and relationships of a Drive resource. A Drive is the top-level container for a file system, such as OneDrive or SharePoint document libraries. + * The user's OneDrive. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Drive} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Drive get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -61,7 +59,7 @@ public Drive get(@jakarta.annotation.Nullable final java.util.function.Consumer< return this.requestAdapter.send(requestInfo, errorMapping, Drive::createFromDiscriminatorValue); } /** - * Retrieve the properties and relationships of a Drive resource. A Drive is the top-level container for a file system, such as OneDrive or SharePoint document libraries. + * The user's OneDrive. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -69,7 +67,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a Drive resource. A Drive is the top-level container for a file system, such as OneDrive or SharePoint document libraries. + * The user's OneDrive. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -91,7 +89,7 @@ public DriveRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DriveRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the properties and relationships of a Drive resource. A Drive is the top-level container for a file system, such as OneDrive or SharePoint document libraries. + * The user's OneDrive. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/drives/DrivesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/drives/DrivesRequestBuilder.java index 163d7ac0aec..c4fede5d541 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/drives/DrivesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/drives/DrivesRequestBuilder.java @@ -59,21 +59,19 @@ public DrivesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/users/{user%2Did}/drives{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of Drive resources available for a target User, Group, or Site. + * A collection of drives available for this user. Read-only. * @return a {@link DriveCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DriveCollectionResponse get() { return get(null); } /** - * Retrieve the list of Drive resources available for a target User, Group, or Site. + * A collection of drives available for this user. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DriveCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DriveCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public DriveCollectionResponse get(@jakarta.annotation.Nullable final java.util. return this.requestAdapter.send(requestInfo, errorMapping, DriveCollectionResponse::createFromDiscriminatorValue); } /** - * Retrieve the list of Drive resources available for a target User, Group, or Site. + * A collection of drives available for this user. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of Drive resources available for a target User, Group, or Site. + * A collection of drives available for this user. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public DrivesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw return new DrivesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of Drive resources available for a target User, Group, or Site. + * A collection of drives available for this user. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/employeeexperience/learningcourseactivities/LearningCourseActivitiesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/employeeexperience/learningcourseactivities/LearningCourseActivitiesRequestBuilder.java index ea884c1505b..4f03bec2930 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/employeeexperience/learningcourseactivities/LearningCourseActivitiesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/employeeexperience/learningcourseactivities/LearningCourseActivitiesRequestBuilder.java @@ -59,21 +59,19 @@ public LearningCourseActivitiesRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/users/{user%2Did}/employeeExperience/learningCourseActivities{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the learningCourseActivity objects (assigned or self-initiated) for a user. + * Get learningCourseActivities from users * @return a {@link LearningCourseActivityCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LearningCourseActivityCollectionResponse get() { return get(null); } /** - * Get a list of the learningCourseActivity objects (assigned or self-initiated) for a user. + * Get learningCourseActivities from users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link LearningCourseActivityCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LearningCourseActivityCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public LearningCourseActivityCollectionResponse get(@jakarta.annotation.Nullable return this.requestAdapter.send(requestInfo, errorMapping, LearningCourseActivityCollectionResponse::createFromDiscriminatorValue); } /** - * Get a list of the learningCourseActivity objects (assigned or self-initiated) for a user. + * Get learningCourseActivities from users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the learningCourseActivity objects (assigned or self-initiated) for a user. + * Get learningCourseActivities from users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public LearningCourseActivitiesRequestBuilder withUrl(@jakarta.annotation.Nonnul return new LearningCourseActivitiesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the learningCourseActivity objects (assigned or self-initiated) for a user. + * Get learningCourseActivities from users */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/employeeexperience/learningcourseactivities/item/LearningCourseActivityItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/employeeexperience/learningcourseactivities/item/LearningCourseActivityItemRequestBuilder.java index 2a8670f049e..7e1b66d8436 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/employeeexperience/learningcourseactivities/item/LearningCourseActivityItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/employeeexperience/learningcourseactivities/item/LearningCourseActivityItemRequestBuilder.java @@ -37,21 +37,19 @@ public LearningCourseActivityItemRequestBuilder(@jakarta.annotation.Nonnull fina super(requestAdapter, "{+baseurl}/users/{user%2Did}/employeeExperience/learningCourseActivities/{learningCourseActivity%2Did}{?%24expand,%24select}", rawUrl); } /** - * Get the specified learningCourseActivity object using either an ID or an externalCourseActivityId of the learning provider, or a courseActivityId of a user. + * Get learningCourseActivities from users * @return a {@link LearningCourseActivity} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LearningCourseActivity get() { return get(null); } /** - * Get the specified learningCourseActivity object using either an ID or an externalCourseActivityId of the learning provider, or a courseActivityId of a user. + * Get learningCourseActivities from users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link LearningCourseActivity} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LearningCourseActivity get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -61,7 +59,7 @@ public LearningCourseActivity get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, LearningCourseActivity::createFromDiscriminatorValue); } /** - * Get the specified learningCourseActivity object using either an ID or an externalCourseActivityId of the learning provider, or a courseActivityId of a user. + * Get learningCourseActivities from users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -69,7 +67,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the specified learningCourseActivity object using either an ID or an externalCourseActivityId of the learning provider, or a courseActivityId of a user. + * Get learningCourseActivities from users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -91,7 +89,7 @@ public LearningCourseActivityItemRequestBuilder withUrl(@jakarta.annotation.Nonn return new LearningCourseActivityItemRequestBuilder(rawUrl, requestAdapter); } /** - * Get the specified learningCourseActivity object using either an ID or an externalCourseActivityId of the learning provider, or a courseActivityId of a user. + * Get learningCourseActivities from users */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/employeeexperience/learningcourseactivitieswithexternalcourseactivityid/LearningCourseActivitiesWithExternalcourseActivityIdRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/employeeexperience/learningcourseactivitieswithexternalcourseactivityid/LearningCourseActivitiesWithExternalcourseActivityIdRequestBuilder.java index 7619495387c..5905985757b 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/employeeexperience/learningcourseactivitieswithexternalcourseactivityid/LearningCourseActivitiesWithExternalcourseActivityIdRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/employeeexperience/learningcourseactivitieswithexternalcourseactivityid/LearningCourseActivitiesWithExternalcourseActivityIdRequestBuilder.java @@ -39,21 +39,19 @@ public LearningCourseActivitiesWithExternalcourseActivityIdRequestBuilder(@jakar super(requestAdapter, "{+baseurl}/users/{user%2Did}/employeeExperience/learningCourseActivities(externalcourseActivityId='{externalcourseActivityId}'){?%24expand,%24select}", rawUrl); } /** - * Get the specified learningCourseActivity object using either an ID or an externalCourseActivityId of the learning provider, or a courseActivityId of a user. + * Get learningCourseActivities from users * @return a {@link LearningCourseActivity} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LearningCourseActivity get() { return get(null); } /** - * Get the specified learningCourseActivity object using either an ID or an externalCourseActivityId of the learning provider, or a courseActivityId of a user. + * Get learningCourseActivities from users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link LearningCourseActivity} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LearningCourseActivity get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -63,7 +61,7 @@ public LearningCourseActivity get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, LearningCourseActivity::createFromDiscriminatorValue); } /** - * Get the specified learningCourseActivity object using either an ID or an externalCourseActivityId of the learning provider, or a courseActivityId of a user. + * Get learningCourseActivities from users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -71,7 +69,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the specified learningCourseActivity object using either an ID or an externalCourseActivityId of the learning provider, or a courseActivityId of a user. + * Get learningCourseActivities from users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -93,7 +91,7 @@ public LearningCourseActivitiesWithExternalcourseActivityIdRequestBuilder withUr return new LearningCourseActivitiesWithExternalcourseActivityIdRequestBuilder(rawUrl, requestAdapter); } /** - * Get the specified learningCourseActivity object using either an ID or an externalCourseActivityId of the learning provider, or a courseActivityId of a user. + * Get learningCourseActivities from users */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/events/EventsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/events/EventsRequestBuilder.java index 9ef38e680f1..6cef961ba4a 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/events/EventsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/events/EventsRequestBuilder.java @@ -69,21 +69,19 @@ public EventsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/users/{user%2Did}/events{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of event objects in the user's mailbox. The list contains singleinstance meetings and series masters. To get expanded event instances, you can get the calendar view, orget the instances of an event. Currently, this operation returns event bodies in only HTML format. There are two scenarios where an app can get events in another user's calendar: + * The user's events. Default is to show Events under the Default Calendar. Read-only. Nullable. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get() { return get(null); } /** - * Get a list of event objects in the user's mailbox. The list contains singleinstance meetings and series masters. To get expanded event instances, you can get the calendar view, orget the instances of an event. Currently, this operation returns event bodies in only HTML format. There are two scenarios where an app can get events in another user's calendar: + * The user's events. Default is to show Events under the Default Calendar. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public EventCollectionResponse get(@jakarta.annotation.Nullable final java.util. return this.requestAdapter.send(requestInfo, errorMapping, EventCollectionResponse::createFromDiscriminatorValue); } /** - * Create one or more single-value extended properties in a new or existing instance of a resource. The following user resources are supported: The following group resources: See Extended properties overview for more information about when to useopen extensions or extended properties, and how to specify extended properties. + * Create new navigation property to events for users * @param body The request body * @return a {@link Event} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Event post(@jakarta.annotation.Nonnull final Event body) { return post(body, null); } /** - * Create one or more single-value extended properties in a new or existing instance of a resource. The following user resources are supported: The following group resources: See Extended properties overview for more information about when to useopen extensions or extended properties, and how to specify extended properties. + * Create new navigation property to events for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Event} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Event post(@jakarta.annotation.Nonnull final Event body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public Event post(@jakarta.annotation.Nonnull final Event body, @jakarta.annotat return this.requestAdapter.send(requestInfo, errorMapping, Event::createFromDiscriminatorValue); } /** - * Get a list of event objects in the user's mailbox. The list contains singleinstance meetings and series masters. To get expanded event instances, you can get the calendar view, orget the instances of an event. Currently, this operation returns event bodies in only HTML format. There are two scenarios where an app can get events in another user's calendar: + * The user's events. Default is to show Events under the Default Calendar. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of event objects in the user's mailbox. The list contains singleinstance meetings and series masters. To get expanded event instances, you can get the calendar view, orget the instances of an event. Currently, this operation returns event bodies in only HTML format. There are two scenarios where an app can get events in another user's calendar: + * The user's events. Default is to show Events under the Default Calendar. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create one or more single-value extended properties in a new or existing instance of a resource. The following user resources are supported: The following group resources: See Extended properties overview for more information about when to useopen extensions or extended properties, and how to specify extended properties. + * Create new navigation property to events for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create one or more single-value extended properties in a new or existing instance of a resource. The following user resources are supported: The following group resources: See Extended properties overview for more information about when to useopen extensions or extended properties, and how to specify extended properties. + * Create new navigation property to events for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public EventsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw return new EventsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of event objects in the user's mailbox. The list contains singleinstance meetings and series masters. To get expanded event instances, you can get the calendar view, orget the instances of an event. Currently, this operation returns event bodies in only HTML format. There are two scenarios where an app can get events in another user's calendar: + * The user's events. Default is to show Events under the Default Calendar. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/events/item/EventItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/events/item/EventItemRequestBuilder.java index e05b3e4b4d2..ed297beafe8 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/events/item/EventItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/events/item/EventItemRequestBuilder.java @@ -136,18 +136,16 @@ public EventItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/users/{user%2Did}/events/{event%2Did}{?%24expand,%24select}", rawUrl); } /** - * Removes the specified event from the containing calendar. If the event is a meeting, deleting the event on the organizer's calendar sends a cancellation message to the meeting attendees. + * Delete navigation property events for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Removes the specified event from the containing calendar. If the event is a meeting, deleting the event on the organizer's calendar sends a cancellation message to the meeting attendees. + * Delete navigation property events for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -156,21 +154,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the properties and relationships of the specified event object. Currently, this operation returns event bodies in only HTML format. There are two scenarios where an app can get an event in another user's calendar: Since the event resource supports extensions, you can also use the GET operation to get custom properties and extension data in an event instance. + * The user's events. Default is to show Events under the Default Calendar. Read-only. Nullable. * @return a {@link Event} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Event get() { return get(null); } /** - * Get the properties and relationships of the specified event object. Currently, this operation returns event bodies in only HTML format. There are two scenarios where an app can get an event in another user's calendar: Since the event resource supports extensions, you can also use the GET operation to get custom properties and extension data in an event instance. + * The user's events. Default is to show Events under the Default Calendar. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Event} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Event get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -180,23 +176,21 @@ public Event get(@jakarta.annotation.Nullable final java.util.function.Consumer< return this.requestAdapter.send(requestInfo, errorMapping, Event::createFromDiscriminatorValue); } /** - * Update the properties of the event object. + * Update the navigation property events in users * @param body The request body * @return a {@link Event} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Event patch(@jakarta.annotation.Nonnull final Event body) { return patch(body, null); } /** - * Update the properties of the event object. + * Update the navigation property events in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Event} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Event patch(@jakarta.annotation.Nonnull final Event body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -207,7 +201,7 @@ public Event patch(@jakarta.annotation.Nonnull final Event body, @jakarta.annota return this.requestAdapter.send(requestInfo, errorMapping, Event::createFromDiscriminatorValue); } /** - * Removes the specified event from the containing calendar. If the event is a meeting, deleting the event on the organizer's calendar sends a cancellation message to the meeting attendees. + * Delete navigation property events for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -215,7 +209,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Removes the specified event from the containing calendar. If the event is a meeting, deleting the event on the organizer's calendar sends a cancellation message to the meeting attendees. + * Delete navigation property events for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -227,7 +221,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the properties and relationships of the specified event object. Currently, this operation returns event bodies in only HTML format. There are two scenarios where an app can get an event in another user's calendar: Since the event resource supports extensions, you can also use the GET operation to get custom properties and extension data in an event instance. + * The user's events. Default is to show Events under the Default Calendar. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -235,7 +229,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the properties and relationships of the specified event object. Currently, this operation returns event bodies in only HTML format. There are two scenarios where an app can get an event in another user's calendar: Since the event resource supports extensions, you can also use the GET operation to get custom properties and extension data in an event instance. + * The user's events. Default is to show Events under the Default Calendar. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -247,7 +241,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of the event object. + * Update the navigation property events in users * @param body The request body * @return a {@link RequestInformation} */ @@ -256,7 +250,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of the event object. + * Update the navigation property events in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -287,7 +281,7 @@ public EventItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the properties and relationships of the specified event object. Currently, this operation returns event bodies in only HTML format. There are two scenarios where an app can get an event in another user's calendar: Since the event resource supports extensions, you can also use the GET operation to get custom properties and extension data in an event instance. + * The user's events. Default is to show Events under the Default Calendar. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/events/item/attachments/AttachmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/events/item/attachments/AttachmentsRequestBuilder.java index 252e745b3d9..50e55af16fa 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/events/item/attachments/AttachmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/events/item/attachments/AttachmentsRequestBuilder.java @@ -69,21 +69,19 @@ public AttachmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/users/{user%2Did}/events/{event%2Did}/attachments{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get() { return get(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, AttachmentCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body) { return post(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public AttachmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AttachmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/events/item/attachments/item/AttachmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/events/item/attachments/item/AttachmentItemRequestBuilder.java index ea2ee84f4df..fa7ce52206d 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/events/item/attachments/item/AttachmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/events/item/attachments/item/AttachmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public AttachmentItemRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/users/{user%2Did}/events/{event%2Did}/attachments/{attachment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -79,7 +77,7 @@ public Attachment get(@jakarta.annotation.Nullable final java.util.function.Cons return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -87,7 +85,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/users/item/events/item/extensions/ExtensionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/events/item/extensions/ExtensionsRequestBuilder.java index c86ccd7cc93..994cf823bf9 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/events/item/extensions/ExtensionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/events/item/extensions/ExtensionsRequestBuilder.java @@ -60,7 +60,7 @@ public ExtensionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/users/{user%2Did}/events/{event%2Did}/extensions{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public ExtensionCollectionResponse get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -82,23 +82,21 @@ public ExtensionCollectionResponse get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, ExtensionCollectionResponse::createFromDiscriminatorValue); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body) { return post(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, Extension::createFromDiscriminatorValue); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -129,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @return a {@link RequestInformation} */ @@ -138,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -163,7 +161,7 @@ public ExtensionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ExtensionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/events/item/extensions/item/ExtensionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/events/item/extensions/item/ExtensionItemRequestBuilder.java index 298a5d41815..e32b0349681 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/events/item/extensions/item/ExtensionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/events/item/extensions/item/ExtensionItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public ExtensionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/events/item/instances/InstancesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/events/item/instances/InstancesRequestBuilder.java index 40e0e664d82..76119b8b9e4 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/events/item/instances/InstancesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/events/item/instances/InstancesRequestBuilder.java @@ -71,7 +71,6 @@ public InstancesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, * 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. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get() { @@ -82,7 +81,6 @@ public EventCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link EventCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public EventCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/events/item/instances/item/attachments/AttachmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/events/item/instances/item/attachments/AttachmentsRequestBuilder.java index fc090ee0959..e6bf3921688 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/events/item/instances/item/attachments/AttachmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/events/item/instances/item/attachments/AttachmentsRequestBuilder.java @@ -69,21 +69,19 @@ public AttachmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/users/{user%2Did}/events/{event%2Did}/instances/{event%2Did1}/attachments{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get() { return get(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, AttachmentCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body) { return post(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to add an attachment to an existing event. This operation limits the size of the attachment you can add to under 3 MB. If an organizer adds an attachment to a meeting event, the organizer can subsequently update the event to send the attachment and update the event for each attendee as well. + * Create new navigation property to attachments for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public AttachmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AttachmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of attachment objects attached to an event. + * The collection of FileAttachment, ItemAttachment, and referenceAttachment attachments for the event. Navigation property. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/events/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/events/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java index 7c7d7c005f2..d5b3b548f68 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/events/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/events/item/instances/item/attachments/item/AttachmentItemRequestBuilder.java @@ -37,18 +37,16 @@ public AttachmentItemRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/users/{user%2Did}/events/{event%2Did}/instances/{event%2Did1}/attachments/{attachment%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -79,7 +77,7 @@ public Attachment get(@jakarta.annotation.Nullable final java.util.function.Cons return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -87,7 +85,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an attachment from a user calendar event, mail message, or group post. + * Delete navigation property attachments for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/users/item/events/item/instances/item/extensions/ExtensionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/events/item/instances/item/extensions/ExtensionsRequestBuilder.java index 2e9e51a5127..022e66cc519 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/events/item/instances/item/extensions/ExtensionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/events/item/instances/item/extensions/ExtensionsRequestBuilder.java @@ -60,7 +60,7 @@ public ExtensionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/users/{user%2Did}/events/{event%2Did}/instances/{event%2Did1}/extensions{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public ExtensionCollectionResponse get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -82,23 +82,21 @@ public ExtensionCollectionResponse get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, ExtensionCollectionResponse::createFromDiscriminatorValue); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body) { return post(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, Extension::createFromDiscriminatorValue); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -129,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @return a {@link RequestInformation} */ @@ -138,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -163,7 +161,7 @@ public ExtensionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ExtensionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/events/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/events/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java index bd0273fe37e..128fbdd77f9 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/events/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/events/item/instances/item/extensions/item/ExtensionItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public ExtensionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the event. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/exportpersonaldata/ExportPersonalDataRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/exportpersonaldata/ExportPersonalDataRequestBuilder.java index 75754cf8294..cf5396717e0 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/exportpersonaldata/ExportPersonalDataRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/exportpersonaldata/ExportPersonalDataRequestBuilder.java @@ -35,7 +35,7 @@ public ExportPersonalDataRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/users/{user%2Did}/exportPersonalData", rawUrl); } /** - * Submit a data policy operation request from a company administrator or an application to export an organizational user's data. This data includes the user's data stored in OneDrive and their activity reports. For more guidance about exporting data while complying with regulations, see Data Subject Requests and the GDPR and CCPA. + * Submit a data policy operation request from a company administrator or an application to export an organizational user's data. This data includes the user's data stored in OneDrive and their activity reports. For more information about exporting data while complying with regulations, see Data Subject Requests and the GDPR and CCPA. * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code * @see Find more info here @@ -44,7 +44,7 @@ public void post(@jakarta.annotation.Nonnull final ExportPersonalDataPostRequest post(body, null); } /** - * Submit a data policy operation request from a company administrator or an application to export an organizational user's data. This data includes the user's data stored in OneDrive and their activity reports. For more guidance about exporting data while complying with regulations, see Data Subject Requests and the GDPR and CCPA. + * Submit a data policy operation request from a company administrator or an application to export an organizational user's data. This data includes the user's data stored in OneDrive and their activity reports. For more information about exporting data while complying with regulations, see Data Subject Requests and the GDPR and CCPA. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code @@ -58,7 +58,7 @@ public void post(@jakarta.annotation.Nonnull final ExportPersonalDataPostRequest this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Submit a data policy operation request from a company administrator or an application to export an organizational user's data. This data includes the user's data stored in OneDrive and their activity reports. For more guidance about exporting data while complying with regulations, see Data Subject Requests and the GDPR and CCPA. + * Submit a data policy operation request from a company administrator or an application to export an organizational user's data. This data includes the user's data stored in OneDrive and their activity reports. For more information about exporting data while complying with regulations, see Data Subject Requests and the GDPR and CCPA. * @param body The request body * @return a {@link RequestInformation} */ @@ -67,7 +67,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Submit a data policy operation request from a company administrator or an application to export an organizational user's data. This data includes the user's data stored in OneDrive and their activity reports. For more guidance about exporting data while complying with regulations, see Data Subject Requests and the GDPR and CCPA. + * Submit a data policy operation request from a company administrator or an application to export an organizational user's data. This data includes the user's data stored in OneDrive and their activity reports. For more information about exporting data while complying with regulations, see Data Subject Requests and the GDPR and CCPA. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/users/item/followedsites/FollowedSitesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/followedsites/FollowedSitesRequestBuilder.java index 01638cc45f4..09d042eb250 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/followedsites/FollowedSitesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/followedsites/FollowedSitesRequestBuilder.java @@ -77,21 +77,19 @@ public FollowedSitesRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/users/{user%2Did}/followedSites{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List the sites that have been followed by the signed in user. + * Get followedSites from users * @return a {@link SiteCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SiteCollectionResponse get() { return get(null); } /** - * List the sites that have been followed by the signed in user. + * Get followedSites from users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SiteCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SiteCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -101,7 +99,7 @@ public SiteCollectionResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, SiteCollectionResponse::createFromDiscriminatorValue); } /** - * List the sites that have been followed by the signed in user. + * Get followedSites from users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -109,7 +107,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List the sites that have been followed by the signed in user. + * Get followedSites from users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +129,7 @@ public FollowedSitesRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new FollowedSitesRequestBuilder(rawUrl, requestAdapter); } /** - * List the sites that have been followed by the signed in user. + * Get followedSites from users */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/getmanagedappdiagnosticstatuses/GetManagedAppDiagnosticStatusesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/getmanagedappdiagnosticstatuses/GetManagedAppDiagnosticStatusesRequestBuilder.java index 22166b68b60..e96fc252a2a 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/getmanagedappdiagnosticstatuses/GetManagedAppDiagnosticStatusesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/getmanagedappdiagnosticstatuses/GetManagedAppDiagnosticStatusesRequestBuilder.java @@ -39,6 +39,7 @@ public GetManagedAppDiagnosticStatusesRequestBuilder(@jakarta.annotation.Nonnull * Gets diagnostics validation status for a given user. * @return a {@link GetManagedAppDiagnosticStatusesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetManagedAppDiagnosticStatusesGetResponse get() { @@ -49,6 +50,7 @@ public GetManagedAppDiagnosticStatusesGetResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GetManagedAppDiagnosticStatusesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetManagedAppDiagnosticStatusesGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/getmanagedapppolicies/GetManagedAppPoliciesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/getmanagedapppolicies/GetManagedAppPoliciesRequestBuilder.java index 33f4e30bb19..3ae7185668a 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/getmanagedapppolicies/GetManagedAppPoliciesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/getmanagedapppolicies/GetManagedAppPoliciesRequestBuilder.java @@ -39,6 +39,7 @@ public GetManagedAppPoliciesRequestBuilder(@jakarta.annotation.Nonnull final Str * Gets app restrictions for a given user. * @return a {@link GetManagedAppPoliciesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetManagedAppPoliciesGetResponse get() { @@ -49,6 +50,7 @@ public GetManagedAppPoliciesGetResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GetManagedAppPoliciesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetManagedAppPoliciesGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/getmanageddeviceswithappfailures/GetManagedDevicesWithAppFailuresRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/getmanageddeviceswithappfailures/GetManagedDevicesWithAppFailuresRequestBuilder.java index cca91b90220..0a4d0a7c79f 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/getmanageddeviceswithappfailures/GetManagedDevicesWithAppFailuresRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/getmanageddeviceswithappfailures/GetManagedDevicesWithAppFailuresRequestBuilder.java @@ -39,6 +39,7 @@ public GetManagedDevicesWithAppFailuresRequestBuilder(@jakarta.annotation.Nonnul * Retrieves the list of devices with failed apps * @return a {@link GetManagedDevicesWithAppFailuresGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetManagedDevicesWithAppFailuresGetResponse get() { @@ -49,6 +50,7 @@ public GetManagedDevicesWithAppFailuresGetResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GetManagedDevicesWithAppFailuresGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetManagedDevicesWithAppFailuresGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/inferenceclassification/overrides/OverridesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/inferenceclassification/overrides/OverridesRequestBuilder.java index 8ea5e091b0e..3fc2531755f 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/inferenceclassification/overrides/OverridesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/inferenceclassification/overrides/OverridesRequestBuilder.java @@ -60,21 +60,19 @@ public OverridesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/users/{user%2Did}/inferenceClassification/overrides{?%24count,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get the overrides that a user has set up to always classify messages from certain senders in specific ways. Each override corresponds to an SMTP address of a sender. Initially, a user does not have any overrides. + * A set of overrides for a user to always classify messages from specific senders in certain ways: focused, or other. Read-only. Nullable. * @return a {@link InferenceClassificationOverrideCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InferenceClassificationOverrideCollectionResponse get() { return get(null); } /** - * Get the overrides that a user has set up to always classify messages from certain senders in specific ways. Each override corresponds to an SMTP address of a sender. Initially, a user does not have any overrides. + * A set of overrides for a user to always classify messages from specific senders in certain ways: focused, or other. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InferenceClassificationOverrideCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InferenceClassificationOverrideCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public InferenceClassificationOverrideCollectionResponse get(@jakarta.annotation return this.requestAdapter.send(requestInfo, errorMapping, InferenceClassificationOverrideCollectionResponse::createFromDiscriminatorValue); } /** - * Create an override for a sender identified by an SMTP address. Future messages from that SMTP address will be consistently classifiedas specified in the override. Note + * Create new navigation property to overrides for users * @param body The request body * @return a {@link InferenceClassificationOverride} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InferenceClassificationOverride post(@jakarta.annotation.Nonnull final InferenceClassificationOverride body) { return post(body, null); } /** - * Create an override for a sender identified by an SMTP address. Future messages from that SMTP address will be consistently classifiedas specified in the override. Note + * Create new navigation property to overrides for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InferenceClassificationOverride} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InferenceClassificationOverride post(@jakarta.annotation.Nonnull final InferenceClassificationOverride body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public InferenceClassificationOverride post(@jakarta.annotation.Nonnull final In return this.requestAdapter.send(requestInfo, errorMapping, InferenceClassificationOverride::createFromDiscriminatorValue); } /** - * Get the overrides that a user has set up to always classify messages from certain senders in specific ways. Each override corresponds to an SMTP address of a sender. Initially, a user does not have any overrides. + * A set of overrides for a user to always classify messages from specific senders in certain ways: focused, or other. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the overrides that a user has set up to always classify messages from certain senders in specific ways. Each override corresponds to an SMTP address of a sender. Initially, a user does not have any overrides. + * A set of overrides for a user to always classify messages from specific senders in certain ways: focused, or other. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an override for a sender identified by an SMTP address. Future messages from that SMTP address will be consistently classifiedas specified in the override. Note + * Create new navigation property to overrides for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an override for a sender identified by an SMTP address. Future messages from that SMTP address will be consistently classifiedas specified in the override. Note + * Create new navigation property to overrides for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public OverridesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new OverridesRequestBuilder(rawUrl, requestAdapter); } /** - * Get the overrides that a user has set up to always classify messages from certain senders in specific ways. Each override corresponds to an SMTP address of a sender. Initially, a user does not have any overrides. + * A set of overrides for a user to always classify messages from specific senders in certain ways: focused, or other. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/inferenceclassification/overrides/item/InferenceClassificationOverrideItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/inferenceclassification/overrides/item/InferenceClassificationOverrideItemRequestBuilder.java index c8e14777bee..87bd7247244 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/inferenceclassification/overrides/item/InferenceClassificationOverrideItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/inferenceclassification/overrides/item/InferenceClassificationOverrideItemRequestBuilder.java @@ -37,18 +37,16 @@ public InferenceClassificationOverrideItemRequestBuilder(@jakarta.annotation.Non super(requestAdapter, "{+baseurl}/users/{user%2Did}/inferenceClassification/overrides/{inferenceClassificationOverride%2Did}{?%24select}", rawUrl); } /** - * Delete an override specified by its ID. + * Delete navigation property overrides for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an override specified by its ID. + * Delete navigation property overrides for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -79,23 +77,21 @@ public InferenceClassificationOverride get(@jakarta.annotation.Nullable final ja return this.requestAdapter.send(requestInfo, errorMapping, InferenceClassificationOverride::createFromDiscriminatorValue); } /** - * Change the classifyAs field of an override as specified. You cannot use PATCH to change any other fields in an inferenceClassificationOverride instance. If an override exists for a sender and the sender changes his/her display name, you can use POST to force an update to the name field in the existing override. If an override exists for a sender and the sender changes his/her SMTP address, deleting the existing override and creating a new one withthe new SMTP address is the only way to 'update' the override for this sender. + * Update the navigation property overrides in users * @param body The request body * @return a {@link InferenceClassificationOverride} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InferenceClassificationOverride patch(@jakarta.annotation.Nonnull final InferenceClassificationOverride body) { return patch(body, null); } /** - * Change the classifyAs field of an override as specified. You cannot use PATCH to change any other fields in an inferenceClassificationOverride instance. If an override exists for a sender and the sender changes his/her display name, you can use POST to force an update to the name field in the existing override. If an override exists for a sender and the sender changes his/her SMTP address, deleting the existing override and creating a new one withthe new SMTP address is the only way to 'update' the override for this sender. + * Update the navigation property overrides in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InferenceClassificationOverride} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InferenceClassificationOverride patch(@jakarta.annotation.Nonnull final InferenceClassificationOverride body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -106,7 +102,7 @@ public InferenceClassificationOverride patch(@jakarta.annotation.Nonnull final I return this.requestAdapter.send(requestInfo, errorMapping, InferenceClassificationOverride::createFromDiscriminatorValue); } /** - * Delete an override specified by its ID. + * Delete navigation property overrides for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -114,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an override specified by its ID. + * Delete navigation property overrides for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Change the classifyAs field of an override as specified. You cannot use PATCH to change any other fields in an inferenceClassificationOverride instance. If an override exists for a sender and the sender changes his/her display name, you can use POST to force an update to the name field in the existing override. If an override exists for a sender and the sender changes his/her SMTP address, deleting the existing override and creating a new one withthe new SMTP address is the only way to 'update' the override for this sender. + * Update the navigation property overrides in users * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Change the classifyAs field of an override as specified. You cannot use PATCH to change any other fields in an inferenceClassificationOverride instance. If an override exists for a sender and the sender changes his/her display name, you can use POST to force an update to the name field in the existing override. If an override exists for a sender and the sender changes his/her SMTP address, deleting the existing override and creating a new one withthe new SMTP address is the only way to 'update' the override for this sender. + * Update the navigation property overrides in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/users/item/insights/shared/SharedRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/insights/shared/SharedRequestBuilder.java index 9a36c354928..2d85fc7c8eb 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/insights/shared/SharedRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/insights/shared/SharedRequestBuilder.java @@ -60,21 +60,19 @@ public SharedRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/users/{user%2Did}/insights/shared{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Calculated insight that includes the list of documents shared with a user. This insight includes documents hosted on OneDrive/SharePoint in the user's Microsoft 365 tenant that are shared with the user, and documents that are attached as files and sent to the user. + * Calculated relationship identifying documents shared with or by the user. This includes URLs, file attachments, and reference attachments to OneDrive for Business and SharePoint files found in Outlook messages and meetings. This also includes URLs and reference attachments to Teams conversations. Ordered by recency of share. * @return a {@link SharedInsightCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SharedInsightCollectionResponse get() { return get(null); } /** - * Calculated insight that includes the list of documents shared with a user. This insight includes documents hosted on OneDrive/SharePoint in the user's Microsoft 365 tenant that are shared with the user, and documents that are attached as files and sent to the user. + * Calculated relationship identifying documents shared with or by the user. This includes URLs, file attachments, and reference attachments to OneDrive for Business and SharePoint files found in Outlook messages and meetings. This also includes URLs and reference attachments to Teams conversations. Ordered by recency of share. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SharedInsightCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SharedInsightCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public SharedInsight post(@jakarta.annotation.Nonnull final SharedInsight body, return this.requestAdapter.send(requestInfo, errorMapping, SharedInsight::createFromDiscriminatorValue); } /** - * Calculated insight that includes the list of documents shared with a user. This insight includes documents hosted on OneDrive/SharePoint in the user's Microsoft 365 tenant that are shared with the user, and documents that are attached as files and sent to the user. + * Calculated relationship identifying documents shared with or by the user. This includes URLs, file attachments, and reference attachments to OneDrive for Business and SharePoint files found in Outlook messages and meetings. This also includes URLs and reference attachments to Teams conversations. Ordered by recency of share. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Calculated insight that includes the list of documents shared with a user. This insight includes documents hosted on OneDrive/SharePoint in the user's Microsoft 365 tenant that are shared with the user, and documents that are attached as files and sent to the user. + * Calculated relationship identifying documents shared with or by the user. This includes URLs, file attachments, and reference attachments to OneDrive for Business and SharePoint files found in Outlook messages and meetings. This also includes URLs and reference attachments to Teams conversations. Ordered by recency of share. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public SharedRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw return new SharedRequestBuilder(rawUrl, requestAdapter); } /** - * Calculated insight that includes the list of documents shared with a user. This insight includes documents hosted on OneDrive/SharePoint in the user's Microsoft 365 tenant that are shared with the user, and documents that are attached as files and sent to the user. + * Calculated relationship identifying documents shared with or by the user. This includes URLs, file attachments, and reference attachments to OneDrive for Business and SharePoint files found in Outlook messages and meetings. This also includes URLs and reference attachments to Teams conversations. Ordered by recency of share. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/insights/trending/TrendingRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/insights/trending/TrendingRequestBuilder.java index d779ef8eea2..384836581c4 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/insights/trending/TrendingRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/insights/trending/TrendingRequestBuilder.java @@ -60,21 +60,19 @@ public TrendingRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/users/{user%2Did}/insights/trending{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Calculated insight that includes a list of documents trending around the user. + * Calculated relationship identifying documents trending around a user. Trending documents are calculated based on activity of the user's closest network of people and include files stored in OneDrive for Business and SharePoint. Trending insights help the user to discover potentially useful content that the user has access to, but has never viewed before. * @return a {@link TrendingCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TrendingCollectionResponse get() { return get(null); } /** - * Calculated insight that includes a list of documents trending around the user. + * Calculated relationship identifying documents trending around a user. Trending documents are calculated based on activity of the user's closest network of people and include files stored in OneDrive for Business and SharePoint. Trending insights help the user to discover potentially useful content that the user has access to, but has never viewed before. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TrendingCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TrendingCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Trending post(@jakarta.annotation.Nonnull final Trending body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, Trending::createFromDiscriminatorValue); } /** - * Calculated insight that includes a list of documents trending around the user. + * Calculated relationship identifying documents trending around a user. Trending documents are calculated based on activity of the user's closest network of people and include files stored in OneDrive for Business and SharePoint. Trending insights help the user to discover potentially useful content that the user has access to, but has never viewed before. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Calculated insight that includes a list of documents trending around the user. + * Calculated relationship identifying documents trending around a user. Trending documents are calculated based on activity of the user's closest network of people and include files stored in OneDrive for Business and SharePoint. Trending insights help the user to discover potentially useful content that the user has access to, but has never viewed before. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public TrendingRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new TrendingRequestBuilder(rawUrl, requestAdapter); } /** - * Calculated insight that includes a list of documents trending around the user. + * Calculated relationship identifying documents trending around a user. Trending documents are calculated based on activity of the user's closest network of people and include files stored in OneDrive for Business and SharePoint. Trending insights help the user to discover potentially useful content that the user has access to, but has never viewed before. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/insights/used/UsedRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/insights/used/UsedRequestBuilder.java index 99451dc52ea..de8a506d014 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/insights/used/UsedRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/insights/used/UsedRequestBuilder.java @@ -60,21 +60,19 @@ public UsedRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka super(requestAdapter, "{+baseurl}/users/{user%2Did}/insights/used{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Calculate and list the documents that a user has viewed or modified. For the signed-in user:- This method includes documents that the user has modified; see example 1. - Using an $orderby query parameter on the lastAccessedDateTime property returns the most recently viewed documents that the user might or might not not have modified; see example 2. For other users, this method includes only documents that the user has modified. + * Calculated relationship identifying the latest documents viewed or modified by a user, including OneDrive for Business and SharePoint documents, ranked by recency of use. * @return a {@link UsedInsightCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UsedInsightCollectionResponse get() { return get(null); } /** - * Calculate and list the documents that a user has viewed or modified. For the signed-in user:- This method includes documents that the user has modified; see example 1. - Using an $orderby query parameter on the lastAccessedDateTime property returns the most recently viewed documents that the user might or might not not have modified; see example 2. For other users, this method includes only documents that the user has modified. + * Calculated relationship identifying the latest documents viewed or modified by a user, including OneDrive for Business and SharePoint documents, ranked by recency of use. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UsedInsightCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UsedInsightCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public UsedInsight post(@jakarta.annotation.Nonnull final UsedInsight body, @jak return this.requestAdapter.send(requestInfo, errorMapping, UsedInsight::createFromDiscriminatorValue); } /** - * Calculate and list the documents that a user has viewed or modified. For the signed-in user:- This method includes documents that the user has modified; see example 1. - Using an $orderby query parameter on the lastAccessedDateTime property returns the most recently viewed documents that the user might or might not not have modified; see example 2. For other users, this method includes only documents that the user has modified. + * Calculated relationship identifying the latest documents viewed or modified by a user, including OneDrive for Business and SharePoint documents, ranked by recency of use. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Calculate and list the documents that a user has viewed or modified. For the signed-in user:- This method includes documents that the user has modified; see example 1. - Using an $orderby query parameter on the lastAccessedDateTime property returns the most recently viewed documents that the user might or might not not have modified; see example 2. For other users, this method includes only documents that the user has modified. + * Calculated relationship identifying the latest documents viewed or modified by a user, including OneDrive for Business and SharePoint documents, ranked by recency of use. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public UsedRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr return new UsedRequestBuilder(rawUrl, requestAdapter); } /** - * Calculate and list the documents that a user has viewed or modified. For the signed-in user:- This method includes documents that the user has modified; see example 1. - Using an $orderby query parameter on the lastAccessedDateTime property returns the most recently viewed documents that the user might or might not not have modified; see example 2. For other users, this method includes only documents that the user has modified. + * Calculated relationship identifying the latest documents viewed or modified by a user, including OneDrive for Business and SharePoint documents, ranked by recency of use. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/JoinedTeamsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/JoinedTeamsRequestBuilder.java index 193b46f6246..23faa5bf5df 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/JoinedTeamsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/JoinedTeamsRequestBuilder.java @@ -69,21 +69,19 @@ public JoinedTeamsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the teams in Microsoft Teams that the user is a direct member of. + * Get joinedTeams from users * @return a {@link TeamCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamCollectionResponse get() { return get(null); } /** - * Get the teams in Microsoft Teams that the user is a direct member of. + * Get joinedTeams from users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -118,7 +116,7 @@ public Team post(@jakarta.annotation.Nonnull final Team body, @jakarta.annotatio return this.requestAdapter.send(requestInfo, errorMapping, Team::createFromDiscriminatorValue); } /** - * Get the teams in Microsoft Teams that the user is a direct member of. + * Get joinedTeams from users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -126,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the teams in Microsoft Teams that the user is a direct member of. + * Get joinedTeams from users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -172,7 +170,7 @@ public JoinedTeamsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new JoinedTeamsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the teams in Microsoft Teams that the user is a direct member of. + * Get joinedTeams from users */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/allchannels/AllChannelsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/allchannels/AllChannelsRequestBuilder.java index 5f54426eb03..0c63933d07b 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/allchannels/AllChannelsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/allchannels/AllChannelsRequestBuilder.java @@ -59,21 +59,19 @@ public AllChannelsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/allChannels{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of channels either in this team or shared with this team (incoming channels). + * List of channels either hosted in or shared with the team (incoming channels). * @return a {@link ChannelCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChannelCollectionResponse get() { return get(null); } /** - * Get the list of channels either in this team or shared with this team (incoming channels). + * List of channels either hosted in or shared with the team (incoming channels). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChannelCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChannelCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public ChannelCollectionResponse get(@jakarta.annotation.Nullable final java.uti return this.requestAdapter.send(requestInfo, errorMapping, ChannelCollectionResponse::createFromDiscriminatorValue); } /** - * Get the list of channels either in this team or shared with this team (incoming channels). + * List of channels either hosted in or shared with the team (incoming channels). * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of channels either in this team or shared with this team (incoming channels). + * List of channels either hosted in or shared with the team (incoming channels). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public AllChannelsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AllChannelsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of channels either in this team or shared with this team (incoming channels). + * List of channels either hosted in or shared with the team (incoming channels). */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/ChannelsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/ChannelsRequestBuilder.java index 54369dd0398..617ebeec628 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/ChannelsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/ChannelsRequestBuilder.java @@ -69,21 +69,19 @@ public ChannelsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/channels{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of channels in this team. + * The collection of channels and messages associated with the team. * @return a {@link ChannelCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChannelCollectionResponse get() { return get(null); } /** - * Retrieve the list of channels in this team. + * The collection of channels and messages associated with the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChannelCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChannelCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public ChannelCollectionResponse get(@jakarta.annotation.Nullable final java.uti return this.requestAdapter.send(requestInfo, errorMapping, ChannelCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new channel in a team, as specified in the request body. When you create a channel, the maximum length of the channel's displayName is 50 characters. This is the name that appears to the user in Microsoft Teams. If you're creating a private channel, you can add a maximum of 200 members. + * Create new navigation property to channels for users * @param body The request body * @return a {@link Channel} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Channel post(@jakarta.annotation.Nonnull final Channel body) { return post(body, null); } /** - * Create a new channel in a team, as specified in the request body. When you create a channel, the maximum length of the channel's displayName is 50 characters. This is the name that appears to the user in Microsoft Teams. If you're creating a private channel, you can add a maximum of 200 members. + * Create new navigation property to channels for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Channel} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Channel post(@jakarta.annotation.Nonnull final Channel body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public Channel post(@jakarta.annotation.Nonnull final Channel body, @jakarta.ann return this.requestAdapter.send(requestInfo, errorMapping, Channel::createFromDiscriminatorValue); } /** - * Retrieve the list of channels in this team. + * The collection of channels and messages associated with the team. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of channels in this team. + * The collection of channels and messages associated with the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new channel in a team, as specified in the request body. When you create a channel, the maximum length of the channel's displayName is 50 characters. This is the name that appears to the user in Microsoft Teams. If you're creating a private channel, you can add a maximum of 200 members. + * Create new navigation property to channels for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new channel in a team, as specified in the request body. When you create a channel, the maximum length of the channel's displayName is 50 characters. This is the name that appears to the user in Microsoft Teams. If you're creating a private channel, you can add a maximum of 200 members. + * Create new navigation property to channels for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public ChannelsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new ChannelsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of channels in this team. + * The collection of channels and messages associated with the team. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/getallmessages/GetAllMessagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/getallmessages/GetAllMessagesRequestBuilder.java index 619febe91ee..842d2d48503 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/getallmessages/GetAllMessagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/getallmessages/GetAllMessagesRequestBuilder.java @@ -36,19 +36,21 @@ public GetAllMessagesRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/channels/getAllMessages(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top,model*}", rawUrl); } /** - * Invoke function getAllMessages + * Retrieve messages across all channels in a team, including text, audio, and video conversations. To learn more about how to use the Microsoft Teams export APIs to export content, see Export content with the Microsoft Teams export APIs. * @return a {@link GetAllMessagesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetAllMessagesGetResponse get() { return get(null); } /** - * Invoke function getAllMessages + * Retrieve messages across all channels in a team, including text, audio, and video conversations. To learn more about how to use the Microsoft Teams export APIs to export content, see Export content with the Microsoft Teams export APIs. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GetAllMessagesGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetAllMessagesGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public GetAllMessagesGetResponse get(@jakarta.annotation.Nullable final java.uti return this.requestAdapter.send(requestInfo, errorMapping, GetAllMessagesGetResponse::createFromDiscriminatorValue); } /** - * Invoke function getAllMessages + * Retrieve messages across all channels in a team, including text, audio, and video conversations. To learn more about how to use the Microsoft Teams export APIs to export content, see Export content with the Microsoft Teams export APIs. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getAllMessages + * Retrieve messages across all channels in a team, including text, audio, and video conversations. To learn more about how to use the Microsoft Teams export APIs to export content, see Export content with the Microsoft Teams export APIs. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public GetAllMessagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new GetAllMessagesRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function getAllMessages + * Retrieve messages across all channels in a team, including text, audio, and video conversations. To learn more about how to use the Microsoft Teams export APIs to export content, see Export content with the Microsoft Teams export APIs. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/ChannelItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/ChannelItemRequestBuilder.java index 6a81760870b..012241a18b3 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/ChannelItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/ChannelItemRequestBuilder.java @@ -118,18 +118,16 @@ public ChannelItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/channels/{channel%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete the channel. + * Delete navigation property channels for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete the channel. + * Delete navigation property channels for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -138,21 +136,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve channel information. + * The collection of channels and messages associated with the team. * @return a {@link Channel} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Channel get() { return get(null); } /** - * Retrieve the properties and relationships of a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve channel information. + * The collection of channels and messages associated with the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Channel} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Channel get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -162,23 +158,21 @@ public Channel get(@jakarta.annotation.Nullable final java.util.function.Consume return this.requestAdapter.send(requestInfo, errorMapping, Channel::createFromDiscriminatorValue); } /** - * Update the properties of the specified channel. + * Update the navigation property channels in users * @param body The request body * @return a {@link Channel} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Channel patch(@jakarta.annotation.Nonnull final Channel body) { return patch(body, null); } /** - * Update the properties of the specified channel. + * Update the navigation property channels in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Channel} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Channel patch(@jakarta.annotation.Nonnull final Channel body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -189,7 +183,7 @@ public Channel patch(@jakarta.annotation.Nonnull final Channel body, @jakarta.an return this.requestAdapter.send(requestInfo, errorMapping, Channel::createFromDiscriminatorValue); } /** - * Delete the channel. + * Delete navigation property channels for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -197,7 +191,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete the channel. + * Delete navigation property channels for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -209,7 +203,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve channel information. + * The collection of channels and messages associated with the team. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -217,7 +211,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve channel information. + * The collection of channels and messages associated with the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -229,7 +223,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of the specified channel. + * Update the navigation property channels in users * @param body The request body * @return a {@link RequestInformation} */ @@ -238,7 +232,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of the specified channel. + * Update the navigation property channels in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -269,7 +263,7 @@ public ChannelItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve channel information. + * The collection of channels and messages associated with the team. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/doesuserhaveaccessuseriduseridtenantidtenantiduserprincipalnameuserprincipalname/DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/doesuserhaveaccessuseriduseridtenantidtenantiduserprincipalnameuserprincipalname/DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameRequestBuilder.java index d723598db0c..9266784bf3f 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/doesuserhaveaccessuseriduseridtenantidtenantiduserprincipalnameuserprincipalname/DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/doesuserhaveaccessuseriduseridtenantidtenantiduserprincipalnameuserprincipalname/DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameRequestBuilder.java @@ -36,19 +36,21 @@ public DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrinci super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/channels/{channel%2Did}/doesUserHaveAccess(userId='@userId',tenantId='@tenantId',userPrincipalName='@userPrincipalName'){?tenantId*,userId*,userPrincipalName*}", rawUrl); } /** - * Invoke function doesUserHaveAccess + * Determine whether a user has access to a shared channel. * @return a {@link DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameGetResponse get() { return get(null); } /** - * Invoke function doesUserHaveAccess + * Determine whether a user has access to a shared channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrinci return this.requestAdapter.send(requestInfo, errorMapping, DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameGetResponse::createFromDiscriminatorValue); } /** - * Invoke function doesUserHaveAccess + * Determine whether a user has access to a shared channel. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function doesUserHaveAccess + * Determine whether a user has access to a shared channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrinci return new DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function doesUserHaveAccess + * Determine whether a user has access to a shared channel. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/filesfolder/FilesFolderRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/filesfolder/FilesFolderRequestBuilder.java index 819e349239c..399ec9356a8 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/filesfolder/FilesFolderRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/filesfolder/FilesFolderRequestBuilder.java @@ -46,21 +46,19 @@ public FilesFolderRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/channels/{channel%2Did}/filesFolder{?%24expand,%24select}", rawUrl); } /** - * Get the metadata for the location where the files of a channel are stored. + * Metadata for the location where the channel's files are stored. * @return a {@link DriveItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DriveItem get() { return get(null); } /** - * Get the metadata for the location where the files of a channel are stored. + * Metadata for the location where the channel's files are stored. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DriveItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DriveItem get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -70,7 +68,7 @@ public DriveItem get(@jakarta.annotation.Nullable final java.util.function.Consu return this.requestAdapter.send(requestInfo, errorMapping, DriveItem::createFromDiscriminatorValue); } /** - * Get the metadata for the location where the files of a channel are stored. + * Metadata for the location where the channel's files are stored. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -78,7 +76,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the metadata for the location where the files of a channel are stored. + * Metadata for the location where the channel's files are stored. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -100,7 +98,7 @@ public FilesFolderRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new FilesFolderRequestBuilder(rawUrl, requestAdapter); } /** - * Get the metadata for the location where the files of a channel are stored. + * Metadata for the location where the channel's files are stored. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/filesfolder/content/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/filesfolder/content/ContentRequestBuilder.java index cd78b08368d..33c8231c5d6 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/filesfolder/content/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/filesfolder/content/ContentRequestBuilder.java @@ -41,7 +41,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * The content stream, if the item represents a file. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -52,7 +51,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/members/MembersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/members/MembersRequestBuilder.java index 50aced9f728..97e572ad12d 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/members/MembersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/members/MembersRequestBuilder.java @@ -69,21 +69,19 @@ public MembersRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/channels/{channel%2Did}/members{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of conversationMembers from a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve the channel member list. + * A collection of membership records associated with the channel. * @return a {@link ConversationMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMemberCollectionResponse get() { return get(null); } /** - * Retrieve a list of conversationMembers from a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve the channel member list. + * A collection of membership records associated with the channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMemberCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public ConversationMemberCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, ConversationMemberCollectionResponse::createFromDiscriminatorValue); } /** - * Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Create new navigation property to members for users * @param body The request body * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember post(@jakarta.annotation.Nonnull final ConversationMember body) { return post(body, null); } /** - * Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Create new navigation property to members for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember post(@jakarta.annotation.Nonnull final ConversationMember body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public ConversationMember post(@jakarta.annotation.Nonnull final ConversationMem return this.requestAdapter.send(requestInfo, errorMapping, ConversationMember::createFromDiscriminatorValue); } /** - * Retrieve a list of conversationMembers from a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve the channel member list. + * A collection of membership records associated with the channel. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of conversationMembers from a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve the channel member list. + * A collection of membership records associated with the channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Create new navigation property to members for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Create new navigation property to members for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public MembersRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new MembersRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of conversationMembers from a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve the channel member list. + * A collection of membership records associated with the channel. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/members/item/ConversationMemberItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/members/item/ConversationMemberItemRequestBuilder.java index c8b26db842c..ebd3c6fa901 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/members/item/ConversationMemberItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/members/item/ConversationMemberItemRequestBuilder.java @@ -37,18 +37,16 @@ public ConversationMemberItemRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/channels/{channel%2Did}/members/{conversationMember%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Delete navigation property members for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Delete navigation property members for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get a conversationMember from a channel. + * A collection of membership records associated with the channel. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember get() { return get(null); } /** - * Get a conversationMember from a channel. + * A collection of membership records associated with the channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public ConversationMember get(@jakarta.annotation.Nullable final java.util.funct return this.requestAdapter.send(requestInfo, errorMapping, ConversationMember::createFromDiscriminatorValue); } /** - * Update the role of a conversationMember in a team or channel. + * Update the navigation property members in users * @param body The request body * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember patch(@jakarta.annotation.Nonnull final ConversationMember body) { return patch(body, null); } /** - * Update the role of a conversationMember in a team or channel. + * Update the navigation property members in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember patch(@jakarta.annotation.Nonnull final ConversationMember body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public ConversationMember patch(@jakarta.annotation.Nonnull final ConversationMe return this.requestAdapter.send(requestInfo, errorMapping, ConversationMember::createFromDiscriminatorValue); } /** - * Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Delete navigation property members for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Delete navigation property members for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get a conversationMember from a channel. + * A collection of membership records associated with the channel. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a conversationMember from a channel. + * A collection of membership records associated with the channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the role of a conversationMember in a team or channel. + * Update the navigation property members in users * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the role of a conversationMember in a team or channel. + * Update the navigation property members in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public ConversationMemberItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get a conversationMember from a channel. + * A collection of membership records associated with the channel. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/MessagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/MessagesRequestBuilder.java index a93724b9414..d0fa8ee419d 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/MessagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/MessagesRequestBuilder.java @@ -69,21 +69,19 @@ public MessagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/channels/{channel%2Did}/messages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of messages (without the replies) in a channel of a team. To get the replies for a message, call the list message replies or the get message reply API. This method supports federation. To list channel messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the channel. A navigation property. Nullable. * @return a {@link ChatMessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageCollectionResponse get() { return get(null); } /** - * Retrieve the list of messages (without the replies) in a channel of a team. To get the replies for a message, call the list message replies or the get message reply API. This method supports federation. To list channel messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the channel. A navigation property. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public ChatMessageCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, ChatMessageCollectionResponse::createFromDiscriminatorValue); } /** - * Send a new chatMessage in the specified channel or a chat. + * Create new navigation property to messages for users * @param body The request body * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body) { return post(body, null); } /** - * Send a new chatMessage in the specified channel or a chat. + * Create new navigation property to messages for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body, @jak return this.requestAdapter.send(requestInfo, errorMapping, ChatMessage::createFromDiscriminatorValue); } /** - * Retrieve the list of messages (without the replies) in a channel of a team. To get the replies for a message, call the list message replies or the get message reply API. This method supports federation. To list channel messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the channel. A navigation property. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of messages (without the replies) in a channel of a team. To get the replies for a message, call the list message replies or the get message reply API. This method supports federation. To list channel messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the channel. A navigation property. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Send a new chatMessage in the specified channel or a chat. + * Create new navigation property to messages for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Send a new chatMessage in the specified channel or a chat. + * Create new navigation property to messages for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public MessagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new MessagesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of messages (without the replies) in a channel of a team. To get the replies for a message, call the list message replies or the get message reply API. This method supports federation. To list channel messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the channel. A navigation property. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/delta/DeltaRequestBuilder.java index fbdd9daa049..75db137794b 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/channels/{channel%2Did}/messages/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/item/ChatMessageItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/item/ChatMessageItemRequestBuilder.java index fd475df75e0..4c4041946b9 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/item/ChatMessageItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/item/ChatMessageItemRequestBuilder.java @@ -109,21 +109,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the channel. A navigation property. Nullable. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage get() { return get(null); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the channel. A navigation property. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,23 +131,21 @@ public ChatMessage get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.send(requestInfo, errorMapping, ChatMessage::createFromDiscriminatorValue); } /** - * Update a chatMessage object. Except for the policyViolation property, all properties of a chatMessage can be updated in delegated permissions scenarios.Only the policyViolation property of a chatMessage can be updated in application permissions scenarios. The update only works for chats where members are Microsoft Teams users. If one of the participants is using Skype, the operation fails. This method doesn't support federation. Only the user in the tenant who sent the message can perform data loss prevention (DLP) updates on the specified chat message. + * Update the navigation property messages in users * @param body The request body * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage patch(@jakarta.annotation.Nonnull final ChatMessage body) { return patch(body, null); } /** - * Update a chatMessage object. Except for the policyViolation property, all properties of a chatMessage can be updated in delegated permissions scenarios.Only the policyViolation property of a chatMessage can be updated in application permissions scenarios. The update only works for chats where members are Microsoft Teams users. If one of the participants is using Skype, the operation fails. This method doesn't support federation. Only the user in the tenant who sent the message can perform data loss prevention (DLP) updates on the specified chat message. + * Update the navigation property messages in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage patch(@jakarta.annotation.Nonnull final ChatMessage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -180,7 +176,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the channel. A navigation property. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -188,7 +184,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the channel. A navigation property. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -200,7 +196,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update a chatMessage object. Except for the policyViolation property, all properties of a chatMessage can be updated in delegated permissions scenarios.Only the policyViolation property of a chatMessage can be updated in application permissions scenarios. The update only works for chats where members are Microsoft Teams users. If one of the participants is using Skype, the operation fails. This method doesn't support federation. Only the user in the tenant who sent the message can perform data loss prevention (DLP) updates on the specified chat message. + * Update the navigation property messages in users * @param body The request body * @return a {@link RequestInformation} */ @@ -209,7 +205,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update a chatMessage object. Except for the policyViolation property, all properties of a chatMessage can be updated in delegated permissions scenarios.Only the policyViolation property of a chatMessage can be updated in application permissions scenarios. The update only works for chats where members are Microsoft Teams users. If one of the participants is using Skype, the operation fails. This method doesn't support federation. Only the user in the tenant who sent the message can perform data loss prevention (DLP) updates on the specified chat message. + * Update the navigation property messages in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -240,7 +236,7 @@ public ChatMessageItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final S public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the channel. A navigation property. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/item/hostedcontents/HostedContentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/item/hostedcontents/HostedContentsRequestBuilder.java index d7f456fd4a6..6af0d16240c 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/item/hostedcontents/HostedContentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/item/hostedcontents/HostedContentsRequestBuilder.java @@ -60,21 +60,19 @@ public HostedContentsRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/channels/{channel%2Did}/messages/{chatMessage%2Did}/hostedContents{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link ChatMessageHostedContentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContentCollectionResponse get() { return get(null); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageHostedContentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ChatMessageHostedContent post(@jakarta.annotation.Nonnull final ChatMessa return this.requestAdapter.send(requestInfo, errorMapping, ChatMessageHostedContent::createFromDiscriminatorValue); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public HostedContentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new HostedContentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java index b0e57f757a9..a7e2866dff5 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link ChatMessageHostedContent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContent get() { return get(null); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageHostedContent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContent get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public ChatMessageHostedContentItemRequestBuilder withUrl(@jakarta.annotation.No public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/item/hostedcontents/item/value/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/item/hostedcontents/item/value/ContentRequestBuilder.java index bb2ce293205..4c0e393a65d 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/item/hostedcontents/item/value/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/item/hostedcontents/item/value/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * Get media content for the navigation property hostedContents from users * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/item/replies/RepliesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/item/replies/RepliesRequestBuilder.java index 5ac9e1d9b6a..e8a7c12c9e9 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/item/replies/RepliesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/item/replies/RepliesRequestBuilder.java @@ -69,21 +69,19 @@ public RepliesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/channels/{channel%2Did}/messages/{chatMessage%2Did}/replies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. * @return a {@link ChatMessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageCollectionResponse get() { return get(null); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public ChatMessageCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, ChatMessageCollectionResponse::createFromDiscriminatorValue); } /** - * Send a new reply to a chatMessage in a specified channel. + * Create new navigation property to replies for users * @param body The request body * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body) { return post(body, null); } /** - * Send a new reply to a chatMessage in a specified channel. + * Create new navigation property to replies for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body, @jak return this.requestAdapter.send(requestInfo, errorMapping, ChatMessage::createFromDiscriminatorValue); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Send a new reply to a chatMessage in a specified channel. + * Create new navigation property to replies for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Send a new reply to a chatMessage in a specified channel. + * Create new navigation property to replies for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public RepliesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new RepliesRequestBuilder(rawUrl, requestAdapter); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/item/replies/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/item/replies/delta/DeltaRequestBuilder.java index 7ec2fff54b3..fb846134fb0 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/item/replies/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/item/replies/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/channels/{channel%2Did}/messages/{chatMessage%2Did}/replies/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/item/replies/item/ChatMessageItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/item/replies/item/ChatMessageItemRequestBuilder.java index bf9edec9a4d..4e22d44fa08 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/item/replies/item/ChatMessageItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/item/replies/item/ChatMessageItemRequestBuilder.java @@ -100,21 +100,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage get() { return get(null); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -169,7 +167,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -177,7 +175,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -229,7 +227,7 @@ public ChatMessageItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final S public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/item/replies/item/hostedcontents/HostedContentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/item/replies/item/hostedcontents/HostedContentsRequestBuilder.java index c91b1db0360..b075e7885f9 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/item/replies/item/hostedcontents/HostedContentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/item/replies/item/hostedcontents/HostedContentsRequestBuilder.java @@ -60,21 +60,19 @@ public HostedContentsRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/channels/{channel%2Did}/messages/{chatMessage%2Did}/replies/{chatMessage%2Did1}/hostedContents{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link ChatMessageHostedContentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContentCollectionResponse get() { return get(null); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageHostedContentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ChatMessageHostedContent post(@jakarta.annotation.Nonnull final ChatMessa return this.requestAdapter.send(requestInfo, errorMapping, ChatMessageHostedContent::createFromDiscriminatorValue); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public HostedContentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new HostedContentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/item/replies/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/item/replies/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java index cc1a6fbd384..a2dde94af75 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/item/replies/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/item/replies/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link ChatMessageHostedContent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContent get() { return get(null); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageHostedContent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContent get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public ChatMessageHostedContentItemRequestBuilder withUrl(@jakarta.annotation.No public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/item/replies/item/hostedcontents/item/value/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/item/replies/item/hostedcontents/item/value/ContentRequestBuilder.java index dc9f437f740..359eaec1659 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/item/replies/item/hostedcontents/item/value/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/messages/item/replies/item/hostedcontents/item/value/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * Get media content for the navigation property hostedContents from users * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/sharedwithteams/SharedWithTeamsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/sharedwithteams/SharedWithTeamsRequestBuilder.java index 541275610eb..7511b4c68d2 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/sharedwithteams/SharedWithTeamsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/sharedwithteams/SharedWithTeamsRequestBuilder.java @@ -60,21 +60,19 @@ public SharedWithTeamsRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/channels/{channel%2Did}/sharedWithTeams{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of teams that has been shared a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @return a {@link SharedWithChannelTeamInfoCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SharedWithChannelTeamInfoCollectionResponse get() { return get(null); } /** - * Get the list of teams that has been shared a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SharedWithChannelTeamInfoCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SharedWithChannelTeamInfoCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public SharedWithChannelTeamInfo post(@jakarta.annotation.Nonnull final SharedWi return this.requestAdapter.send(requestInfo, errorMapping, SharedWithChannelTeamInfo::createFromDiscriminatorValue); } /** - * Get the list of teams that has been shared a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of teams that has been shared a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public SharedWithTeamsRequestBuilder withUrl(@jakarta.annotation.Nonnull final S return new SharedWithTeamsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of teams that has been shared a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/sharedwithteams/item/SharedWithChannelTeamInfoItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/sharedwithteams/item/SharedWithChannelTeamInfoItemRequestBuilder.java index 7624341011e..4863875bf16 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/sharedwithteams/item/SharedWithChannelTeamInfoItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/sharedwithteams/item/SharedWithChannelTeamInfoItemRequestBuilder.java @@ -55,18 +55,16 @@ public SharedWithChannelTeamInfoItemRequestBuilder(@jakarta.annotation.Nonnull f super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/channels/{channel%2Did}/sharedWithTeams/{sharedWithChannelTeamInfo%2Did}{?%24expand,%24select}", rawUrl); } /** - * Unshare a channel with a team by deleting the corresponding sharedWithChannelTeamInfo resource. This operation is allowed only for channels with a membershipType value of shared. + * Delete navigation property sharedWithTeams for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Unshare a channel with a team by deleting the corresponding sharedWithChannelTeamInfo resource. This operation is allowed only for channels with a membershipType value of shared. + * Delete navigation property sharedWithTeams for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -75,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get a team that has been shared with a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @return a {@link SharedWithChannelTeamInfo} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SharedWithChannelTeamInfo get() { return get(null); } /** - * Get a team that has been shared with a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SharedWithChannelTeamInfo} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SharedWithChannelTeamInfo get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +120,7 @@ public SharedWithChannelTeamInfo patch(@jakarta.annotation.Nonnull final SharedW return this.requestAdapter.send(requestInfo, errorMapping, SharedWithChannelTeamInfo::createFromDiscriminatorValue); } /** - * Unshare a channel with a team by deleting the corresponding sharedWithChannelTeamInfo resource. This operation is allowed only for channels with a membershipType value of shared. + * Delete navigation property sharedWithTeams for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +128,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Unshare a channel with a team by deleting the corresponding sharedWithChannelTeamInfo resource. This operation is allowed only for channels with a membershipType value of shared. + * Delete navigation property sharedWithTeams for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -144,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get a team that has been shared with a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -152,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a team that has been shared with a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -204,7 +200,7 @@ public SharedWithChannelTeamInfoItemRequestBuilder withUrl(@jakarta.annotation.N public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get a team that has been shared with a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/sharedwithteams/item/allowedmembers/AllowedMembersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/sharedwithteams/item/allowedmembers/AllowedMembersRequestBuilder.java index 9859521c3e5..afaceb63950 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/sharedwithteams/item/allowedmembers/AllowedMembersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/sharedwithteams/item/allowedmembers/AllowedMembersRequestBuilder.java @@ -59,21 +59,19 @@ public AllowedMembersRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/channels/{channel%2Did}/sharedWithTeams/{sharedWithChannelTeamInfo%2Did}/allowedMembers{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of conversationMembers who can access a shared channel. This method does not return the following conversationMembers from the team:- Users with Guest role- Users who are externally authenticated in the tenant + * A collection of team members who have access to the shared channel. * @return a {@link ConversationMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMemberCollectionResponse get() { return get(null); } /** - * Get the list of conversationMembers who can access a shared channel. This method does not return the following conversationMembers from the team:- Users with Guest role- Users who are externally authenticated in the tenant + * A collection of team members who have access to the shared channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMemberCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public ConversationMemberCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, ConversationMemberCollectionResponse::createFromDiscriminatorValue); } /** - * Get the list of conversationMembers who can access a shared channel. This method does not return the following conversationMembers from the team:- Users with Guest role- Users who are externally authenticated in the tenant + * A collection of team members who have access to the shared channel. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of conversationMembers who can access a shared channel. This method does not return the following conversationMembers from the team:- Users with Guest role- Users who are externally authenticated in the tenant + * A collection of team members who have access to the shared channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public AllowedMembersRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new AllowedMembersRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of conversationMembers who can access a shared channel. This method does not return the following conversationMembers from the team:- Users with Guest role- Users who are externally authenticated in the tenant + * A collection of team members who have access to the shared channel. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/tabs/TabsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/tabs/TabsRequestBuilder.java index 88557980edc..f004fad2e81 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/tabs/TabsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/tabs/TabsRequestBuilder.java @@ -60,21 +60,19 @@ public TabsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/channels/{channel%2Did}/tabs{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of tabs in the specified channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @return a {@link TeamsTabCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTabCollectionResponse get() { return get(null); } /** - * Retrieve the list of tabs in the specified channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsTabCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTabCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TeamsTabCollectionResponse get(@jakarta.annotation.Nullable final java.ut return this.requestAdapter.send(requestInfo, errorMapping, TeamsTabCollectionResponse::createFromDiscriminatorValue); } /** - * Add (pin) a tab to the specified channel within a team. The app must be preinstalled in the team and have the configurableTabs property defined in the app manifest. + * Create new navigation property to tabs for users * @param body The request body * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab post(@jakarta.annotation.Nonnull final TeamsTab body) { return post(body, null); } /** - * Add (pin) a tab to the specified channel within a team. The app must be preinstalled in the team and have the configurableTabs property defined in the app manifest. + * Create new navigation property to tabs for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab post(@jakarta.annotation.Nonnull final TeamsTab body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public TeamsTab post(@jakarta.annotation.Nonnull final TeamsTab body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, TeamsTab::createFromDiscriminatorValue); } /** - * Retrieve the list of tabs in the specified channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of tabs in the specified channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add (pin) a tab to the specified channel within a team. The app must be preinstalled in the team and have the configurableTabs property defined in the app manifest. + * Create new navigation property to tabs for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add (pin) a tab to the specified channel within a team. The app must be preinstalled in the team and have the configurableTabs property defined in the app manifest. + * Create new navigation property to tabs for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public TabsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr return new TabsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of tabs in the specified channel within a team. + * A collection of all the tabs in the channel. A navigation property. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/tabs/item/TeamsTabItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/tabs/item/TeamsTabItemRequestBuilder.java index ad7ea04860e..25e36a2323a 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/tabs/item/TeamsTabItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/channels/item/tabs/item/TeamsTabItemRequestBuilder.java @@ -46,18 +46,16 @@ public TeamsTabItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/channels/{channel%2Did}/tabs/{teamsTab%2Did}{?%24expand,%24select}", rawUrl); } /** - * Removes (unpins) a tab from the specified channel within a team. + * Delete navigation property tabs for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Removes (unpins) a tab from the specified channel within a team. + * Delete navigation property tabs for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of the specified tab in a channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab get() { return get(null); } /** - * Retrieve the properties and relationships of the specified tab in a channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public TeamsTab get(@jakarta.annotation.Nullable final java.util.function.Consum return this.requestAdapter.send(requestInfo, errorMapping, TeamsTab::createFromDiscriminatorValue); } /** - * Update the properties of the specified tab.This API can be used to configure the content of the tab. + * Update the navigation property tabs in users * @param body The request body * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab patch(@jakarta.annotation.Nonnull final TeamsTab body) { return patch(body, null); } /** - * Update the properties of the specified tab.This API can be used to configure the content of the tab. + * Update the navigation property tabs in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab patch(@jakarta.annotation.Nonnull final TeamsTab body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public TeamsTab patch(@jakarta.annotation.Nonnull final TeamsTab body, @jakarta. return this.requestAdapter.send(requestInfo, errorMapping, TeamsTab::createFromDiscriminatorValue); } /** - * Removes (unpins) a tab from the specified channel within a team. + * Delete navigation property tabs for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Removes (unpins) a tab from the specified channel within a team. + * Delete navigation property tabs for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of the specified tab in a channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of the specified tab in a channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of the specified tab.This API can be used to configure the content of the tab. + * Update the navigation property tabs in users * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of the specified tab.This API can be used to configure the content of the tab. + * Update the navigation property tabs in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public TeamsTabItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of the specified tab in a channel within a team. + * A collection of all the tabs in the channel. A navigation property. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/clone/CloneRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/clone/CloneRequestBuilder.java index b1c49ed60b1..e71afdbec9d 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/clone/CloneRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/clone/CloneRequestBuilder.java @@ -35,7 +35,7 @@ public CloneRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/clone", rawUrl); } /** - * Create a copy of a team. This operation also creates a copy of the corresponding group.You can specify which parts of the team to clone: When tabs are cloned, they aren't configured. The tabs are displayed on the tab bar in Microsoft Teams, and the first time a user opens them, they must go through the configuration screen. If the user who opens the tab doesn't have permission to configure apps, they'll see a message that says that the tab isn't configured. Cloning is a long-running operation. After the POST clone returns, you need to GET the operation returned by the Location: header to see if it's running, succeeded, or failed. You should continue to GET until the status isn't running. The recommended delay between GETs is 5 seconds. + * Create a copy of a team. This operation also creates a copy of the corresponding group.You can specify which parts of the team to clone: When tabs are cloned, they aren't configured. The tabs are displayed on the tab bar in Microsoft Teams, and the first time a user opens them, they must go through the configuration screen. If the user who opens the tab doesn't have permission to configure apps, they see a message that says that the tab isn't configured. Cloning is a long-running operation. After the POST clone returns, you need to GET the operation returned by the Location: header to see if it's running, succeeded, or failed. You should continue to GET until the status isn't running. The recommended delay between GETs is 5 seconds. * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code * @see Find more info here @@ -44,7 +44,7 @@ public void post(@jakarta.annotation.Nonnull final ClonePostRequestBody body) { post(body, null); } /** - * Create a copy of a team. This operation also creates a copy of the corresponding group.You can specify which parts of the team to clone: When tabs are cloned, they aren't configured. The tabs are displayed on the tab bar in Microsoft Teams, and the first time a user opens them, they must go through the configuration screen. If the user who opens the tab doesn't have permission to configure apps, they'll see a message that says that the tab isn't configured. Cloning is a long-running operation. After the POST clone returns, you need to GET the operation returned by the Location: header to see if it's running, succeeded, or failed. You should continue to GET until the status isn't running. The recommended delay between GETs is 5 seconds. + * Create a copy of a team. This operation also creates a copy of the corresponding group.You can specify which parts of the team to clone: When tabs are cloned, they aren't configured. The tabs are displayed on the tab bar in Microsoft Teams, and the first time a user opens them, they must go through the configuration screen. If the user who opens the tab doesn't have permission to configure apps, they see a message that says that the tab isn't configured. Cloning is a long-running operation. After the POST clone returns, you need to GET the operation returned by the Location: header to see if it's running, succeeded, or failed. You should continue to GET until the status isn't running. The recommended delay between GETs is 5 seconds. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code @@ -58,7 +58,7 @@ public void post(@jakarta.annotation.Nonnull final ClonePostRequestBody body, @j this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Create a copy of a team. This operation also creates a copy of the corresponding group.You can specify which parts of the team to clone: When tabs are cloned, they aren't configured. The tabs are displayed on the tab bar in Microsoft Teams, and the first time a user opens them, they must go through the configuration screen. If the user who opens the tab doesn't have permission to configure apps, they'll see a message that says that the tab isn't configured. Cloning is a long-running operation. After the POST clone returns, you need to GET the operation returned by the Location: header to see if it's running, succeeded, or failed. You should continue to GET until the status isn't running. The recommended delay between GETs is 5 seconds. + * Create a copy of a team. This operation also creates a copy of the corresponding group.You can specify which parts of the team to clone: When tabs are cloned, they aren't configured. The tabs are displayed on the tab bar in Microsoft Teams, and the first time a user opens them, they must go through the configuration screen. If the user who opens the tab doesn't have permission to configure apps, they see a message that says that the tab isn't configured. Cloning is a long-running operation. After the POST clone returns, you need to GET the operation returned by the Location: header to see if it's running, succeeded, or failed. You should continue to GET until the status isn't running. The recommended delay between GETs is 5 seconds. * @param body The request body * @return a {@link RequestInformation} */ @@ -67,7 +67,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a copy of a team. This operation also creates a copy of the corresponding group.You can specify which parts of the team to clone: When tabs are cloned, they aren't configured. The tabs are displayed on the tab bar in Microsoft Teams, and the first time a user opens them, they must go through the configuration screen. If the user who opens the tab doesn't have permission to configure apps, they'll see a message that says that the tab isn't configured. Cloning is a long-running operation. After the POST clone returns, you need to GET the operation returned by the Location: header to see if it's running, succeeded, or failed. You should continue to GET until the status isn't running. The recommended delay between GETs is 5 seconds. + * Create a copy of a team. This operation also creates a copy of the corresponding group.You can specify which parts of the team to clone: When tabs are cloned, they aren't configured. The tabs are displayed on the tab bar in Microsoft Teams, and the first time a user opens them, they must go through the configuration screen. If the user who opens the tab doesn't have permission to configure apps, they see a message that says that the tab isn't configured. Cloning is a long-running operation. After the POST clone returns, you need to GET the operation returned by the Location: header to see if it's running, succeeded, or failed. You should continue to GET until the status isn't running. The recommended delay between GETs is 5 seconds. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/incomingchannels/IncomingChannelsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/incomingchannels/IncomingChannelsRequestBuilder.java index 2ba58ec5bcd..12770c9f321 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/incomingchannels/IncomingChannelsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/incomingchannels/IncomingChannelsRequestBuilder.java @@ -59,21 +59,19 @@ public IncomingChannelsRequestBuilder(@jakarta.annotation.Nonnull final String r super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/incomingChannels{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of incoming channels (channels shared with a team). + * List of channels shared with the team. * @return a {@link ChannelCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChannelCollectionResponse get() { return get(null); } /** - * Get the list of incoming channels (channels shared with a team). + * List of channels shared with the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChannelCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChannelCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public ChannelCollectionResponse get(@jakarta.annotation.Nullable final java.uti return this.requestAdapter.send(requestInfo, errorMapping, ChannelCollectionResponse::createFromDiscriminatorValue); } /** - * Get the list of incoming channels (channels shared with a team). + * List of channels shared with the team. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of incoming channels (channels shared with a team). + * List of channels shared with the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public IncomingChannelsRequestBuilder withUrl(@jakarta.annotation.Nonnull final return new IncomingChannelsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of incoming channels (channels shared with a team). + * List of channels shared with the team. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/installedapps/InstalledAppsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/installedapps/InstalledAppsRequestBuilder.java index 32dbcff3621..fd92679818f 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/installedapps/InstalledAppsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/installedapps/InstalledAppsRequestBuilder.java @@ -60,21 +60,19 @@ public InstalledAppsRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/installedApps{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of apps installed in the specified team. + * The apps installed in this team. * @return a {@link TeamsAppInstallationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsAppInstallationCollectionResponse get() { return get(null); } /** - * Retrieve a list of apps installed in the specified team. + * The apps installed in this team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsAppInstallationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsAppInstallationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TeamsAppInstallationCollectionResponse get(@jakarta.annotation.Nullable f return this.requestAdapter.send(requestInfo, errorMapping, TeamsAppInstallationCollectionResponse::createFromDiscriminatorValue); } /** - * Install an app to the specified team. + * Create new navigation property to installedApps for users * @param body The request body * @return a {@link TeamsAppInstallation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsAppInstallation post(@jakarta.annotation.Nonnull final TeamsAppInstallation body) { return post(body, null); } /** - * Install an app to the specified team. + * Create new navigation property to installedApps for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsAppInstallation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsAppInstallation post(@jakarta.annotation.Nonnull final TeamsAppInstallation body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public TeamsAppInstallation post(@jakarta.annotation.Nonnull final TeamsAppInsta return this.requestAdapter.send(requestInfo, errorMapping, TeamsAppInstallation::createFromDiscriminatorValue); } /** - * Retrieve a list of apps installed in the specified team. + * The apps installed in this team. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of apps installed in the specified team. + * The apps installed in this team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Install an app to the specified team. + * Create new navigation property to installedApps for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Install an app to the specified team. + * Create new navigation property to installedApps for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public InstalledAppsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new InstalledAppsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of apps installed in the specified team. + * The apps installed in this team. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/installedapps/item/TeamsAppInstallationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/installedapps/item/TeamsAppInstallationItemRequestBuilder.java index 1302e043292..21b4d2d2f5f 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/installedapps/item/TeamsAppInstallationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/installedapps/item/TeamsAppInstallationItemRequestBuilder.java @@ -64,18 +64,16 @@ public TeamsAppInstallationItemRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/installedApps/{teamsAppInstallation%2Did}{?%24expand,%24select}", rawUrl); } /** - * Uninstalls an app from the specified team. + * Delete navigation property installedApps for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Uninstalls an app from the specified team. + * Delete navigation property installedApps for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -84,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the app installed in the specified team. + * The apps installed in this team. * @return a {@link TeamsAppInstallation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsAppInstallation get() { return get(null); } /** - * Retrieve the app installed in the specified team. + * The apps installed in this team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsAppInstallation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsAppInstallation get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +129,7 @@ public TeamsAppInstallation patch(@jakarta.annotation.Nonnull final TeamsAppInst return this.requestAdapter.send(requestInfo, errorMapping, TeamsAppInstallation::createFromDiscriminatorValue); } /** - * Uninstalls an app from the specified team. + * Delete navigation property installedApps for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +137,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Uninstalls an app from the specified team. + * Delete navigation property installedApps for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -153,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the app installed in the specified team. + * The apps installed in this team. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -161,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the app installed in the specified team. + * The apps installed in this team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -213,7 +209,7 @@ public TeamsAppInstallationItemRequestBuilder withUrl(@jakarta.annotation.Nonnul public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the app installed in the specified team. + * The apps installed in this team. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/members/MembersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/members/MembersRequestBuilder.java index 24a3d4f9d1f..e09eaad8aff 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/members/MembersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/members/MembersRequestBuilder.java @@ -69,21 +69,19 @@ public MembersRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/members{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the conversationMember collection of a team. The membership IDs returned by the server must be treated as opaque strings. The client should not try to parse or make assumptions about these resource IDs. In the future, membership results may include users from various tenants, as indicated in the response. Clients should avoid assuming that all members exclusively belong to the current tenant. + * Members and owners of the team. * @return a {@link ConversationMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMemberCollectionResponse get() { return get(null); } /** - * Get the conversationMember collection of a team. The membership IDs returned by the server must be treated as opaque strings. The client should not try to parse or make assumptions about these resource IDs. In the future, membership results may include users from various tenants, as indicated in the response. Clients should avoid assuming that all members exclusively belong to the current tenant. + * Members and owners of the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMemberCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public ConversationMemberCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, ConversationMemberCollectionResponse::createFromDiscriminatorValue); } /** - * Add a new conversationMember to a team. + * Create new navigation property to members for users * @param body The request body * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember post(@jakarta.annotation.Nonnull final ConversationMember body) { return post(body, null); } /** - * Add a new conversationMember to a team. + * Create new navigation property to members for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember post(@jakarta.annotation.Nonnull final ConversationMember body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public ConversationMember post(@jakarta.annotation.Nonnull final ConversationMem return this.requestAdapter.send(requestInfo, errorMapping, ConversationMember::createFromDiscriminatorValue); } /** - * Get the conversationMember collection of a team. The membership IDs returned by the server must be treated as opaque strings. The client should not try to parse or make assumptions about these resource IDs. In the future, membership results may include users from various tenants, as indicated in the response. Clients should avoid assuming that all members exclusively belong to the current tenant. + * Members and owners of the team. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the conversationMember collection of a team. The membership IDs returned by the server must be treated as opaque strings. The client should not try to parse or make assumptions about these resource IDs. In the future, membership results may include users from various tenants, as indicated in the response. Clients should avoid assuming that all members exclusively belong to the current tenant. + * Members and owners of the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add a new conversationMember to a team. + * Create new navigation property to members for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add a new conversationMember to a team. + * Create new navigation property to members for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public MembersRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new MembersRequestBuilder(rawUrl, requestAdapter); } /** - * Get the conversationMember collection of a team. The membership IDs returned by the server must be treated as opaque strings. The client should not try to parse or make assumptions about these resource IDs. In the future, membership results may include users from various tenants, as indicated in the response. Clients should avoid assuming that all members exclusively belong to the current tenant. + * Members and owners of the team. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/members/item/ConversationMemberItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/members/item/ConversationMemberItemRequestBuilder.java index 59870d0a4c6..c05523535d3 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/members/item/ConversationMemberItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/members/item/ConversationMemberItemRequestBuilder.java @@ -37,18 +37,16 @@ public ConversationMemberItemRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/members/{conversationMember%2Did}{?%24expand,%24select}", rawUrl); } /** - * Remove a conversationMember from a team. + * Delete navigation property members for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove a conversationMember from a team. + * Delete navigation property members for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get a conversationMember from a team. + * Members and owners of the team. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember get() { return get(null); } /** - * Get a conversationMember from a team. + * Members and owners of the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public ConversationMember get(@jakarta.annotation.Nullable final java.util.funct return this.requestAdapter.send(requestInfo, errorMapping, ConversationMember::createFromDiscriminatorValue); } /** - * Update the role of a conversationMember in a team. + * Update the navigation property members in users * @param body The request body * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember patch(@jakarta.annotation.Nonnull final ConversationMember body) { return patch(body, null); } /** - * Update the role of a conversationMember in a team. + * Update the navigation property members in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember patch(@jakarta.annotation.Nonnull final ConversationMember body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public ConversationMember patch(@jakarta.annotation.Nonnull final ConversationMe return this.requestAdapter.send(requestInfo, errorMapping, ConversationMember::createFromDiscriminatorValue); } /** - * Remove a conversationMember from a team. + * Delete navigation property members for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove a conversationMember from a team. + * Delete navigation property members for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get a conversationMember from a team. + * Members and owners of the team. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a conversationMember from a team. + * Members and owners of the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the role of a conversationMember in a team. + * Update the navigation property members in users * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the role of a conversationMember in a team. + * Update the navigation property members in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public ConversationMemberItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get a conversationMember from a team. + * Members and owners of the team. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/permissiongrants/PermissionGrantsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/permissiongrants/PermissionGrantsRequestBuilder.java index a0d22a94d58..0c3c0687ba0 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/permissiongrants/PermissionGrantsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/permissiongrants/PermissionGrantsRequestBuilder.java @@ -60,21 +60,19 @@ public PermissionGrantsRequestBuilder(@jakarta.annotation.Nonnull final String r super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/permissionGrants{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List all resource-specific permission grants on the team. This list specifies the Microsoft Entra apps that have access to the team, along with each app's corresponding type of resource-specific access. + * A collection of permissions granted to apps to access the team. * @return a {@link ResourceSpecificPermissionGrantCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ResourceSpecificPermissionGrantCollectionResponse get() { return get(null); } /** - * List all resource-specific permission grants on the team. This list specifies the Microsoft Entra apps that have access to the team, along with each app's corresponding type of resource-specific access. + * A collection of permissions granted to apps to access the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ResourceSpecificPermissionGrantCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ResourceSpecificPermissionGrantCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ResourceSpecificPermissionGrant post(@jakarta.annotation.Nonnull final Re return this.requestAdapter.send(requestInfo, errorMapping, ResourceSpecificPermissionGrant::createFromDiscriminatorValue); } /** - * List all resource-specific permission grants on the team. This list specifies the Microsoft Entra apps that have access to the team, along with each app's corresponding type of resource-specific access. + * A collection of permissions granted to apps to access the team. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List all resource-specific permission grants on the team. This list specifies the Microsoft Entra apps that have access to the team, along with each app's corresponding type of resource-specific access. + * A collection of permissions granted to apps to access the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public PermissionGrantsRequestBuilder withUrl(@jakarta.annotation.Nonnull final return new PermissionGrantsRequestBuilder(rawUrl, requestAdapter); } /** - * List all resource-specific permission grants on the team. This list specifies the Microsoft Entra apps that have access to the team, along with each app's corresponding type of resource-specific access. + * A collection of permissions granted to apps to access the team. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/photo/PhotoRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/photo/PhotoRequestBuilder.java index 85fa269d5cc..2ee63c80d54 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/photo/PhotoRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/photo/PhotoRequestBuilder.java @@ -46,21 +46,19 @@ public PhotoRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/photo{?%24expand,%24select}", rawUrl); } /** - * Get the specified profilePhoto or its metadata (profilePhoto properties). The supported sizes of HD photos on Microsoft 365 are as follows: 48x48, 64x64, 96x96, 120x120, 240x240,360x360, 432x432, 504x504, and 648x648. Photos can be any dimension if they're stored in Microsoft Entra ID. You can get the metadata of the largest available photo or specify a size to get the metadata for that photo size.If the size you request is unavailable, you can still get a smaller size that the user has uploaded and made available.For example, if the user uploads a photo that is 504x504 pixels, all but the 648x648 size of the photo is available for download. + * The profile photo for the team. * @return a {@link ProfilePhoto} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ProfilePhoto get() { return get(null); } /** - * Get the specified profilePhoto or its metadata (profilePhoto properties). The supported sizes of HD photos on Microsoft 365 are as follows: 48x48, 64x64, 96x96, 120x120, 240x240,360x360, 432x432, 504x504, and 648x648. Photos can be any dimension if they're stored in Microsoft Entra ID. You can get the metadata of the largest available photo or specify a size to get the metadata for that photo size.If the size you request is unavailable, you can still get a smaller size that the user has uploaded and made available.For example, if the user uploads a photo that is 504x504 pixels, all but the 648x648 size of the photo is available for download. + * The profile photo for the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ProfilePhoto} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ProfilePhoto get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -95,7 +93,7 @@ public ProfilePhoto patch(@jakarta.annotation.Nonnull final ProfilePhoto body, @ return this.requestAdapter.send(requestInfo, errorMapping, ProfilePhoto::createFromDiscriminatorValue); } /** - * Get the specified profilePhoto or its metadata (profilePhoto properties). The supported sizes of HD photos on Microsoft 365 are as follows: 48x48, 64x64, 96x96, 120x120, 240x240,360x360, 432x432, 504x504, and 648x648. Photos can be any dimension if they're stored in Microsoft Entra ID. You can get the metadata of the largest available photo or specify a size to get the metadata for that photo size.If the size you request is unavailable, you can still get a smaller size that the user has uploaded and made available.For example, if the user uploads a photo that is 504x504 pixels, all but the 648x648 size of the photo is available for download. + * The profile photo for the team. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -103,7 +101,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the specified profilePhoto or its metadata (profilePhoto properties). The supported sizes of HD photos on Microsoft 365 are as follows: 48x48, 64x64, 96x96, 120x120, 240x240,360x360, 432x432, 504x504, and 648x648. Photos can be any dimension if they're stored in Microsoft Entra ID. You can get the metadata of the largest available photo or specify a size to get the metadata for that photo size.If the size you request is unavailable, you can still get a smaller size that the user has uploaded and made available.For example, if the user uploads a photo that is 504x504 pixels, all but the 648x648 size of the photo is available for download. + * The profile photo for the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -149,7 +147,7 @@ public PhotoRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new PhotoRequestBuilder(rawUrl, requestAdapter); } /** - * Get the specified profilePhoto or its metadata (profilePhoto properties). The supported sizes of HD photos on Microsoft 365 are as follows: 48x48, 64x64, 96x96, 120x120, 240x240,360x360, 432x432, 504x504, and 648x648. Photos can be any dimension if they're stored in Microsoft Entra ID. You can get the metadata of the largest available photo or specify a size to get the metadata for that photo size.If the size you request is unavailable, you can still get a smaller size that the user has uploaded and made available.For example, if the user uploads a photo that is 504x504 pixels, all but the 648x648 size of the photo is available for download. + * The profile photo for the team. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/photo/value/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/photo/value/ContentRequestBuilder.java index 1c83a4b3d24..571aada8629 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/photo/value/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/photo/value/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * Get media content for the navigation property photo from users * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/PrimaryChannelRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/PrimaryChannelRequestBuilder.java index 6339a4f1b8e..5a0ea228bdb 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/PrimaryChannelRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/PrimaryChannelRequestBuilder.java @@ -136,21 +136,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the default channel, General, of a team. + * The general channel for the team. * @return a {@link Channel} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Channel get() { return get(null); } /** - * Get the default channel, General, of a team. + * The general channel for the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Channel} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Channel get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -205,7 +203,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the default channel, General, of a team. + * The general channel for the team. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -213,7 +211,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the default channel, General, of a team. + * The general channel for the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -265,7 +263,7 @@ public PrimaryChannelRequestBuilder withUrl(@jakarta.annotation.Nonnull final St public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the default channel, General, of a team. + * The general channel for the team. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/doesuserhaveaccessuseriduseridtenantidtenantiduserprincipalnameuserprincipalname/DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/doesuserhaveaccessuseriduseridtenantidtenantiduserprincipalnameuserprincipalname/DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameRequestBuilder.java index bbea427546a..f8c57462301 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/doesuserhaveaccessuseriduseridtenantidtenantiduserprincipalnameuserprincipalname/DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/doesuserhaveaccessuseriduseridtenantidtenantiduserprincipalnameuserprincipalname/DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameRequestBuilder.java @@ -36,19 +36,21 @@ public DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrinci super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/primaryChannel/doesUserHaveAccess(userId='@userId',tenantId='@tenantId',userPrincipalName='@userPrincipalName'){?tenantId*,userId*,userPrincipalName*}", rawUrl); } /** - * Invoke function doesUserHaveAccess + * Determine whether a user has access to a shared channel. * @return a {@link DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameGetResponse get() { return get(null); } /** - * Invoke function doesUserHaveAccess + * Determine whether a user has access to a shared channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrinci return this.requestAdapter.send(requestInfo, errorMapping, DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameGetResponse::createFromDiscriminatorValue); } /** - * Invoke function doesUserHaveAccess + * Determine whether a user has access to a shared channel. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function doesUserHaveAccess + * Determine whether a user has access to a shared channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrinci return new DoesUserHaveAccessuserIdUserIdTenantIdTenantIdUserPrincipalNameUserPrincipalNameRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function doesUserHaveAccess + * Determine whether a user has access to a shared channel. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/filesfolder/FilesFolderRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/filesfolder/FilesFolderRequestBuilder.java index b1bd7ed605e..02cf16c0f13 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/filesfolder/FilesFolderRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/filesfolder/FilesFolderRequestBuilder.java @@ -46,21 +46,19 @@ public FilesFolderRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/primaryChannel/filesFolder{?%24expand,%24select}", rawUrl); } /** - * Get the metadata for the location where the files of a channel are stored. + * Metadata for the location where the channel's files are stored. * @return a {@link DriveItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DriveItem get() { return get(null); } /** - * Get the metadata for the location where the files of a channel are stored. + * Metadata for the location where the channel's files are stored. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DriveItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DriveItem get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -70,7 +68,7 @@ public DriveItem get(@jakarta.annotation.Nullable final java.util.function.Consu return this.requestAdapter.send(requestInfo, errorMapping, DriveItem::createFromDiscriminatorValue); } /** - * Get the metadata for the location where the files of a channel are stored. + * Metadata for the location where the channel's files are stored. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -78,7 +76,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the metadata for the location where the files of a channel are stored. + * Metadata for the location where the channel's files are stored. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -100,7 +98,7 @@ public FilesFolderRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new FilesFolderRequestBuilder(rawUrl, requestAdapter); } /** - * Get the metadata for the location where the files of a channel are stored. + * Metadata for the location where the channel's files are stored. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/filesfolder/content/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/filesfolder/content/ContentRequestBuilder.java index 1aa11f663ae..478730dd7c8 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/filesfolder/content/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/filesfolder/content/ContentRequestBuilder.java @@ -41,7 +41,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * The content stream, if the item represents a file. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -52,7 +51,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/members/MembersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/members/MembersRequestBuilder.java index a6239c6603c..3915391f3b1 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/members/MembersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/members/MembersRequestBuilder.java @@ -69,21 +69,19 @@ public MembersRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/primaryChannel/members{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of conversationMembers from a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve the channel member list. + * A collection of membership records associated with the channel. * @return a {@link ConversationMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMemberCollectionResponse get() { return get(null); } /** - * Retrieve a list of conversationMembers from a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve the channel member list. + * A collection of membership records associated with the channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMemberCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public ConversationMemberCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, ConversationMemberCollectionResponse::createFromDiscriminatorValue); } /** - * Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Create new navigation property to members for users * @param body The request body * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember post(@jakarta.annotation.Nonnull final ConversationMember body) { return post(body, null); } /** - * Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Create new navigation property to members for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember post(@jakarta.annotation.Nonnull final ConversationMember body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public ConversationMember post(@jakarta.annotation.Nonnull final ConversationMem return this.requestAdapter.send(requestInfo, errorMapping, ConversationMember::createFromDiscriminatorValue); } /** - * Retrieve a list of conversationMembers from a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve the channel member list. + * A collection of membership records associated with the channel. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of conversationMembers from a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve the channel member list. + * A collection of membership records associated with the channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Create new navigation property to members for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add a conversationMember to a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Create new navigation property to members for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public MembersRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new MembersRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of conversationMembers from a channel. This method supports federation. Only a user who is a member of the shared channel can retrieve the channel member list. + * A collection of membership records associated with the channel. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/members/item/ConversationMemberItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/members/item/ConversationMemberItemRequestBuilder.java index e5f1ceadc5c..10562d4e772 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/members/item/ConversationMemberItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/members/item/ConversationMemberItemRequestBuilder.java @@ -37,18 +37,16 @@ public ConversationMemberItemRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/primaryChannel/members/{conversationMember%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Delete navigation property members for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Delete navigation property members for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get a conversationMember from a channel. + * A collection of membership records associated with the channel. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember get() { return get(null); } /** - * Get a conversationMember from a channel. + * A collection of membership records associated with the channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public ConversationMember get(@jakarta.annotation.Nullable final java.util.funct return this.requestAdapter.send(requestInfo, errorMapping, ConversationMember::createFromDiscriminatorValue); } /** - * Update the role of a conversationMember in a team or channel. + * Update the navigation property members in users * @param body The request body * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember patch(@jakarta.annotation.Nonnull final ConversationMember body) { return patch(body, null); } /** - * Update the role of a conversationMember in a team or channel. + * Update the navigation property members in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMember patch(@jakarta.annotation.Nonnull final ConversationMember body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public ConversationMember patch(@jakarta.annotation.Nonnull final ConversationMe return this.requestAdapter.send(requestInfo, errorMapping, ConversationMember::createFromDiscriminatorValue); } /** - * Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Delete navigation property members for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a conversationMember from a channel. This operation is allowed only for channels with a membershipType value of private or shared. + * Delete navigation property members for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get a conversationMember from a channel. + * A collection of membership records associated with the channel. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a conversationMember from a channel. + * A collection of membership records associated with the channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the role of a conversationMember in a team or channel. + * Update the navigation property members in users * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the role of a conversationMember in a team or channel. + * Update the navigation property members in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public ConversationMemberItemRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get a conversationMember from a channel. + * A collection of membership records associated with the channel. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/MessagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/MessagesRequestBuilder.java index 0e7565b06c9..8f5c6810445 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/MessagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/MessagesRequestBuilder.java @@ -69,21 +69,19 @@ public MessagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/primaryChannel/messages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of messages (without the replies) in a channel of a team. To get the replies for a message, call the list message replies or the get message reply API. This method supports federation. To list channel messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the channel. A navigation property. Nullable. * @return a {@link ChatMessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageCollectionResponse get() { return get(null); } /** - * Retrieve the list of messages (without the replies) in a channel of a team. To get the replies for a message, call the list message replies or the get message reply API. This method supports federation. To list channel messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the channel. A navigation property. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public ChatMessageCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, ChatMessageCollectionResponse::createFromDiscriminatorValue); } /** - * Send a new chatMessage in the specified channel or a chat. + * Create new navigation property to messages for users * @param body The request body * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body) { return post(body, null); } /** - * Send a new chatMessage in the specified channel or a chat. + * Create new navigation property to messages for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body, @jak return this.requestAdapter.send(requestInfo, errorMapping, ChatMessage::createFromDiscriminatorValue); } /** - * Retrieve the list of messages (without the replies) in a channel of a team. To get the replies for a message, call the list message replies or the get message reply API. This method supports federation. To list channel messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the channel. A navigation property. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of messages (without the replies) in a channel of a team. To get the replies for a message, call the list message replies or the get message reply API. This method supports federation. To list channel messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the channel. A navigation property. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Send a new chatMessage in the specified channel or a chat. + * Create new navigation property to messages for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Send a new chatMessage in the specified channel or a chat. + * Create new navigation property to messages for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public MessagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new MessagesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of messages (without the replies) in a channel of a team. To get the replies for a message, call the list message replies or the get message reply API. This method supports federation. To list channel messages in application context, the request must be made from the tenant that the channel owner belongs to (represented by the tenantId property on the channel). + * A collection of all the messages in the channel. A navigation property. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/delta/DeltaRequestBuilder.java index e950dd07427..c8047463305 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/primaryChannel/messages/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/item/ChatMessageItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/item/ChatMessageItemRequestBuilder.java index 24bbd42f640..94fb5ffc127 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/item/ChatMessageItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/item/ChatMessageItemRequestBuilder.java @@ -109,21 +109,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the channel. A navigation property. Nullable. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage get() { return get(null); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the channel. A navigation property. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,23 +131,21 @@ public ChatMessage get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.send(requestInfo, errorMapping, ChatMessage::createFromDiscriminatorValue); } /** - * Update a chatMessage object. Except for the policyViolation property, all properties of a chatMessage can be updated in delegated permissions scenarios.Only the policyViolation property of a chatMessage can be updated in application permissions scenarios. The update only works for chats where members are Microsoft Teams users. If one of the participants is using Skype, the operation fails. This method doesn't support federation. Only the user in the tenant who sent the message can perform data loss prevention (DLP) updates on the specified chat message. + * Update the navigation property messages in users * @param body The request body * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage patch(@jakarta.annotation.Nonnull final ChatMessage body) { return patch(body, null); } /** - * Update a chatMessage object. Except for the policyViolation property, all properties of a chatMessage can be updated in delegated permissions scenarios.Only the policyViolation property of a chatMessage can be updated in application permissions scenarios. The update only works for chats where members are Microsoft Teams users. If one of the participants is using Skype, the operation fails. This method doesn't support federation. Only the user in the tenant who sent the message can perform data loss prevention (DLP) updates on the specified chat message. + * Update the navigation property messages in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage patch(@jakarta.annotation.Nonnull final ChatMessage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -180,7 +176,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the channel. A navigation property. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -188,7 +184,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the channel. A navigation property. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -200,7 +196,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update a chatMessage object. Except for the policyViolation property, all properties of a chatMessage can be updated in delegated permissions scenarios.Only the policyViolation property of a chatMessage can be updated in application permissions scenarios. The update only works for chats where members are Microsoft Teams users. If one of the participants is using Skype, the operation fails. This method doesn't support federation. Only the user in the tenant who sent the message can perform data loss prevention (DLP) updates on the specified chat message. + * Update the navigation property messages in users * @param body The request body * @return a {@link RequestInformation} */ @@ -209,7 +205,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update a chatMessage object. Except for the policyViolation property, all properties of a chatMessage can be updated in delegated permissions scenarios.Only the policyViolation property of a chatMessage can be updated in application permissions scenarios. The update only works for chats where members are Microsoft Teams users. If one of the participants is using Skype, the operation fails. This method doesn't support federation. Only the user in the tenant who sent the message can perform data loss prevention (DLP) updates on the specified chat message. + * Update the navigation property messages in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -240,7 +236,7 @@ public ChatMessageItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final S public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve a single message or a message reply in a channel or a chat. + * A collection of all the messages in the channel. A navigation property. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/item/hostedcontents/HostedContentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/item/hostedcontents/HostedContentsRequestBuilder.java index 89e44be4d46..f3bc3f86d38 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/item/hostedcontents/HostedContentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/item/hostedcontents/HostedContentsRequestBuilder.java @@ -60,21 +60,19 @@ public HostedContentsRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/primaryChannel/messages/{chatMessage%2Did}/hostedContents{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link ChatMessageHostedContentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContentCollectionResponse get() { return get(null); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageHostedContentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ChatMessageHostedContent post(@jakarta.annotation.Nonnull final ChatMessa return this.requestAdapter.send(requestInfo, errorMapping, ChatMessageHostedContent::createFromDiscriminatorValue); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public HostedContentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new HostedContentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java index 891ee48587d..3f904b13e24 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link ChatMessageHostedContent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContent get() { return get(null); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageHostedContent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContent get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public ChatMessageHostedContentItemRequestBuilder withUrl(@jakarta.annotation.No public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/item/hostedcontents/item/value/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/item/hostedcontents/item/value/ContentRequestBuilder.java index 64478d34ef6..2b5d6c9e4bd 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/item/hostedcontents/item/value/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/item/hostedcontents/item/value/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * Get media content for the navigation property hostedContents from users * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/item/replies/RepliesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/item/replies/RepliesRequestBuilder.java index 512e4268fd0..7f151b597ae 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/item/replies/RepliesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/item/replies/RepliesRequestBuilder.java @@ -69,21 +69,19 @@ public RepliesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/primaryChannel/messages/{chatMessage%2Did}/replies{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. * @return a {@link ChatMessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageCollectionResponse get() { return get(null); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public ChatMessageCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, ChatMessageCollectionResponse::createFromDiscriminatorValue); } /** - * Send a new reply to a chatMessage in a specified channel. + * Create new navigation property to replies for users * @param body The request body * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body) { return post(body, null); } /** - * Send a new reply to a chatMessage in a specified channel. + * Create new navigation property to replies for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public ChatMessage post(@jakarta.annotation.Nonnull final ChatMessage body, @jak return this.requestAdapter.send(requestInfo, errorMapping, ChatMessage::createFromDiscriminatorValue); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Send a new reply to a chatMessage in a specified channel. + * Create new navigation property to replies for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Send a new reply to a chatMessage in a specified channel. + * Create new navigation property to replies for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public RepliesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new RepliesRequestBuilder(rawUrl, requestAdapter); } /** - * List all the replies to a message in a channel of a team. This method lists only the replies of the specified message, if any. To get the message itself, call get channel message. + * Replies for a specified message. Supports $expand for channel messages. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/item/replies/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/item/replies/delta/DeltaRequestBuilder.java index 113fdc5d9a6..4a6e9f94236 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/item/replies/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/item/replies/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/primaryChannel/messages/{chatMessage%2Did}/replies/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Retrieve the list of messages (without the replies) in a channel of a team. By using delta query, you can get new or updated messages in a channel. Delta query supports both full synchronization that retrieves all the messages in the specified channel, and incremental synchronization that retrieves those messages that have been added or changed in the channel since the last synchronization. Typically, you would do an initial full synchronization, and then get incremental changes to that messages view periodically. To get the replies for a message, use the list message replies or the get message reply operation. A GET request with the delta function returns either: State tokens are opaque to the client. To proceed with a round of change tracking, copy and apply the @odata.nextLink or @odata.deltaLink URL returned from the last GET request to the next delta function call for that same calendar view. A @odata.deltaLink returned in a response signifies that the current round of change tracking is complete. You can save and use the @odata.deltaLink URL when you begin to retrieve more changes (messages changed or posted after acquiring @odata.deltaLink). For more information, see the delta query documentation. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/item/replies/item/ChatMessageItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/item/replies/item/ChatMessageItemRequestBuilder.java index 0d082477c0b..2a375ba9d0c 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/item/replies/item/ChatMessageItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/item/replies/item/ChatMessageItemRequestBuilder.java @@ -100,21 +100,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage get() { return get(null); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessage get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -169,7 +167,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -177,7 +175,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -229,7 +227,7 @@ public ChatMessageItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final S public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve a single message or a message reply in a channel or a chat. + * Replies for a specified message. Supports $expand for channel messages. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/item/replies/item/hostedcontents/HostedContentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/item/replies/item/hostedcontents/HostedContentsRequestBuilder.java index 870efb7b9df..c350f4e54d5 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/item/replies/item/hostedcontents/HostedContentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/item/replies/item/hostedcontents/HostedContentsRequestBuilder.java @@ -60,21 +60,19 @@ public HostedContentsRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/primaryChannel/messages/{chatMessage%2Did}/replies/{chatMessage%2Did1}/hostedContents{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link ChatMessageHostedContentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContentCollectionResponse get() { return get(null); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageHostedContentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ChatMessageHostedContent post(@jakarta.annotation.Nonnull final ChatMessa return this.requestAdapter.send(requestInfo, errorMapping, ChatMessageHostedContent::createFromDiscriminatorValue); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public HostedContentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new HostedContentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of chatMessageHostedContent objects from a message. This API only lists the hosted content objects. To get the content bytes, see get chatmessage hosted content. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/item/replies/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/item/replies/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java index d7e3d9bfd54..f87d0289943 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/item/replies/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/item/replies/item/hostedcontents/item/ChatMessageHostedContentItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link ChatMessageHostedContent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContent get() { return get(null); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChatMessageHostedContent} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChatMessageHostedContent get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public ChatMessageHostedContentItemRequestBuilder withUrl(@jakarta.annotation.No public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of chatMessageHostedContent object. + * Content in a message hosted by Microsoft Teams - for example, images or code snippets. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/item/replies/item/hostedcontents/item/value/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/item/replies/item/hostedcontents/item/value/ContentRequestBuilder.java index 0b58696b1e8..8b73cc00c22 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/item/replies/item/hostedcontents/item/value/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/messages/item/replies/item/hostedcontents/item/value/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * Get media content for the navigation property hostedContents from users * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/sharedwithteams/SharedWithTeamsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/sharedwithteams/SharedWithTeamsRequestBuilder.java index 335d70b036a..31cd6c3c8dc 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/sharedwithteams/SharedWithTeamsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/sharedwithteams/SharedWithTeamsRequestBuilder.java @@ -60,21 +60,19 @@ public SharedWithTeamsRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/primaryChannel/sharedWithTeams{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of teams that has been shared a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @return a {@link SharedWithChannelTeamInfoCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SharedWithChannelTeamInfoCollectionResponse get() { return get(null); } /** - * Get the list of teams that has been shared a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SharedWithChannelTeamInfoCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SharedWithChannelTeamInfoCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public SharedWithChannelTeamInfo post(@jakarta.annotation.Nonnull final SharedWi return this.requestAdapter.send(requestInfo, errorMapping, SharedWithChannelTeamInfo::createFromDiscriminatorValue); } /** - * Get the list of teams that has been shared a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of teams that has been shared a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public SharedWithTeamsRequestBuilder withUrl(@jakarta.annotation.Nonnull final S return new SharedWithTeamsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of teams that has been shared a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/sharedwithteams/item/SharedWithChannelTeamInfoItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/sharedwithteams/item/SharedWithChannelTeamInfoItemRequestBuilder.java index ffcc40afdb3..2f5c2d0dd4f 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/sharedwithteams/item/SharedWithChannelTeamInfoItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/sharedwithteams/item/SharedWithChannelTeamInfoItemRequestBuilder.java @@ -55,18 +55,16 @@ public SharedWithChannelTeamInfoItemRequestBuilder(@jakarta.annotation.Nonnull f super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo%2Did}{?%24expand,%24select}", rawUrl); } /** - * Unshare a channel with a team by deleting the corresponding sharedWithChannelTeamInfo resource. This operation is allowed only for channels with a membershipType value of shared. + * Delete navigation property sharedWithTeams for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Unshare a channel with a team by deleting the corresponding sharedWithChannelTeamInfo resource. This operation is allowed only for channels with a membershipType value of shared. + * Delete navigation property sharedWithTeams for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -75,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get a team that has been shared with a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @return a {@link SharedWithChannelTeamInfo} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SharedWithChannelTeamInfo get() { return get(null); } /** - * Get a team that has been shared with a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SharedWithChannelTeamInfo} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SharedWithChannelTeamInfo get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +120,7 @@ public SharedWithChannelTeamInfo patch(@jakarta.annotation.Nonnull final SharedW return this.requestAdapter.send(requestInfo, errorMapping, SharedWithChannelTeamInfo::createFromDiscriminatorValue); } /** - * Unshare a channel with a team by deleting the corresponding sharedWithChannelTeamInfo resource. This operation is allowed only for channels with a membershipType value of shared. + * Delete navigation property sharedWithTeams for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +128,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Unshare a channel with a team by deleting the corresponding sharedWithChannelTeamInfo resource. This operation is allowed only for channels with a membershipType value of shared. + * Delete navigation property sharedWithTeams for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -144,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get a team that has been shared with a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -152,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a team that has been shared with a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -204,7 +200,7 @@ public SharedWithChannelTeamInfoItemRequestBuilder withUrl(@jakarta.annotation.N public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get a team that has been shared with a specified channel. This operation is allowed only for channels with a membershipType value of shared. + * A collection of teams with which a channel is shared. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/sharedwithteams/item/allowedmembers/AllowedMembersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/sharedwithteams/item/allowedmembers/AllowedMembersRequestBuilder.java index 2ba62b98426..880e4b4cdc2 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/sharedwithteams/item/allowedmembers/AllowedMembersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/sharedwithteams/item/allowedmembers/AllowedMembersRequestBuilder.java @@ -59,21 +59,19 @@ public AllowedMembersRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo%2Did}/allowedMembers{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of conversationMembers who can access a shared channel. This method does not return the following conversationMembers from the team:- Users with Guest role- Users who are externally authenticated in the tenant + * A collection of team members who have access to the shared channel. * @return a {@link ConversationMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMemberCollectionResponse get() { return get(null); } /** - * Get the list of conversationMembers who can access a shared channel. This method does not return the following conversationMembers from the team:- Users with Guest role- Users who are externally authenticated in the tenant + * A collection of team members who have access to the shared channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ConversationMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ConversationMemberCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public ConversationMemberCollectionResponse get(@jakarta.annotation.Nullable fin return this.requestAdapter.send(requestInfo, errorMapping, ConversationMemberCollectionResponse::createFromDiscriminatorValue); } /** - * Get the list of conversationMembers who can access a shared channel. This method does not return the following conversationMembers from the team:- Users with Guest role- Users who are externally authenticated in the tenant + * A collection of team members who have access to the shared channel. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of conversationMembers who can access a shared channel. This method does not return the following conversationMembers from the team:- Users with Guest role- Users who are externally authenticated in the tenant + * A collection of team members who have access to the shared channel. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public AllowedMembersRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new AllowedMembersRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of conversationMembers who can access a shared channel. This method does not return the following conversationMembers from the team:- Users with Guest role- Users who are externally authenticated in the tenant + * A collection of team members who have access to the shared channel. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/tabs/TabsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/tabs/TabsRequestBuilder.java index 7855a87d2f3..8d47b66a927 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/tabs/TabsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/tabs/TabsRequestBuilder.java @@ -60,21 +60,19 @@ public TabsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/primaryChannel/tabs{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of tabs in the specified channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @return a {@link TeamsTabCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTabCollectionResponse get() { return get(null); } /** - * Retrieve the list of tabs in the specified channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsTabCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTabCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TeamsTabCollectionResponse get(@jakarta.annotation.Nullable final java.ut return this.requestAdapter.send(requestInfo, errorMapping, TeamsTabCollectionResponse::createFromDiscriminatorValue); } /** - * Add (pin) a tab to the specified channel within a team. The app must be preinstalled in the team and have the configurableTabs property defined in the app manifest. + * Create new navigation property to tabs for users * @param body The request body * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab post(@jakarta.annotation.Nonnull final TeamsTab body) { return post(body, null); } /** - * Add (pin) a tab to the specified channel within a team. The app must be preinstalled in the team and have the configurableTabs property defined in the app manifest. + * Create new navigation property to tabs for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab post(@jakarta.annotation.Nonnull final TeamsTab body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public TeamsTab post(@jakarta.annotation.Nonnull final TeamsTab body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, TeamsTab::createFromDiscriminatorValue); } /** - * Retrieve the list of tabs in the specified channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of tabs in the specified channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add (pin) a tab to the specified channel within a team. The app must be preinstalled in the team and have the configurableTabs property defined in the app manifest. + * Create new navigation property to tabs for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add (pin) a tab to the specified channel within a team. The app must be preinstalled in the team and have the configurableTabs property defined in the app manifest. + * Create new navigation property to tabs for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public TabsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr return new TabsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of tabs in the specified channel within a team. + * A collection of all the tabs in the channel. A navigation property. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/tabs/item/TeamsTabItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/tabs/item/TeamsTabItemRequestBuilder.java index a78b2c9884b..088f3a29728 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/tabs/item/TeamsTabItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/primarychannel/tabs/item/TeamsTabItemRequestBuilder.java @@ -46,18 +46,16 @@ public TeamsTabItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/primaryChannel/tabs/{teamsTab%2Did}{?%24expand,%24select}", rawUrl); } /** - * Removes (unpins) a tab from the specified channel within a team. + * Delete navigation property tabs for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Removes (unpins) a tab from the specified channel within a team. + * Delete navigation property tabs for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of the specified tab in a channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab get() { return get(null); } /** - * Retrieve the properties and relationships of the specified tab in a channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public TeamsTab get(@jakarta.annotation.Nullable final java.util.function.Consum return this.requestAdapter.send(requestInfo, errorMapping, TeamsTab::createFromDiscriminatorValue); } /** - * Update the properties of the specified tab.This API can be used to configure the content of the tab. + * Update the navigation property tabs in users * @param body The request body * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab patch(@jakarta.annotation.Nonnull final TeamsTab body) { return patch(body, null); } /** - * Update the properties of the specified tab.This API can be used to configure the content of the tab. + * Update the navigation property tabs in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsTab} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamsTab patch(@jakarta.annotation.Nonnull final TeamsTab body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public TeamsTab patch(@jakarta.annotation.Nonnull final TeamsTab body, @jakarta. return this.requestAdapter.send(requestInfo, errorMapping, TeamsTab::createFromDiscriminatorValue); } /** - * Removes (unpins) a tab from the specified channel within a team. + * Delete navigation property tabs for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Removes (unpins) a tab from the specified channel within a team. + * Delete navigation property tabs for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of the specified tab in a channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of the specified tab in a channel within a team. + * A collection of all the tabs in the channel. A navigation property. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of the specified tab.This API can be used to configure the content of the tab. + * Update the navigation property tabs in users * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of the specified tab.This API can be used to configure the content of the tab. + * Update the navigation property tabs in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public TeamsTabItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of the specified tab in a channel within a team. + * A collection of all the tabs in the channel. A navigation property. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/ScheduleRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/ScheduleRequestBuilder.java index 44ffc5c7079..54c0eca323c 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/ScheduleRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/ScheduleRequestBuilder.java @@ -145,21 +145,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a schedule object. The schedule creation process conforms to the One API guideline for resource based long running operations (RELO).When clients use the PUT method, if the schedule is provisioned, the operation updates the schedule; otherwise, the operation starts the schedule provisioning process in the background. During schedule provisioning, clients can use the GET method to get the schedule and look at the provisionStatus property for the current state of the provisioning. If the provisioning failed, clients can get additional information from the provisionStatusCode property. Clients can also inspect the configuration of the schedule. + * The schedule of shifts for this team. * @return a {@link Schedule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Schedule get() { return get(null); } /** - * Retrieve the properties and relationships of a schedule object. The schedule creation process conforms to the One API guideline for resource based long running operations (RELO).When clients use the PUT method, if the schedule is provisioned, the operation updates the schedule; otherwise, the operation starts the schedule provisioning process in the background. During schedule provisioning, clients can use the GET method to get the schedule and look at the provisionStatus property for the current state of the provisioning. If the provisioning failed, clients can get additional information from the provisionStatusCode property. Clients can also inspect the configuration of the schedule. + * The schedule of shifts for this team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Schedule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Schedule get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -214,7 +212,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a schedule object. The schedule creation process conforms to the One API guideline for resource based long running operations (RELO).When clients use the PUT method, if the schedule is provisioned, the operation updates the schedule; otherwise, the operation starts the schedule provisioning process in the background. During schedule provisioning, clients can use the GET method to get the schedule and look at the provisionStatus property for the current state of the provisioning. If the provisioning failed, clients can get additional information from the provisionStatusCode property. Clients can also inspect the configuration of the schedule. + * The schedule of shifts for this team. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -222,7 +220,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a schedule object. The schedule creation process conforms to the One API guideline for resource based long running operations (RELO).When clients use the PUT method, if the schedule is provisioned, the operation updates the schedule; otherwise, the operation starts the schedule provisioning process in the background. During schedule provisioning, clients can use the GET method to get the schedule and look at the provisionStatus property for the current state of the provisioning. If the provisioning failed, clients can get additional information from the provisionStatusCode property. Clients can also inspect the configuration of the schedule. + * The schedule of shifts for this team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -274,7 +272,7 @@ public ScheduleRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a schedule object. The schedule creation process conforms to the One API guideline for resource based long running operations (RELO).When clients use the PUT method, if the schedule is provisioned, the operation updates the schedule; otherwise, the operation starts the schedule provisioning process in the background. During schedule provisioning, clients can use the GET method to get the schedule and look at the provisionStatus property for the current state of the provisioning. If the provisioning failed, clients can get additional information from the provisionStatusCode property. Clients can also inspect the configuration of the schedule. + * The schedule of shifts for this team. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/offershiftrequests/OfferShiftRequestsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/offershiftrequests/OfferShiftRequestsRequestBuilder.java index d3f774fa932..f5470a739ab 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/offershiftrequests/OfferShiftRequestsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/offershiftrequests/OfferShiftRequestsRequestBuilder.java @@ -60,21 +60,19 @@ public OfferShiftRequestsRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/schedule/offerShiftRequests{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the properties and relationships of all offerShiftRequest objects in a team. + * The offer requests for shifts in the schedule. * @return a {@link OfferShiftRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OfferShiftRequestCollectionResponse get() { return get(null); } /** - * Retrieve the properties and relationships of all offerShiftRequest objects in a team. + * The offer requests for shifts in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OfferShiftRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OfferShiftRequestCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OfferShiftRequestCollectionResponse get(@jakarta.annotation.Nullable fina return this.requestAdapter.send(requestInfo, errorMapping, OfferShiftRequestCollectionResponse::createFromDiscriminatorValue); } /** - * Create an instance of an offerShiftRequest. + * Create new navigation property to offerShiftRequests for users * @param body The request body * @return a {@link OfferShiftRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OfferShiftRequest post(@jakarta.annotation.Nonnull final OfferShiftRequest body) { return post(body, null); } /** - * Create an instance of an offerShiftRequest. + * Create new navigation property to offerShiftRequests for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OfferShiftRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OfferShiftRequest post(@jakarta.annotation.Nonnull final OfferShiftRequest body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OfferShiftRequest post(@jakarta.annotation.Nonnull final OfferShiftReques return this.requestAdapter.send(requestInfo, errorMapping, OfferShiftRequest::createFromDiscriminatorValue); } /** - * Retrieve the properties and relationships of all offerShiftRequest objects in a team. + * The offer requests for shifts in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of all offerShiftRequest objects in a team. + * The offer requests for shifts in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an instance of an offerShiftRequest. + * Create new navigation property to offerShiftRequests for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an instance of an offerShiftRequest. + * Create new navigation property to offerShiftRequests for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public OfferShiftRequestsRequestBuilder withUrl(@jakarta.annotation.Nonnull fina return new OfferShiftRequestsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the properties and relationships of all offerShiftRequest objects in a team. + * The offer requests for shifts in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/offershiftrequests/item/OfferShiftRequestItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/offershiftrequests/item/OfferShiftRequestItemRequestBuilder.java index 3d4121b4c21..1ab447c14b3 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/offershiftrequests/item/OfferShiftRequestItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/offershiftrequests/item/OfferShiftRequestItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of an offerShiftRequest object. + * The offer requests for shifts in the schedule. * @return a {@link OfferShiftRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OfferShiftRequest get() { return get(null); } /** - * Retrieve the properties and relationships of an offerShiftRequest object. + * The offer requests for shifts in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OfferShiftRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OfferShiftRequest get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of an offerShiftRequest object. + * The offer requests for shifts in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of an offerShiftRequest object. + * The offer requests for shifts in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public OfferShiftRequestItemRequestBuilder withUrl(@jakarta.annotation.Nonnull f public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of an offerShiftRequest object. + * The offer requests for shifts in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/openshiftchangerequests/OpenShiftChangeRequestsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/openshiftchangerequests/OpenShiftChangeRequestsRequestBuilder.java index 3e7d47e7fff..32fea62301e 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/openshiftchangerequests/OpenShiftChangeRequestsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/openshiftchangerequests/OpenShiftChangeRequestsRequestBuilder.java @@ -60,21 +60,19 @@ public OpenShiftChangeRequestsRequestBuilder(@jakarta.annotation.Nonnull final S super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/schedule/openShiftChangeRequests{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of openShiftChangeRequest objects in a team. + * The open shift requests in the schedule. * @return a {@link OpenShiftChangeRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OpenShiftChangeRequestCollectionResponse get() { return get(null); } /** - * Retrieve a list of openShiftChangeRequest objects in a team. + * The open shift requests in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OpenShiftChangeRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OpenShiftChangeRequestCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OpenShiftChangeRequestCollectionResponse get(@jakarta.annotation.Nullable return this.requestAdapter.send(requestInfo, errorMapping, OpenShiftChangeRequestCollectionResponse::createFromDiscriminatorValue); } /** - * Create instance of an openShiftChangeRequest object. + * Create new navigation property to openShiftChangeRequests for users * @param body The request body * @return a {@link OpenShiftChangeRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OpenShiftChangeRequest post(@jakarta.annotation.Nonnull final OpenShiftChangeRequest body) { return post(body, null); } /** - * Create instance of an openShiftChangeRequest object. + * Create new navigation property to openShiftChangeRequests for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OpenShiftChangeRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OpenShiftChangeRequest post(@jakarta.annotation.Nonnull final OpenShiftChangeRequest body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OpenShiftChangeRequest post(@jakarta.annotation.Nonnull final OpenShiftCh return this.requestAdapter.send(requestInfo, errorMapping, OpenShiftChangeRequest::createFromDiscriminatorValue); } /** - * Retrieve a list of openShiftChangeRequest objects in a team. + * The open shift requests in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of openShiftChangeRequest objects in a team. + * The open shift requests in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create instance of an openShiftChangeRequest object. + * Create new navigation property to openShiftChangeRequests for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create instance of an openShiftChangeRequest object. + * Create new navigation property to openShiftChangeRequests for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public OpenShiftChangeRequestsRequestBuilder withUrl(@jakarta.annotation.Nonnull return new OpenShiftChangeRequestsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of openShiftChangeRequest objects in a team. + * The open shift requests in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/openshiftchangerequests/item/OpenShiftChangeRequestItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/openshiftchangerequests/item/OpenShiftChangeRequestItemRequestBuilder.java index 3c4c32a3a92..939c59787d4 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/openshiftchangerequests/item/OpenShiftChangeRequestItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/openshiftchangerequests/item/OpenShiftChangeRequestItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of an openShiftChangeRequest object. + * The open shift requests in the schedule. * @return a {@link OpenShiftChangeRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OpenShiftChangeRequest get() { return get(null); } /** - * Retrieve the properties and relationships of an openShiftChangeRequest object. + * The open shift requests in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OpenShiftChangeRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OpenShiftChangeRequest get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of an openShiftChangeRequest object. + * The open shift requests in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of an openShiftChangeRequest object. + * The open shift requests in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public OpenShiftChangeRequestItemRequestBuilder withUrl(@jakarta.annotation.Nonn public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of an openShiftChangeRequest object. + * The open shift requests in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/openshifts/OpenShiftsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/openshifts/OpenShiftsRequestBuilder.java index ea32a54d740..f7faf8d6212 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/openshifts/OpenShiftsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/openshifts/OpenShiftsRequestBuilder.java @@ -60,21 +60,19 @@ public OpenShiftsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/schedule/openShifts{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List openShift objects in a team. + * The set of open shifts in a scheduling group in the schedule. * @return a {@link OpenShiftCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OpenShiftCollectionResponse get() { return get(null); } /** - * List openShift objects in a team. + * The set of open shifts in a scheduling group in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OpenShiftCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OpenShiftCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OpenShiftCollectionResponse get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, OpenShiftCollectionResponse::createFromDiscriminatorValue); } /** - * Create an instance of an openShift object. + * Create new navigation property to openShifts for users * @param body The request body * @return a {@link OpenShift} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OpenShift post(@jakarta.annotation.Nonnull final OpenShift body) { return post(body, null); } /** - * Create an instance of an openShift object. + * Create new navigation property to openShifts for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OpenShift} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OpenShift post(@jakarta.annotation.Nonnull final OpenShift body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OpenShift post(@jakarta.annotation.Nonnull final OpenShift body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, OpenShift::createFromDiscriminatorValue); } /** - * List openShift objects in a team. + * The set of open shifts in a scheduling group in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List openShift objects in a team. + * The set of open shifts in a scheduling group in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an instance of an openShift object. + * Create new navigation property to openShifts for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an instance of an openShift object. + * Create new navigation property to openShifts for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public OpenShiftsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new OpenShiftsRequestBuilder(rawUrl, requestAdapter); } /** - * List openShift objects in a team. + * The set of open shifts in a scheduling group in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/openshifts/item/OpenShiftItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/openshifts/item/OpenShiftItemRequestBuilder.java index 26a7fca51cc..c16d41ca1bc 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/openshifts/item/OpenShiftItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/openshifts/item/OpenShiftItemRequestBuilder.java @@ -37,18 +37,16 @@ public OpenShiftItemRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/schedule/openShifts/{openShift%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an openShift object. + * Delete navigation property openShifts for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an openShift object. + * Delete navigation property openShifts for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of an openshift object. + * The set of open shifts in a scheduling group in the schedule. * @return a {@link OpenShift} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OpenShift get() { return get(null); } /** - * Retrieve the properties and relationships of an openshift object. + * The set of open shifts in a scheduling group in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OpenShift} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OpenShift get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public OpenShift get(@jakarta.annotation.Nullable final java.util.function.Consu return this.requestAdapter.send(requestInfo, errorMapping, OpenShift::createFromDiscriminatorValue); } /** - * Update the properties of an openShift object. + * Update the navigation property openShifts in users * @param body The request body * @return a {@link OpenShift} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OpenShift patch(@jakarta.annotation.Nonnull final OpenShift body) { return patch(body, null); } /** - * Update the properties of an openShift object. + * Update the navigation property openShifts in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OpenShift} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OpenShift patch(@jakarta.annotation.Nonnull final OpenShift body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public OpenShift patch(@jakarta.annotation.Nonnull final OpenShift body, @jakart return this.requestAdapter.send(requestInfo, errorMapping, OpenShift::createFromDiscriminatorValue); } /** - * Delete an openShift object. + * Delete navigation property openShifts for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an openShift object. + * Delete navigation property openShifts for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of an openshift object. + * The set of open shifts in a scheduling group in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of an openshift object. + * The set of open shifts in a scheduling group in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an openShift object. + * Update the navigation property openShifts in users * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an openShift object. + * Update the navigation property openShifts in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public OpenShiftItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of an openshift object. + * The set of open shifts in a scheduling group in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/schedulinggroups/SchedulingGroupsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/schedulinggroups/SchedulingGroupsRequestBuilder.java index 8fd81fa9487..fce5b33b5aa 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/schedulinggroups/SchedulingGroupsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/schedulinggroups/SchedulingGroupsRequestBuilder.java @@ -60,21 +60,19 @@ public SchedulingGroupsRequestBuilder(@jakarta.annotation.Nonnull final String r super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/schedule/schedulingGroups{?%24count,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of schedulingGroups in this schedule. + * The logical grouping of users in the schedule (usually by role). * @return a {@link SchedulingGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SchedulingGroupCollectionResponse get() { return get(null); } /** - * Get the list of schedulingGroups in this schedule. + * The logical grouping of users in the schedule (usually by role). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SchedulingGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SchedulingGroupCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public SchedulingGroupCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, SchedulingGroupCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new schedulingGroup. + * Create new navigation property to schedulingGroups for users * @param body The request body * @return a {@link SchedulingGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SchedulingGroup post(@jakarta.annotation.Nonnull final SchedulingGroup body) { return post(body, null); } /** - * Create a new schedulingGroup. + * Create new navigation property to schedulingGroups for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SchedulingGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SchedulingGroup post(@jakarta.annotation.Nonnull final SchedulingGroup body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public SchedulingGroup post(@jakarta.annotation.Nonnull final SchedulingGroup bo return this.requestAdapter.send(requestInfo, errorMapping, SchedulingGroup::createFromDiscriminatorValue); } /** - * Get the list of schedulingGroups in this schedule. + * The logical grouping of users in the schedule (usually by role). * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of schedulingGroups in this schedule. + * The logical grouping of users in the schedule (usually by role). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new schedulingGroup. + * Create new navigation property to schedulingGroups for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new schedulingGroup. + * Create new navigation property to schedulingGroups for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public SchedulingGroupsRequestBuilder withUrl(@jakarta.annotation.Nonnull final return new SchedulingGroupsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of schedulingGroups in this schedule. + * The logical grouping of users in the schedule (usually by role). */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/schedulinggroups/item/SchedulingGroupItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/schedulinggroups/item/SchedulingGroupItemRequestBuilder.java index 42f401bc012..cdd934921a8 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/schedulinggroups/item/SchedulingGroupItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/schedulinggroups/item/SchedulingGroupItemRequestBuilder.java @@ -37,18 +37,16 @@ public SchedulingGroupItemRequestBuilder(@jakarta.annotation.Nonnull final Strin super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/schedule/schedulingGroups/{schedulingGroup%2Did}{?%24select}", rawUrl); } /** - * Mark a schedulingGroup as inactive by setting its isActive property.This method does not remove the schedulingGroup from the schedule. Existing shift instances assigned to the scheduling group remain part of the group. + * Delete navigation property schedulingGroups for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Mark a schedulingGroup as inactive by setting its isActive property.This method does not remove the schedulingGroup from the schedule. Existing shift instances assigned to the scheduling group remain part of the group. + * Delete navigation property schedulingGroups for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a schedulingGroup by ID. + * The logical grouping of users in the schedule (usually by role). * @return a {@link SchedulingGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SchedulingGroup get() { return get(null); } /** - * Retrieve the properties and relationships of a schedulingGroup by ID. + * The logical grouping of users in the schedule (usually by role). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SchedulingGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SchedulingGroup get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public SchedulingGroup get(@jakarta.annotation.Nullable final java.util.function return this.requestAdapter.send(requestInfo, errorMapping, SchedulingGroup::createFromDiscriminatorValue); } /** - * Replace an existing schedulingGroup. If the specified schedulingGroup doesn't exist, this method returns 404 Not found. + * Update the navigation property schedulingGroups in users * @param body The request body * @return a {@link SchedulingGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SchedulingGroup patch(@jakarta.annotation.Nonnull final SchedulingGroup body) { return patch(body, null); } /** - * Replace an existing schedulingGroup. If the specified schedulingGroup doesn't exist, this method returns 404 Not found. + * Update the navigation property schedulingGroups in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SchedulingGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SchedulingGroup patch(@jakarta.annotation.Nonnull final SchedulingGroup body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public SchedulingGroup patch(@jakarta.annotation.Nonnull final SchedulingGroup b return this.requestAdapter.send(requestInfo, errorMapping, SchedulingGroup::createFromDiscriminatorValue); } /** - * Mark a schedulingGroup as inactive by setting its isActive property.This method does not remove the schedulingGroup from the schedule. Existing shift instances assigned to the scheduling group remain part of the group. + * Delete navigation property schedulingGroups for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Mark a schedulingGroup as inactive by setting its isActive property.This method does not remove the schedulingGroup from the schedule. Existing shift instances assigned to the scheduling group remain part of the group. + * Delete navigation property schedulingGroups for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a schedulingGroup by ID. + * The logical grouping of users in the schedule (usually by role). * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a schedulingGroup by ID. + * The logical grouping of users in the schedule (usually by role). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Replace an existing schedulingGroup. If the specified schedulingGroup doesn't exist, this method returns 404 Not found. + * Update the navigation property schedulingGroups in users * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Replace an existing schedulingGroup. If the specified schedulingGroup doesn't exist, this method returns 404 Not found. + * Update the navigation property schedulingGroups in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public SchedulingGroupItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fin public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a schedulingGroup by ID. + * The logical grouping of users in the schedule (usually by role). */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/shifts/ShiftsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/shifts/ShiftsRequestBuilder.java index d0cb06f333f..a036c9b92f4 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/shifts/ShiftsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/shifts/ShiftsRequestBuilder.java @@ -60,21 +60,19 @@ public ShiftsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/schedule/shifts{?%24count,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of shift instances in a schedule. + * The shifts in the schedule. * @return a {@link ShiftCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ShiftCollectionResponse get() { return get(null); } /** - * Get the list of shift instances in a schedule. + * The shifts in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ShiftCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ShiftCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public ShiftCollectionResponse get(@jakarta.annotation.Nullable final java.util. return this.requestAdapter.send(requestInfo, errorMapping, ShiftCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new shift instance in a schedule. The duration of a shift cannot be less than 1 minute or longer than 24 hours. + * Create new navigation property to shifts for users * @param body The request body * @return a {@link Shift} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Shift post(@jakarta.annotation.Nonnull final Shift body) { return post(body, null); } /** - * Create a new shift instance in a schedule. The duration of a shift cannot be less than 1 minute or longer than 24 hours. + * Create new navigation property to shifts for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Shift} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Shift post(@jakarta.annotation.Nonnull final Shift body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public Shift post(@jakarta.annotation.Nonnull final Shift body, @jakarta.annotat return this.requestAdapter.send(requestInfo, errorMapping, Shift::createFromDiscriminatorValue); } /** - * Get the list of shift instances in a schedule. + * The shifts in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of shift instances in a schedule. + * The shifts in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new shift instance in a schedule. The duration of a shift cannot be less than 1 minute or longer than 24 hours. + * Create new navigation property to shifts for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new shift instance in a schedule. The duration of a shift cannot be less than 1 minute or longer than 24 hours. + * Create new navigation property to shifts for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ShiftsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw return new ShiftsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of shift instances in a schedule. + * The shifts in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/shifts/item/ShiftItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/shifts/item/ShiftItemRequestBuilder.java index 7752b071b2a..66213383b55 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/shifts/item/ShiftItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/shifts/item/ShiftItemRequestBuilder.java @@ -37,18 +37,16 @@ public ShiftItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/schedule/shifts/{shift%2Did}{?%24select}", rawUrl); } /** - * Delete a shift from the schedule. + * Delete navigation property shifts for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a shift from the schedule. + * Delete navigation property shifts for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a shift object by ID. + * The shifts in the schedule. * @return a {@link Shift} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Shift get() { return get(null); } /** - * Retrieve the properties and relationships of a shift object by ID. + * The shifts in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Shift} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Shift get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public Shift get(@jakarta.annotation.Nullable final java.util.function.Consumer< return this.requestAdapter.send(requestInfo, errorMapping, Shift::createFromDiscriminatorValue); } /** - * Replace an existing shift. If the specified shift doesn't exist, this method returns 404 Not found. The duration of a shift can't be less than 1 minute or longer than 24 hours. + * Update the navigation property shifts in users * @param body The request body * @return a {@link Shift} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Shift patch(@jakarta.annotation.Nonnull final Shift body) { return patch(body, null); } /** - * Replace an existing shift. If the specified shift doesn't exist, this method returns 404 Not found. The duration of a shift can't be less than 1 minute or longer than 24 hours. + * Update the navigation property shifts in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Shift} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Shift patch(@jakarta.annotation.Nonnull final Shift body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public Shift patch(@jakarta.annotation.Nonnull final Shift body, @jakarta.annota return this.requestAdapter.send(requestInfo, errorMapping, Shift::createFromDiscriminatorValue); } /** - * Delete a shift from the schedule. + * Delete navigation property shifts for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a shift from the schedule. + * Delete navigation property shifts for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a shift object by ID. + * The shifts in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a shift object by ID. + * The shifts in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Replace an existing shift. If the specified shift doesn't exist, this method returns 404 Not found. The duration of a shift can't be less than 1 minute or longer than 24 hours. + * Update the navigation property shifts in users * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Replace an existing shift. If the specified shift doesn't exist, this method returns 404 Not found. The duration of a shift can't be less than 1 minute or longer than 24 hours. + * Update the navigation property shifts in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public ShiftItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final String public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a shift object by ID. + * The shifts in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/swapshiftschangerequests/SwapShiftsChangeRequestsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/swapshiftschangerequests/SwapShiftsChangeRequestsRequestBuilder.java index 060ea1d3d08..da383cfefa2 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/swapshiftschangerequests/SwapShiftsChangeRequestsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/swapshiftschangerequests/SwapShiftsChangeRequestsRequestBuilder.java @@ -60,21 +60,19 @@ public SwapShiftsChangeRequestsRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/schedule/swapShiftsChangeRequests{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of swapShiftsChangeRequest objects in the team. + * The swap requests for shifts in the schedule. * @return a {@link SwapShiftsChangeRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SwapShiftsChangeRequestCollectionResponse get() { return get(null); } /** - * Retrieve a list of swapShiftsChangeRequest objects in the team. + * The swap requests for shifts in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SwapShiftsChangeRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SwapShiftsChangeRequestCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public SwapShiftsChangeRequestCollectionResponse get(@jakarta.annotation.Nullabl return this.requestAdapter.send(requestInfo, errorMapping, SwapShiftsChangeRequestCollectionResponse::createFromDiscriminatorValue); } /** - * Create an instance of a swapShiftsChangeRequest object. + * Create new navigation property to swapShiftsChangeRequests for users * @param body The request body * @return a {@link SwapShiftsChangeRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SwapShiftsChangeRequest post(@jakarta.annotation.Nonnull final SwapShiftsChangeRequest body) { return post(body, null); } /** - * Create an instance of a swapShiftsChangeRequest object. + * Create new navigation property to swapShiftsChangeRequests for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SwapShiftsChangeRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SwapShiftsChangeRequest post(@jakarta.annotation.Nonnull final SwapShiftsChangeRequest body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public SwapShiftsChangeRequest post(@jakarta.annotation.Nonnull final SwapShifts return this.requestAdapter.send(requestInfo, errorMapping, SwapShiftsChangeRequest::createFromDiscriminatorValue); } /** - * Retrieve a list of swapShiftsChangeRequest objects in the team. + * The swap requests for shifts in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of swapShiftsChangeRequest objects in the team. + * The swap requests for shifts in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an instance of a swapShiftsChangeRequest object. + * Create new navigation property to swapShiftsChangeRequests for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an instance of a swapShiftsChangeRequest object. + * Create new navigation property to swapShiftsChangeRequests for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public SwapShiftsChangeRequestsRequestBuilder withUrl(@jakarta.annotation.Nonnul return new SwapShiftsChangeRequestsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of swapShiftsChangeRequest objects in the team. + * The swap requests for shifts in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/swapshiftschangerequests/item/SwapShiftsChangeRequestItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/swapshiftschangerequests/item/SwapShiftsChangeRequestItemRequestBuilder.java index a43cc736be9..bd830a4b2a7 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/swapshiftschangerequests/item/SwapShiftsChangeRequestItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/swapshiftschangerequests/item/SwapShiftsChangeRequestItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a swapShiftsChangeRequest object. + * The swap requests for shifts in the schedule. * @return a {@link SwapShiftsChangeRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SwapShiftsChangeRequest get() { return get(null); } /** - * Retrieve the properties and relationships of a swapShiftsChangeRequest object. + * The swap requests for shifts in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SwapShiftsChangeRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SwapShiftsChangeRequest get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a swapShiftsChangeRequest object. + * The swap requests for shifts in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a swapShiftsChangeRequest object. + * The swap requests for shifts in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public SwapShiftsChangeRequestItemRequestBuilder withUrl(@jakarta.annotation.Non public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a swapShiftsChangeRequest object. + * The swap requests for shifts in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/timeoffreasons/TimeOffReasonsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/timeoffreasons/TimeOffReasonsRequestBuilder.java index f07b4f76e5c..3dd1e6d5c78 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/timeoffreasons/TimeOffReasonsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/timeoffreasons/TimeOffReasonsRequestBuilder.java @@ -60,21 +60,19 @@ public TimeOffReasonsRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/schedule/timeOffReasons{?%24count,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of timeOffReasons in a schedule. + * The set of reasons for a time off in the schedule. * @return a {@link TimeOffReasonCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOffReasonCollectionResponse get() { return get(null); } /** - * Get the list of timeOffReasons in a schedule. + * The set of reasons for a time off in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TimeOffReasonCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOffReasonCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TimeOffReasonCollectionResponse get(@jakarta.annotation.Nullable final ja return this.requestAdapter.send(requestInfo, errorMapping, TimeOffReasonCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new timeOffReason. + * Create new navigation property to timeOffReasons for users * @param body The request body * @return a {@link TimeOffReason} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOffReason post(@jakarta.annotation.Nonnull final TimeOffReason body) { return post(body, null); } /** - * Create a new timeOffReason. + * Create new navigation property to timeOffReasons for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TimeOffReason} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOffReason post(@jakarta.annotation.Nonnull final TimeOffReason body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public TimeOffReason post(@jakarta.annotation.Nonnull final TimeOffReason body, return this.requestAdapter.send(requestInfo, errorMapping, TimeOffReason::createFromDiscriminatorValue); } /** - * Get the list of timeOffReasons in a schedule. + * The set of reasons for a time off in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of timeOffReasons in a schedule. + * The set of reasons for a time off in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new timeOffReason. + * Create new navigation property to timeOffReasons for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new timeOffReason. + * Create new navigation property to timeOffReasons for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public TimeOffReasonsRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new TimeOffReasonsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of timeOffReasons in a schedule. + * The set of reasons for a time off in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/timeoffreasons/item/TimeOffReasonItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/timeoffreasons/item/TimeOffReasonItemRequestBuilder.java index 53787f65ea2..ccd2ee59e32 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/timeoffreasons/item/TimeOffReasonItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/timeoffreasons/item/TimeOffReasonItemRequestBuilder.java @@ -37,18 +37,16 @@ public TimeOffReasonItemRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/schedule/timeOffReasons/{timeOffReason%2Did}{?%24select}", rawUrl); } /** - * Mark a timeOffReason as inactive by setting the isActive property. Every team must include at least one timeoff reason. This method doesn't remove the specified timeOffReason instance. timeOffItem instances that have been assigned this reason remain assigned to this reason. + * Delete navigation property timeOffReasons for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Mark a timeOffReason as inactive by setting the isActive property. Every team must include at least one timeoff reason. This method doesn't remove the specified timeOffReason instance. timeOffItem instances that have been assigned this reason remain assigned to this reason. + * Delete navigation property timeOffReasons for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a timeOffReason object by ID. + * The set of reasons for a time off in the schedule. * @return a {@link TimeOffReason} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOffReason get() { return get(null); } /** - * Retrieve the properties and relationships of a timeOffReason object by ID. + * The set of reasons for a time off in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TimeOffReason} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOffReason get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public TimeOffReason get(@jakarta.annotation.Nullable final java.util.function.C return this.requestAdapter.send(requestInfo, errorMapping, TimeOffReason::createFromDiscriminatorValue); } /** - * Replace an existing timeOffReason. If the specified timeOffReason doesn't exist, this method returns 404 Not found. + * Update the navigation property timeOffReasons in users * @param body The request body * @return a {@link TimeOffReason} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOffReason patch(@jakarta.annotation.Nonnull final TimeOffReason body) { return patch(body, null); } /** - * Replace an existing timeOffReason. If the specified timeOffReason doesn't exist, this method returns 404 Not found. + * Update the navigation property timeOffReasons in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TimeOffReason} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOffReason patch(@jakarta.annotation.Nonnull final TimeOffReason body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public TimeOffReason patch(@jakarta.annotation.Nonnull final TimeOffReason body, return this.requestAdapter.send(requestInfo, errorMapping, TimeOffReason::createFromDiscriminatorValue); } /** - * Mark a timeOffReason as inactive by setting the isActive property. Every team must include at least one timeoff reason. This method doesn't remove the specified timeOffReason instance. timeOffItem instances that have been assigned this reason remain assigned to this reason. + * Delete navigation property timeOffReasons for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Mark a timeOffReason as inactive by setting the isActive property. Every team must include at least one timeoff reason. This method doesn't remove the specified timeOffReason instance. timeOffItem instances that have been assigned this reason remain assigned to this reason. + * Delete navigation property timeOffReasons for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a timeOffReason object by ID. + * The set of reasons for a time off in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a timeOffReason object by ID. + * The set of reasons for a time off in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Replace an existing timeOffReason. If the specified timeOffReason doesn't exist, this method returns 404 Not found. + * Update the navigation property timeOffReasons in users * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Replace an existing timeOffReason. If the specified timeOffReason doesn't exist, this method returns 404 Not found. + * Update the navigation property timeOffReasons in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public TimeOffReasonItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a timeOffReason object by ID. + * The set of reasons for a time off in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/timeoffrequests/TimeOffRequestsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/timeoffrequests/TimeOffRequestsRequestBuilder.java index 1729324e4ea..2584953a20c 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/timeoffrequests/TimeOffRequestsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/timeoffrequests/TimeOffRequestsRequestBuilder.java @@ -60,21 +60,19 @@ public TimeOffRequestsRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/schedule/timeOffRequests{?%24count,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of timeOffRequest objects in the team. + * The time off requests in the schedule. * @return a {@link TimeOffRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOffRequestCollectionResponse get() { return get(null); } /** - * Retrieve a list of timeOffRequest objects in the team. + * The time off requests in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TimeOffRequestCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOffRequestCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public TimeOffRequest post(@jakarta.annotation.Nonnull final TimeOffRequest body return this.requestAdapter.send(requestInfo, errorMapping, TimeOffRequest::createFromDiscriminatorValue); } /** - * Retrieve a list of timeOffRequest objects in the team. + * The time off requests in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of timeOffRequest objects in the team. + * The time off requests in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public TimeOffRequestsRequestBuilder withUrl(@jakarta.annotation.Nonnull final S return new TimeOffRequestsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of timeOffRequest objects in the team. + * The time off requests in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/timeoffrequests/item/TimeOffRequestItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/timeoffrequests/item/TimeOffRequestItemRequestBuilder.java index 67cd864f371..acde64a762c 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/timeoffrequests/item/TimeOffRequestItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/timeoffrequests/item/TimeOffRequestItemRequestBuilder.java @@ -37,18 +37,16 @@ public TimeOffRequestItemRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/schedule/timeOffRequests/{timeOffRequest%2Did}{?%24select}", rawUrl); } /** - * Delete a timeOffRequest object. + * Delete navigation property timeOffRequests for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a timeOffRequest object. + * Delete navigation property timeOffRequests for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a timeoffrequest object. + * The time off requests in the schedule. * @return a {@link TimeOffRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOffRequest get() { return get(null); } /** - * Retrieve the properties and relationships of a timeoffrequest object. + * The time off requests in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TimeOffRequest} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOffRequest get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -106,7 +102,7 @@ public TimeOffRequest patch(@jakarta.annotation.Nonnull final TimeOffRequest bod return this.requestAdapter.send(requestInfo, errorMapping, TimeOffRequest::createFromDiscriminatorValue); } /** - * Delete a timeOffRequest object. + * Delete navigation property timeOffRequests for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -114,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a timeOffRequest object. + * Delete navigation property timeOffRequests for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a timeoffrequest object. + * The time off requests in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a timeoffrequest object. + * The time off requests in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public TimeOffRequestItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fina public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a timeoffrequest object. + * The time off requests in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/timesoff/TimesOffRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/timesoff/TimesOffRequestBuilder.java index 222a55aa2f4..d67e7a4a3b5 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/timesoff/TimesOffRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/timesoff/TimesOffRequestBuilder.java @@ -60,21 +60,19 @@ public TimesOffRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/schedule/timesOff{?%24count,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of timeOff instances in a schedule. + * The instances of times off in the schedule. * @return a {@link TimeOffCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOffCollectionResponse get() { return get(null); } /** - * Get the list of timeOff instances in a schedule. + * The instances of times off in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TimeOffCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOffCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TimeOffCollectionResponse get(@jakarta.annotation.Nullable final java.uti return this.requestAdapter.send(requestInfo, errorMapping, TimeOffCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new timeOff instance in a schedule. + * Create new navigation property to timesOff for users * @param body The request body * @return a {@link TimeOff} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOff post(@jakarta.annotation.Nonnull final TimeOff body) { return post(body, null); } /** - * Create a new timeOff instance in a schedule. + * Create new navigation property to timesOff for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TimeOff} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOff post(@jakarta.annotation.Nonnull final TimeOff body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public TimeOff post(@jakarta.annotation.Nonnull final TimeOff body, @jakarta.ann return this.requestAdapter.send(requestInfo, errorMapping, TimeOff::createFromDiscriminatorValue); } /** - * Get the list of timeOff instances in a schedule. + * The instances of times off in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of timeOff instances in a schedule. + * The instances of times off in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new timeOff instance in a schedule. + * Create new navigation property to timesOff for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new timeOff instance in a schedule. + * Create new navigation property to timesOff for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public TimesOffRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new TimesOffRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of timeOff instances in a schedule. + * The instances of times off in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/timesoff/item/TimeOffItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/timesoff/item/TimeOffItemRequestBuilder.java index 5d25ae53ae6..5004e1b082a 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/timesoff/item/TimeOffItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/schedule/timesoff/item/TimeOffItemRequestBuilder.java @@ -37,18 +37,16 @@ public TimeOffItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/schedule/timesOff/{timeOff%2Did}{?%24select}", rawUrl); } /** - * Delete a timeOff instance from a schedule. + * Delete navigation property timesOff for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a timeOff instance from a schedule. + * Delete navigation property timesOff for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a timeOff object by ID. + * The instances of times off in the schedule. * @return a {@link TimeOff} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOff get() { return get(null); } /** - * Retrieve the properties and relationships of a timeOff object by ID. + * The instances of times off in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TimeOff} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOff get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public TimeOff get(@jakarta.annotation.Nullable final java.util.function.Consume return this.requestAdapter.send(requestInfo, errorMapping, TimeOff::createFromDiscriminatorValue); } /** - * Replace an existing timeOff object. If the specified timeOff object doesn't exist, this method returns 404 Not found. + * Update the navigation property timesOff in users * @param body The request body * @return a {@link TimeOff} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOff patch(@jakarta.annotation.Nonnull final TimeOff body) { return patch(body, null); } /** - * Replace an existing timeOff object. If the specified timeOff object doesn't exist, this method returns 404 Not found. + * Update the navigation property timesOff in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TimeOff} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TimeOff patch(@jakarta.annotation.Nonnull final TimeOff body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public TimeOff patch(@jakarta.annotation.Nonnull final TimeOff body, @jakarta.an return this.requestAdapter.send(requestInfo, errorMapping, TimeOff::createFromDiscriminatorValue); } /** - * Delete a timeOff instance from a schedule. + * Delete navigation property timesOff for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a timeOff instance from a schedule. + * Delete navigation property timesOff for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a timeOff object by ID. + * The instances of times off in the schedule. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a timeOff object by ID. + * The instances of times off in the schedule. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Replace an existing timeOff object. If the specified timeOff object doesn't exist, this method returns 404 Not found. + * Update the navigation property timesOff in users * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Replace an existing timeOff object. If the specified timeOff object doesn't exist, this method returns 404 Not found. + * Update the navigation property timesOff in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public TimeOffItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a timeOff object by ID. + * The instances of times off in the schedule. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/tags/TagsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/tags/TagsRequestBuilder.java index 38319ddec1c..4947bfc2323 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/tags/TagsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/tags/TagsRequestBuilder.java @@ -60,21 +60,19 @@ public TagsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/tags{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the tag objects and their properties. + * The tags associated with the team. * @return a {@link TeamworkTagCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkTagCollectionResponse get() { return get(null); } /** - * Get a list of the tag objects and their properties. + * The tags associated with the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamworkTagCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkTagCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TeamworkTagCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, TeamworkTagCollectionResponse::createFromDiscriminatorValue); } /** - * Create a standard tag for members in a team. + * Create new navigation property to tags for users * @param body The request body * @return a {@link TeamworkTag} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkTag post(@jakarta.annotation.Nonnull final TeamworkTag body) { return post(body, null); } /** - * Create a standard tag for members in a team. + * Create new navigation property to tags for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamworkTag} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkTag post(@jakarta.annotation.Nonnull final TeamworkTag body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public TeamworkTag post(@jakarta.annotation.Nonnull final TeamworkTag body, @jak return this.requestAdapter.send(requestInfo, errorMapping, TeamworkTag::createFromDiscriminatorValue); } /** - * Get a list of the tag objects and their properties. + * The tags associated with the team. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the tag objects and their properties. + * The tags associated with the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a standard tag for members in a team. + * Create new navigation property to tags for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a standard tag for members in a team. + * Create new navigation property to tags for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public TagsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawUr return new TagsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the tag objects and their properties. + * The tags associated with the team. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/tags/item/TeamworkTagItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/tags/item/TeamworkTagItemRequestBuilder.java index c3a087ecaf1..5b89c337606 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/tags/item/TeamworkTagItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/tags/item/TeamworkTagItemRequestBuilder.java @@ -46,18 +46,16 @@ public TeamworkTagItemRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/tags/{teamworkTag%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a tag object permanently. + * Delete navigation property tags for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a tag object permanently. + * Delete navigation property tags for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a tag object. + * The tags associated with the team. * @return a {@link TeamworkTag} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkTag get() { return get(null); } /** - * Read the properties and relationships of a tag object. + * The tags associated with the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamworkTag} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkTag get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,23 +86,21 @@ public TeamworkTag get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.send(requestInfo, errorMapping, TeamworkTag::createFromDiscriminatorValue); } /** - * Update the properties of a tag object. + * Update the navigation property tags in users * @param body The request body * @return a {@link TeamworkTag} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkTag patch(@jakarta.annotation.Nonnull final TeamworkTag body) { return patch(body, null); } /** - * Update the properties of a tag object. + * Update the navigation property tags in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamworkTag} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkTag patch(@jakarta.annotation.Nonnull final TeamworkTag body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -117,7 +111,7 @@ public TeamworkTag patch(@jakarta.annotation.Nonnull final TeamworkTag body, @ja return this.requestAdapter.send(requestInfo, errorMapping, TeamworkTag::createFromDiscriminatorValue); } /** - * Delete a tag object permanently. + * Delete navigation property tags for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -125,7 +119,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a tag object permanently. + * Delete navigation property tags for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -137,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a tag object. + * The tags associated with the team. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -145,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a tag object. + * The tags associated with the team. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a tag object. + * Update the navigation property tags in users * @param body The request body * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a tag object. + * Update the navigation property tags in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -197,7 +191,7 @@ public TeamworkTagItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final S public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a tag object. + * The tags associated with the team. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/tags/item/members/MembersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/tags/item/members/MembersRequestBuilder.java index d15da0b219a..f096cc606d1 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/tags/item/members/MembersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/tags/item/members/MembersRequestBuilder.java @@ -60,21 +60,19 @@ public MembersRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/tags/{teamworkTag%2Did}/members{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the members of a standard tag in a team and their properties. + * Users assigned to the tag. * @return a {@link TeamworkTagMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkTagMemberCollectionResponse get() { return get(null); } /** - * Get a list of the members of a standard tag in a team and their properties. + * Users assigned to the tag. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamworkTagMemberCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkTagMemberCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public TeamworkTagMemberCollectionResponse get(@jakarta.annotation.Nullable fina return this.requestAdapter.send(requestInfo, errorMapping, TeamworkTagMemberCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new teamworkTagMember object in a team. + * Create new navigation property to members for users * @param body The request body * @return a {@link TeamworkTagMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkTagMember post(@jakarta.annotation.Nonnull final TeamworkTagMember body) { return post(body, null); } /** - * Create a new teamworkTagMember object in a team. + * Create new navigation property to members for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamworkTagMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkTagMember post(@jakarta.annotation.Nonnull final TeamworkTagMember body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public TeamworkTagMember post(@jakarta.annotation.Nonnull final TeamworkTagMembe return this.requestAdapter.send(requestInfo, errorMapping, TeamworkTagMember::createFromDiscriminatorValue); } /** - * Get a list of the members of a standard tag in a team and their properties. + * Users assigned to the tag. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the members of a standard tag in a team and their properties. + * Users assigned to the tag. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new teamworkTagMember object in a team. + * Create new navigation property to members for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new teamworkTagMember object in a team. + * Create new navigation property to members for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public MembersRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new MembersRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the members of a standard tag in a team and their properties. + * Users assigned to the tag. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/tags/item/members/item/TeamworkTagMemberItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/tags/item/members/item/TeamworkTagMemberItemRequestBuilder.java index 36eb66040ee..7b02efff525 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/tags/item/members/item/TeamworkTagMemberItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/joinedteams/item/tags/item/members/item/TeamworkTagMemberItemRequestBuilder.java @@ -37,18 +37,16 @@ public TeamworkTagMemberItemRequestBuilder(@jakarta.annotation.Nonnull final Str super(requestAdapter, "{+baseurl}/users/{user%2Did}/joinedTeams/{team%2Did}/tags/{teamworkTag%2Did}/members/{teamworkTagMember%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a member from a standard tag in a team. + * Delete navigation property members for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a member from a standard tag in a team. + * Delete navigation property members for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the properties and relationships of a member of a standard tag in a team. + * Users assigned to the tag. * @return a {@link TeamworkTagMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkTagMember get() { return get(null); } /** - * Get the properties and relationships of a member of a standard tag in a team. + * Users assigned to the tag. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamworkTagMember} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TeamworkTagMember get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -106,7 +102,7 @@ public TeamworkTagMember patch(@jakarta.annotation.Nonnull final TeamworkTagMemb return this.requestAdapter.send(requestInfo, errorMapping, TeamworkTagMember::createFromDiscriminatorValue); } /** - * Delete a member from a standard tag in a team. + * Delete navigation property members for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -114,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a member from a standard tag in a team. + * Delete navigation property members for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the properties and relationships of a member of a standard tag in a team. + * Users assigned to the tag. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the properties and relationships of a member of a standard tag in a team. + * Users assigned to the tag. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public TeamworkTagMemberItemRequestBuilder withUrl(@jakarta.annotation.Nonnull f public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the properties and relationships of a member of a standard tag in a team. + * Users assigned to the tag. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/licensedetails/LicenseDetailsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/licensedetails/LicenseDetailsRequestBuilder.java index 98e842c9483..1c14eac915a 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/licensedetails/LicenseDetailsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/licensedetails/LicenseDetailsRequestBuilder.java @@ -69,21 +69,19 @@ public LicenseDetailsRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/users/{user%2Did}/licenseDetails{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of licenseDetails objects for enterprise users. This API returns details for licenses that are directly assigned and those transitively assigned through memberships in licensed groups. + * A collection of this user's license details. Read-only. * @return a {@link LicenseDetailsCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LicenseDetailsCollectionResponse get() { return get(null); } /** - * Retrieve a list of licenseDetails objects for enterprise users. This API returns details for licenses that are directly assigned and those transitively assigned through memberships in licensed groups. + * A collection of this user's license details. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link LicenseDetailsCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LicenseDetailsCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -118,7 +116,7 @@ public LicenseDetails post(@jakarta.annotation.Nonnull final LicenseDetails body return this.requestAdapter.send(requestInfo, errorMapping, LicenseDetails::createFromDiscriminatorValue); } /** - * Retrieve a list of licenseDetails objects for enterprise users. This API returns details for licenses that are directly assigned and those transitively assigned through memberships in licensed groups. + * A collection of this user's license details. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -126,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of licenseDetails objects for enterprise users. This API returns details for licenses that are directly assigned and those transitively assigned through memberships in licensed groups. + * A collection of this user's license details. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -172,7 +170,7 @@ public LicenseDetailsRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new LicenseDetailsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of licenseDetails objects for enterprise users. This API returns details for licenses that are directly assigned and those transitively assigned through memberships in licensed groups. + * A collection of this user's license details. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/licensedetails/getteamslicensingdetails/GetTeamsLicensingDetailsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/licensedetails/getteamslicensingdetails/GetTeamsLicensingDetailsRequestBuilder.java index 25f7757d62e..3f631a2ff78 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/licensedetails/getteamslicensingdetails/GetTeamsLicensingDetailsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/licensedetails/getteamslicensingdetails/GetTeamsLicensingDetailsRequestBuilder.java @@ -36,19 +36,21 @@ public GetTeamsLicensingDetailsRequestBuilder(@jakarta.annotation.Nonnull final super(requestAdapter, "{+baseurl}/users/{user%2Did}/licenseDetails/getTeamsLicensingDetails()", rawUrl); } /** - * Invoke function getTeamsLicensingDetails + * Get the license status of a user in Microsoft Teams. * @return a {@link TeamsLicensingDetails} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public TeamsLicensingDetails get() { return get(null); } /** - * Invoke function getTeamsLicensingDetails + * Get the license status of a user in Microsoft Teams. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TeamsLicensingDetails} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public TeamsLicensingDetails get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public TeamsLicensingDetails get(@jakarta.annotation.Nullable final java.util.fu return this.requestAdapter.send(requestInfo, errorMapping, TeamsLicensingDetails::createFromDiscriminatorValue); } /** - * Invoke function getTeamsLicensingDetails + * Get the license status of a user in Microsoft Teams. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getTeamsLicensingDetails + * Get the license status of a user in Microsoft Teams. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/MailFoldersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/MailFoldersRequestBuilder.java index c0dac0a85f4..2823b14092e 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/MailFoldersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/MailFoldersRequestBuilder.java @@ -72,7 +72,6 @@ public MailFoldersRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl * The user's mail folders. Read-only. Nullable. * @return a {@link MailFolderCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MailFolderCollectionResponse get() { @@ -83,7 +82,6 @@ public MailFolderCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MailFolderCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MailFolderCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public MailFolderCollectionResponse get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, MailFolderCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to create a new mail folder in the root folder of the user's mailbox. If you intend a new folder to be hidden, you must set the isHidden property to true on creation. + * Create new navigation property to mailFolders for users * @param body The request body * @return a {@link MailFolder} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MailFolder post(@jakarta.annotation.Nonnull final MailFolder body) { return post(body, null); } /** - * Use this API to create a new mail folder in the root folder of the user's mailbox. If you intend a new folder to be hidden, you must set the isHidden property to true on creation. + * Create new navigation property to mailFolders for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MailFolder} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MailFolder post(@jakarta.annotation.Nonnull final MailFolder body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to create a new mail folder in the root folder of the user's mailbox. If you intend a new folder to be hidden, you must set the isHidden property to true on creation. + * Create new navigation property to mailFolders for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to create a new mail folder in the root folder of the user's mailbox. If you intend a new folder to be hidden, you must set the isHidden property to true on creation. + * Create new navigation property to mailFolders for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/MailFolderItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/MailFolderItemRequestBuilder.java index 8eb38dd93f9..6a12aa810c9 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/MailFolderItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/MailFolderItemRequestBuilder.java @@ -82,18 +82,16 @@ public MailFolderItemRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/users/{user%2Did}/mailFolders/{mailFolder%2Did}{?%24expand,%24select,includeHiddenFolders*}", rawUrl); } /** - * Delete the specified mailFolder. The folder can be a mailSearchFolder. You can specify a mail folder by its folder ID, or by its well-known folder name, if one exists. + * Delete navigation property mailFolders for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete the specified mailFolder. The folder can be a mailSearchFolder. You can specify a mail folder by its folder ID, or by its well-known folder name, if one exists. + * Delete navigation property mailFolders for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -105,7 +103,6 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume * The user's mail folders. Read-only. Nullable. * @return a {@link MailFolder} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MailFolder get() { @@ -116,7 +113,6 @@ public MailFolder get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MailFolder} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MailFolder get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,23 +122,21 @@ public MailFolder get(@jakarta.annotation.Nullable final java.util.function.Cons return this.requestAdapter.send(requestInfo, errorMapping, MailFolder::createFromDiscriminatorValue); } /** - * Update the properties of mailfolder object. + * Update the navigation property mailFolders in users * @param body The request body * @return a {@link MailFolder} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MailFolder patch(@jakarta.annotation.Nonnull final MailFolder body) { return patch(body, null); } /** - * Update the properties of mailfolder object. + * Update the navigation property mailFolders in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MailFolder} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MailFolder patch(@jakarta.annotation.Nonnull final MailFolder body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -153,7 +147,7 @@ public MailFolder patch(@jakarta.annotation.Nonnull final MailFolder body, @jaka return this.requestAdapter.send(requestInfo, errorMapping, MailFolder::createFromDiscriminatorValue); } /** - * Delete the specified mailFolder. The folder can be a mailSearchFolder. You can specify a mail folder by its folder ID, or by its well-known folder name, if one exists. + * Delete navigation property mailFolders for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -161,7 +155,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete the specified mailFolder. The folder can be a mailSearchFolder. You can specify a mail folder by its folder ID, or by its well-known folder name, if one exists. + * Delete navigation property mailFolders for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +187,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of mailfolder object. + * Update the navigation property mailFolders in users * @param body The request body * @return a {@link RequestInformation} */ @@ -202,7 +196,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of mailfolder object. + * Update the navigation property mailFolders in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/childfolders/ChildFoldersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/childfolders/ChildFoldersRequestBuilder.java index 4a5b441453f..4cf3963386c 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/childfolders/ChildFoldersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/childfolders/ChildFoldersRequestBuilder.java @@ -72,7 +72,6 @@ public ChildFoldersRequestBuilder(@jakarta.annotation.Nonnull final String rawUr * The collection of child folders in the mailFolder. * @return a {@link MailFolderCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MailFolderCollectionResponse get() { @@ -83,7 +82,6 @@ public MailFolderCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MailFolderCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MailFolderCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public MailFolderCollectionResponse get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, MailFolderCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to create a new child mailFolder. If you intend a new folder to be hidden, you must set the isHidden property to true on creation. + * Create new navigation property to childFolders for users * @param body The request body * @return a {@link MailFolder} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MailFolder post(@jakarta.annotation.Nonnull final MailFolder body) { return post(body, null); } /** - * Use this API to create a new child mailFolder. If you intend a new folder to be hidden, you must set the isHidden property to true on creation. + * Create new navigation property to childFolders for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MailFolder} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MailFolder post(@jakarta.annotation.Nonnull final MailFolder body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to create a new child mailFolder. If you intend a new folder to be hidden, you must set the isHidden property to true on creation. + * Create new navigation property to childFolders for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to create a new child mailFolder. If you intend a new folder to be hidden, you must set the isHidden property to true on creation. + * Create new navigation property to childFolders for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/childfolders/item/messagerules/MessageRulesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/childfolders/item/messagerules/MessageRulesRequestBuilder.java index 00c743b8fc9..61ffda8c093 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/childfolders/item/messagerules/MessageRulesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/childfolders/item/messagerules/MessageRulesRequestBuilder.java @@ -60,21 +60,19 @@ public MessageRulesRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/users/{user%2Did}/mailFolders/{mailFolder%2Did}/childFolders/{mailFolder%2Did1}/messageRules{?%24count,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get all the messageRule objects defined for the user's inbox. + * The collection of rules that apply to the user's Inbox folder. * @return a {@link MessageRuleCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MessageRuleCollectionResponse get() { return get(null); } /** - * Get all the messageRule objects defined for the user's inbox. + * The collection of rules that apply to the user's Inbox folder. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MessageRuleCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MessageRuleCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public MessageRuleCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, MessageRuleCollectionResponse::createFromDiscriminatorValue); } /** - * Create a messageRule object by specifying a set of conditions and actions. Outlook carries out those actions if an incoming message in the user's Inbox meets the specified conditions. + * Create new navigation property to messageRules for users * @param body The request body * @return a {@link MessageRule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MessageRule post(@jakarta.annotation.Nonnull final MessageRule body) { return post(body, null); } /** - * Create a messageRule object by specifying a set of conditions and actions. Outlook carries out those actions if an incoming message in the user's Inbox meets the specified conditions. + * Create new navigation property to messageRules for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MessageRule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MessageRule post(@jakarta.annotation.Nonnull final MessageRule body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public MessageRule post(@jakarta.annotation.Nonnull final MessageRule body, @jak return this.requestAdapter.send(requestInfo, errorMapping, MessageRule::createFromDiscriminatorValue); } /** - * Get all the messageRule objects defined for the user's inbox. + * The collection of rules that apply to the user's Inbox folder. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get all the messageRule objects defined for the user's inbox. + * The collection of rules that apply to the user's Inbox folder. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a messageRule object by specifying a set of conditions and actions. Outlook carries out those actions if an incoming message in the user's Inbox meets the specified conditions. + * Create new navigation property to messageRules for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a messageRule object by specifying a set of conditions and actions. Outlook carries out those actions if an incoming message in the user's Inbox meets the specified conditions. + * Create new navigation property to messageRules for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public MessageRulesRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri return new MessageRulesRequestBuilder(rawUrl, requestAdapter); } /** - * Get all the messageRule objects defined for the user's inbox. + * The collection of rules that apply to the user's Inbox folder. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/childfolders/item/messagerules/item/MessageRuleItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/childfolders/item/messagerules/item/MessageRuleItemRequestBuilder.java index cbffcc29e65..72b8cf12b3c 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/childfolders/item/messagerules/item/MessageRuleItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/childfolders/item/messagerules/item/MessageRuleItemRequestBuilder.java @@ -37,18 +37,16 @@ public MessageRuleItemRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/users/{user%2Did}/mailFolders/{mailFolder%2Did}/childFolders/{mailFolder%2Did1}/messageRules/{messageRule%2Did}{?%24select}", rawUrl); } /** - * Delete the specified messageRule object. + * Delete navigation property messageRules for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete the specified messageRule object. + * Delete navigation property messageRules for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the properties and relationships of a messageRule object. + * The collection of rules that apply to the user's Inbox folder. * @return a {@link MessageRule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MessageRule get() { return get(null); } /** - * Get the properties and relationships of a messageRule object. + * The collection of rules that apply to the user's Inbox folder. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MessageRule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MessageRule get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public MessageRule get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.send(requestInfo, errorMapping, MessageRule::createFromDiscriminatorValue); } /** - * Change writable properties on a messageRule object and save the changes. + * Update the navigation property messageRules in users * @param body The request body * @return a {@link MessageRule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MessageRule patch(@jakarta.annotation.Nonnull final MessageRule body) { return patch(body, null); } /** - * Change writable properties on a messageRule object and save the changes. + * Update the navigation property messageRules in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MessageRule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MessageRule patch(@jakarta.annotation.Nonnull final MessageRule body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public MessageRule patch(@jakarta.annotation.Nonnull final MessageRule body, @ja return this.requestAdapter.send(requestInfo, errorMapping, MessageRule::createFromDiscriminatorValue); } /** - * Delete the specified messageRule object. + * Delete navigation property messageRules for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete the specified messageRule object. + * Delete navigation property messageRules for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the properties and relationships of a messageRule object. + * The collection of rules that apply to the user's Inbox folder. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the properties and relationships of a messageRule object. + * The collection of rules that apply to the user's Inbox folder. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Change writable properties on a messageRule object and save the changes. + * Update the navigation property messageRules in users * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Change writable properties on a messageRule object and save the changes. + * Update the navigation property messageRules in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public MessageRuleItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final S public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the properties and relationships of a messageRule object. + * The collection of rules that apply to the user's Inbox folder. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/childfolders/item/messages/MessagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/childfolders/item/messages/MessagesRequestBuilder.java index 035767ee0c1..42524499e15 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/childfolders/item/messages/MessagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/childfolders/item/messages/MessagesRequestBuilder.java @@ -69,21 +69,19 @@ public MessagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/users/{user%2Did}/mailFolders/{mailFolder%2Did}/childFolders/{mailFolder%2Did1}/messages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get all the messages in the specified user's mailbox, or those messages in a specified folder in the mailbox. + * The collection of messages in the mailFolder. * @return a {@link MessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MessageCollectionResponse get() { return get(null); } /** - * Get all the messages in the specified user's mailbox, or those messages in a specified folder in the mailbox. + * The collection of messages in the mailFolder. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MessageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public MessageCollectionResponse get(@jakarta.annotation.Nullable final java.uti return this.requestAdapter.send(requestInfo, errorMapping, MessageCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to create a new Message in a mailfolder. + * Create new navigation property to messages for users * @param body The request body * @return a {@link Message} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Message post(@jakarta.annotation.Nonnull final Message body) { return post(body, null); } /** - * Use this API to create a new Message in a mailfolder. + * Create new navigation property to messages for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Message} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Message post(@jakarta.annotation.Nonnull final Message body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public Message post(@jakarta.annotation.Nonnull final Message body, @jakarta.ann return this.requestAdapter.send(requestInfo, errorMapping, Message::createFromDiscriminatorValue); } /** - * Get all the messages in the specified user's mailbox, or those messages in a specified folder in the mailbox. + * The collection of messages in the mailFolder. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get all the messages in the specified user's mailbox, or those messages in a specified folder in the mailbox. + * The collection of messages in the mailFolder. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to create a new Message in a mailfolder. + * Create new navigation property to messages for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to create a new Message in a mailfolder. + * Create new navigation property to messages for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public MessagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new MessagesRequestBuilder(rawUrl, requestAdapter); } /** - * Get all the messages in the specified user's mailbox, or those messages in a specified folder in the mailbox. + * The collection of messages in the mailFolder. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/childfolders/item/messages/item/attachments/AttachmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/childfolders/item/messages/item/attachments/AttachmentsRequestBuilder.java index b84eafd6d39..7b5f0d5ae67 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/childfolders/item/messages/item/attachments/AttachmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/childfolders/item/messages/item/attachments/AttachmentsRequestBuilder.java @@ -69,21 +69,19 @@ public AttachmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/users/{user%2Did}/mailFolders/{mailFolder%2Did}/childFolders/{mailFolder%2Did1}/messages/{message%2Did}/attachments{?%24count,%24expand,%24filter,%24orderby,%24select}", rawUrl); } /** - * Retrieve a list of attachment objects. + * The fileAttachment and itemAttachment attachments for the message. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get() { return get(null); } /** - * Retrieve a list of attachment objects. + * The fileAttachment and itemAttachment attachments for the message. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, AttachmentCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to add an attachment to a message. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. You can add an attachment to an existing message by posting to its attachments collection, or you canadd an attachment to a message that is being created and sent on the fly. This operation limits the size of the attachment you can add to under 3 MB. + * Create new navigation property to attachments for users * @param body The request body * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body) { return post(body, null); } /** - * Use this API to add an attachment to a message. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. You can add an attachment to an existing message by posting to its attachments collection, or you canadd an attachment to a message that is being created and sent on the fly. This operation limits the size of the attachment you can add to under 3 MB. + * Create new navigation property to attachments for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Retrieve a list of attachment objects. + * The fileAttachment and itemAttachment attachments for the message. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of attachment objects. + * The fileAttachment and itemAttachment attachments for the message. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to add an attachment to a message. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. You can add an attachment to an existing message by posting to its attachments collection, or you canadd an attachment to a message that is being created and sent on the fly. This operation limits the size of the attachment you can add to under 3 MB. + * Create new navigation property to attachments for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to add an attachment to a message. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. You can add an attachment to an existing message by posting to its attachments collection, or you canadd an attachment to a message that is being created and sent on the fly. This operation limits the size of the attachment you can add to under 3 MB. + * Create new navigation property to attachments for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public AttachmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AttachmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of attachment objects. + * The fileAttachment and itemAttachment attachments for the message. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/childfolders/item/messages/item/attachments/item/AttachmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/childfolders/item/messages/item/attachments/item/AttachmentItemRequestBuilder.java index 4284b1cc5ae..2a82e2b0e21 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/childfolders/item/messages/item/attachments/item/AttachmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/childfolders/item/messages/item/attachments/item/AttachmentItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties, relationships, or raw contents of an attachment that is attached to a user event, message, or group post. An attachment can be one of the following types: All these types of attachments are derived from the attachment resource. + * The fileAttachment and itemAttachment attachments for the message. * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment get() { return get(null); } /** - * Read the properties, relationships, or raw contents of an attachment that is attached to a user event, message, or group post. An attachment can be one of the following types: All these types of attachments are derived from the attachment resource. + * The fileAttachment and itemAttachment attachments for the message. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -99,7 +97,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties, relationships, or raw contents of an attachment that is attached to a user event, message, or group post. An attachment can be one of the following types: All these types of attachments are derived from the attachment resource. + * The fileAttachment and itemAttachment attachments for the message. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -107,7 +105,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties, relationships, or raw contents of an attachment that is attached to a user event, message, or group post. An attachment can be one of the following types: All these types of attachments are derived from the attachment resource. + * The fileAttachment and itemAttachment attachments for the message. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -135,7 +133,7 @@ public AttachmentItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final St public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties, relationships, or raw contents of an attachment that is attached to a user event, message, or group post. An attachment can be one of the following types: All these types of attachments are derived from the attachment resource. + * The fileAttachment and itemAttachment attachments for the message. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/childfolders/item/messages/item/extensions/ExtensionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/childfolders/item/messages/item/extensions/ExtensionsRequestBuilder.java index 16329914dc9..febcbedee8c 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/childfolders/item/messages/item/extensions/ExtensionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/childfolders/item/messages/item/extensions/ExtensionsRequestBuilder.java @@ -60,7 +60,7 @@ public ExtensionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/users/{user%2Did}/mailFolders/{mailFolder%2Did}/childFolders/{mailFolder%2Did1}/messages/{message%2Did}/extensions{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the message. Nullable. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public ExtensionCollectionResponse get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the message. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -82,23 +82,21 @@ public ExtensionCollectionResponse get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, ExtensionCollectionResponse::createFromDiscriminatorValue); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body) { return post(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, Extension::createFromDiscriminatorValue); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the message. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the message. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -129,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @return a {@link RequestInformation} */ @@ -138,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -163,7 +161,7 @@ public ExtensionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ExtensionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the message. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/childfolders/item/messages/item/extensions/item/ExtensionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/childfolders/item/messages/item/extensions/item/ExtensionItemRequestBuilder.java index 5d64be0c4af..24875f214c4 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/childfolders/item/messages/item/extensions/item/ExtensionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/childfolders/item/messages/item/extensions/item/ExtensionItemRequestBuilder.java @@ -37,18 +37,16 @@ public ExtensionItemRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/users/{user%2Did}/mailFolders/{mailFolder%2Did}/childFolders/{mailFolder%2Did1}/messages/{message%2Did}/extensions/{extension%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an open extension (openTypeExtension object) from the specified instance of a resource. For the list of resources that support open extensions, see the table in the Permissions section. + * Delete navigation property extensions for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an open extension (openTypeExtension object) from the specified instance of a resource. For the list of resources that support open extensions, see the table in the Permissions section. + * Delete navigation property extensions for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the message. Nullable. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the message. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -106,7 +102,7 @@ public Extension patch(@jakarta.annotation.Nonnull final Extension body, @jakart return this.requestAdapter.send(requestInfo, errorMapping, Extension::createFromDiscriminatorValue); } /** - * Delete an open extension (openTypeExtension object) from the specified instance of a resource. For the list of resources that support open extensions, see the table in the Permissions section. + * Delete navigation property extensions for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -114,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an open extension (openTypeExtension object) from the specified instance of a resource. For the list of resources that support open extensions, see the table in the Permissions section. + * Delete navigation property extensions for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the message. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the message. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public ExtensionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the message. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/childfolders/item/messages/item/value/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/childfolders/item/messages/item/value/ContentRequestBuilder.java index f0082246eca..27eff701dd4 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/childfolders/item/messages/item/value/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/childfolders/item/messages/item/value/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * Get media content for the navigation property messages from users * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/messagerules/MessageRulesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/messagerules/MessageRulesRequestBuilder.java index b52409d4698..dbde0ca9bf5 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/messagerules/MessageRulesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/messagerules/MessageRulesRequestBuilder.java @@ -60,21 +60,19 @@ public MessageRulesRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/users/{user%2Did}/mailFolders/{mailFolder%2Did}/messageRules{?%24count,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get all the messageRule objects defined for the user's inbox. + * The collection of rules that apply to the user's Inbox folder. * @return a {@link MessageRuleCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MessageRuleCollectionResponse get() { return get(null); } /** - * Get all the messageRule objects defined for the user's inbox. + * The collection of rules that apply to the user's Inbox folder. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MessageRuleCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MessageRuleCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public MessageRuleCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, MessageRuleCollectionResponse::createFromDiscriminatorValue); } /** - * Create a messageRule object by specifying a set of conditions and actions. Outlook carries out those actions if an incoming message in the user's Inbox meets the specified conditions. + * Create new navigation property to messageRules for users * @param body The request body * @return a {@link MessageRule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MessageRule post(@jakarta.annotation.Nonnull final MessageRule body) { return post(body, null); } /** - * Create a messageRule object by specifying a set of conditions and actions. Outlook carries out those actions if an incoming message in the user's Inbox meets the specified conditions. + * Create new navigation property to messageRules for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MessageRule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MessageRule post(@jakarta.annotation.Nonnull final MessageRule body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public MessageRule post(@jakarta.annotation.Nonnull final MessageRule body, @jak return this.requestAdapter.send(requestInfo, errorMapping, MessageRule::createFromDiscriminatorValue); } /** - * Get all the messageRule objects defined for the user's inbox. + * The collection of rules that apply to the user's Inbox folder. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get all the messageRule objects defined for the user's inbox. + * The collection of rules that apply to the user's Inbox folder. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a messageRule object by specifying a set of conditions and actions. Outlook carries out those actions if an incoming message in the user's Inbox meets the specified conditions. + * Create new navigation property to messageRules for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a messageRule object by specifying a set of conditions and actions. Outlook carries out those actions if an incoming message in the user's Inbox meets the specified conditions. + * Create new navigation property to messageRules for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public MessageRulesRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri return new MessageRulesRequestBuilder(rawUrl, requestAdapter); } /** - * Get all the messageRule objects defined for the user's inbox. + * The collection of rules that apply to the user's Inbox folder. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/messagerules/item/MessageRuleItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/messagerules/item/MessageRuleItemRequestBuilder.java index 2062f7524dc..40b4bed3dae 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/messagerules/item/MessageRuleItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/messagerules/item/MessageRuleItemRequestBuilder.java @@ -37,18 +37,16 @@ public MessageRuleItemRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/users/{user%2Did}/mailFolders/{mailFolder%2Did}/messageRules/{messageRule%2Did}{?%24select}", rawUrl); } /** - * Delete the specified messageRule object. + * Delete navigation property messageRules for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete the specified messageRule object. + * Delete navigation property messageRules for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the properties and relationships of a messageRule object. + * The collection of rules that apply to the user's Inbox folder. * @return a {@link MessageRule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MessageRule get() { return get(null); } /** - * Get the properties and relationships of a messageRule object. + * The collection of rules that apply to the user's Inbox folder. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MessageRule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MessageRule get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public MessageRule get(@jakarta.annotation.Nullable final java.util.function.Con return this.requestAdapter.send(requestInfo, errorMapping, MessageRule::createFromDiscriminatorValue); } /** - * Change writable properties on a messageRule object and save the changes. + * Update the navigation property messageRules in users * @param body The request body * @return a {@link MessageRule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MessageRule patch(@jakarta.annotation.Nonnull final MessageRule body) { return patch(body, null); } /** - * Change writable properties on a messageRule object and save the changes. + * Update the navigation property messageRules in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MessageRule} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MessageRule patch(@jakarta.annotation.Nonnull final MessageRule body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public MessageRule patch(@jakarta.annotation.Nonnull final MessageRule body, @ja return this.requestAdapter.send(requestInfo, errorMapping, MessageRule::createFromDiscriminatorValue); } /** - * Delete the specified messageRule object. + * Delete navigation property messageRules for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete the specified messageRule object. + * Delete navigation property messageRules for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the properties and relationships of a messageRule object. + * The collection of rules that apply to the user's Inbox folder. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the properties and relationships of a messageRule object. + * The collection of rules that apply to the user's Inbox folder. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Change writable properties on a messageRule object and save the changes. + * Update the navigation property messageRules in users * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Change writable properties on a messageRule object and save the changes. + * Update the navigation property messageRules in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public MessageRuleItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final S public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the properties and relationships of a messageRule object. + * The collection of rules that apply to the user's Inbox folder. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/messages/MessagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/messages/MessagesRequestBuilder.java index ae0cfe62ac2..274ab35e7e0 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/messages/MessagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/messages/MessagesRequestBuilder.java @@ -69,21 +69,19 @@ public MessagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/users/{user%2Did}/mailFolders/{mailFolder%2Did}/messages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get all the messages in the specified user's mailbox, or those messages in a specified folder in the mailbox. + * The collection of messages in the mailFolder. * @return a {@link MessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MessageCollectionResponse get() { return get(null); } /** - * Get all the messages in the specified user's mailbox, or those messages in a specified folder in the mailbox. + * The collection of messages in the mailFolder. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MessageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public MessageCollectionResponse get(@jakarta.annotation.Nullable final java.uti return this.requestAdapter.send(requestInfo, errorMapping, MessageCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to create a new Message in a mailfolder. + * Create new navigation property to messages for users * @param body The request body * @return a {@link Message} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Message post(@jakarta.annotation.Nonnull final Message body) { return post(body, null); } /** - * Use this API to create a new Message in a mailfolder. + * Create new navigation property to messages for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Message} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Message post(@jakarta.annotation.Nonnull final Message body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public Message post(@jakarta.annotation.Nonnull final Message body, @jakarta.ann return this.requestAdapter.send(requestInfo, errorMapping, Message::createFromDiscriminatorValue); } /** - * Get all the messages in the specified user's mailbox, or those messages in a specified folder in the mailbox. + * The collection of messages in the mailFolder. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get all the messages in the specified user's mailbox, or those messages in a specified folder in the mailbox. + * The collection of messages in the mailFolder. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to create a new Message in a mailfolder. + * Create new navigation property to messages for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to create a new Message in a mailfolder. + * Create new navigation property to messages for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public MessagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new MessagesRequestBuilder(rawUrl, requestAdapter); } /** - * Get all the messages in the specified user's mailbox, or those messages in a specified folder in the mailbox. + * The collection of messages in the mailFolder. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/messages/item/attachments/AttachmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/messages/item/attachments/AttachmentsRequestBuilder.java index b015c63037b..a64136e785f 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/messages/item/attachments/AttachmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/messages/item/attachments/AttachmentsRequestBuilder.java @@ -69,21 +69,19 @@ public AttachmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/users/{user%2Did}/mailFolders/{mailFolder%2Did}/messages/{message%2Did}/attachments{?%24count,%24expand,%24filter,%24orderby,%24select}", rawUrl); } /** - * Retrieve a list of attachment objects. + * The fileAttachment and itemAttachment attachments for the message. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get() { return get(null); } /** - * Retrieve a list of attachment objects. + * The fileAttachment and itemAttachment attachments for the message. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, AttachmentCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to add an attachment to a message. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. You can add an attachment to an existing message by posting to its attachments collection, or you canadd an attachment to a message that is being created and sent on the fly. This operation limits the size of the attachment you can add to under 3 MB. + * Create new navigation property to attachments for users * @param body The request body * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body) { return post(body, null); } /** - * Use this API to add an attachment to a message. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. You can add an attachment to an existing message by posting to its attachments collection, or you canadd an attachment to a message that is being created and sent on the fly. This operation limits the size of the attachment you can add to under 3 MB. + * Create new navigation property to attachments for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Retrieve a list of attachment objects. + * The fileAttachment and itemAttachment attachments for the message. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of attachment objects. + * The fileAttachment and itemAttachment attachments for the message. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to add an attachment to a message. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. You can add an attachment to an existing message by posting to its attachments collection, or you canadd an attachment to a message that is being created and sent on the fly. This operation limits the size of the attachment you can add to under 3 MB. + * Create new navigation property to attachments for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to add an attachment to a message. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. You can add an attachment to an existing message by posting to its attachments collection, or you canadd an attachment to a message that is being created and sent on the fly. This operation limits the size of the attachment you can add to under 3 MB. + * Create new navigation property to attachments for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public AttachmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AttachmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of attachment objects. + * The fileAttachment and itemAttachment attachments for the message. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/messages/item/attachments/item/AttachmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/messages/item/attachments/item/AttachmentItemRequestBuilder.java index a9e7de7e5fd..d73c2fce698 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/messages/item/attachments/item/AttachmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/messages/item/attachments/item/AttachmentItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties, relationships, or raw contents of an attachment that is attached to a user event, message, or group post. An attachment can be one of the following types: All these types of attachments are derived from the attachment resource. + * The fileAttachment and itemAttachment attachments for the message. * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment get() { return get(null); } /** - * Read the properties, relationships, or raw contents of an attachment that is attached to a user event, message, or group post. An attachment can be one of the following types: All these types of attachments are derived from the attachment resource. + * The fileAttachment and itemAttachment attachments for the message. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -99,7 +97,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties, relationships, or raw contents of an attachment that is attached to a user event, message, or group post. An attachment can be one of the following types: All these types of attachments are derived from the attachment resource. + * The fileAttachment and itemAttachment attachments for the message. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -107,7 +105,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties, relationships, or raw contents of an attachment that is attached to a user event, message, or group post. An attachment can be one of the following types: All these types of attachments are derived from the attachment resource. + * The fileAttachment and itemAttachment attachments for the message. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -135,7 +133,7 @@ public AttachmentItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final St public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties, relationships, or raw contents of an attachment that is attached to a user event, message, or group post. An attachment can be one of the following types: All these types of attachments are derived from the attachment resource. + * The fileAttachment and itemAttachment attachments for the message. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/messages/item/extensions/ExtensionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/messages/item/extensions/ExtensionsRequestBuilder.java index 9963a93f667..2aff8d9d8be 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/messages/item/extensions/ExtensionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/messages/item/extensions/ExtensionsRequestBuilder.java @@ -60,7 +60,7 @@ public ExtensionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/users/{user%2Did}/mailFolders/{mailFolder%2Did}/messages/{message%2Did}/extensions{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the message. Nullable. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public ExtensionCollectionResponse get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the message. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -82,23 +82,21 @@ public ExtensionCollectionResponse get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, ExtensionCollectionResponse::createFromDiscriminatorValue); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body) { return post(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, Extension::createFromDiscriminatorValue); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the message. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the message. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -129,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @return a {@link RequestInformation} */ @@ -138,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -163,7 +161,7 @@ public ExtensionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ExtensionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the message. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/messages/item/extensions/item/ExtensionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/messages/item/extensions/item/ExtensionItemRequestBuilder.java index 92353662b23..37f9b917487 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/messages/item/extensions/item/ExtensionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/messages/item/extensions/item/ExtensionItemRequestBuilder.java @@ -37,18 +37,16 @@ public ExtensionItemRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/users/{user%2Did}/mailFolders/{mailFolder%2Did}/messages/{message%2Did}/extensions/{extension%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an open extension (openTypeExtension object) from the specified instance of a resource. For the list of resources that support open extensions, see the table in the Permissions section. + * Delete navigation property extensions for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an open extension (openTypeExtension object) from the specified instance of a resource. For the list of resources that support open extensions, see the table in the Permissions section. + * Delete navigation property extensions for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the message. Nullable. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the message. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -106,7 +102,7 @@ public Extension patch(@jakarta.annotation.Nonnull final Extension body, @jakart return this.requestAdapter.send(requestInfo, errorMapping, Extension::createFromDiscriminatorValue); } /** - * Delete an open extension (openTypeExtension object) from the specified instance of a resource. For the list of resources that support open extensions, see the table in the Permissions section. + * Delete navigation property extensions for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -114,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an open extension (openTypeExtension object) from the specified instance of a resource. For the list of resources that support open extensions, see the table in the Permissions section. + * Delete navigation property extensions for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the message. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the message. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public ExtensionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the message. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/messages/item/value/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/messages/item/value/ContentRequestBuilder.java index fbf95be7f26..00974422d8c 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/messages/item/value/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/mailfolders/item/messages/item/value/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * Get media content for the navigation property messages from users * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/manageddevices/item/devicecategory/DeviceCategoryRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/manageddevices/item/devicecategory/DeviceCategoryRequestBuilder.java index d9384de257e..cf2539aaa4a 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/manageddevices/item/devicecategory/DeviceCategoryRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/manageddevices/item/devicecategory/DeviceCategoryRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the deviceCategory object. + * Device category * @return a {@link DeviceCategory} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCategory get() { return get(null); } /** - * Read properties and relationships of the deviceCategory object. + * Device category * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceCategory} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCategory get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public DeviceCategory get(@jakarta.annotation.Nullable final java.util.function. return this.requestAdapter.send(requestInfo, errorMapping, DeviceCategory::createFromDiscriminatorValue); } /** - * Update the properties of a deviceCategory object. + * Update the navigation property deviceCategory in users * @param body The request body * @return a {@link DeviceCategory} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCategory patch(@jakarta.annotation.Nonnull final DeviceCategory body) { return patch(body, null); } /** - * Update the properties of a deviceCategory object. + * Update the navigation property deviceCategory in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeviceCategory} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DeviceCategory patch(@jakarta.annotation.Nonnull final DeviceCategory body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the deviceCategory object. + * Device category * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the deviceCategory object. + * Device category * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a deviceCategory object. + * Update the navigation property deviceCategory in users * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a deviceCategory object. + * Update the navigation property deviceCategory in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public DeviceCategoryRequestBuilder withUrl(@jakarta.annotation.Nonnull final St public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the deviceCategory object. + * Device category */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/manageddevices/item/users/UsersRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/manageddevices/item/users/UsersRequestBuilder.java index 1246e9b8a98..b4ceafcf721 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/manageddevices/item/users/UsersRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/manageddevices/item/users/UsersRequestBuilder.java @@ -37,21 +37,19 @@ public UsersRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/users/{user%2Did}/managedDevices/{managedDevice%2Did}/users{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the user objects. + * The primary users associated with the managed device. * @return a {@link UserCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserCollectionResponse get() { return get(null); } /** - * List properties and relationships of the user objects. + * The primary users associated with the managed device. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UserCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -61,7 +59,7 @@ public UserCollectionResponse get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, UserCollectionResponse::createFromDiscriminatorValue); } /** - * List properties and relationships of the user objects. + * The primary users associated with the managed device. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -69,7 +67,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the user objects. + * The primary users associated with the managed device. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -91,7 +89,7 @@ public UsersRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new UsersRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the user objects. + * The primary users associated with the managed device. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/manageddevices/item/windowsprotectionstate/WindowsProtectionStateRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/manageddevices/item/windowsprotectionstate/WindowsProtectionStateRequestBuilder.java index 81e59af5e2c..934a97cd134 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/manageddevices/item/windowsprotectionstate/WindowsProtectionStateRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/manageddevices/item/windowsprotectionstate/WindowsProtectionStateRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the windowsProtectionState object. + * The device protection status. This property is read-only. * @return a {@link WindowsProtectionState} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsProtectionState get() { return get(null); } /** - * Read properties and relationships of the windowsProtectionState object. + * The device protection status. This property is read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WindowsProtectionState} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsProtectionState get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -88,23 +86,21 @@ public WindowsProtectionState get(@jakarta.annotation.Nullable final java.util.f return this.requestAdapter.send(requestInfo, errorMapping, WindowsProtectionState::createFromDiscriminatorValue); } /** - * Update the properties of a windowsProtectionState object. + * Update the navigation property windowsProtectionState in users * @param body The request body * @return a {@link WindowsProtectionState} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsProtectionState patch(@jakarta.annotation.Nonnull final WindowsProtectionState body) { return patch(body, null); } /** - * Update the properties of a windowsProtectionState object. + * Update the navigation property windowsProtectionState in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WindowsProtectionState} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsProtectionState patch(@jakarta.annotation.Nonnull final WindowsProtectionState body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -135,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the windowsProtectionState object. + * The device protection status. This property is read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -143,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the windowsProtectionState object. + * The device protection status. This property is read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a windowsProtectionState object. + * Update the navigation property windowsProtectionState in users * @param body The request body * @return a {@link RequestInformation} */ @@ -164,7 +160,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a windowsProtectionState object. + * Update the navigation property windowsProtectionState in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -195,7 +191,7 @@ public WindowsProtectionStateRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the windowsProtectionState object. + * The device protection status. This property is read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/manageddevices/item/windowsprotectionstate/detectedmalwarestate/DetectedMalwareStateRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/manageddevices/item/windowsprotectionstate/detectedmalwarestate/DetectedMalwareStateRequestBuilder.java index ab7d726d2d7..bd278751f8b 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/manageddevices/item/windowsprotectionstate/detectedmalwarestate/DetectedMalwareStateRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/manageddevices/item/windowsprotectionstate/detectedmalwarestate/DetectedMalwareStateRequestBuilder.java @@ -60,21 +60,19 @@ public DetectedMalwareStateRequestBuilder(@jakarta.annotation.Nonnull final Stri super(requestAdapter, "{+baseurl}/users/{user%2Did}/managedDevices/{managedDevice%2Did}/windowsProtectionState/detectedMalwareState{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List properties and relationships of the windowsDeviceMalwareState objects. + * Device malware list * @return a {@link WindowsDeviceMalwareStateCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsDeviceMalwareStateCollectionResponse get() { return get(null); } /** - * List properties and relationships of the windowsDeviceMalwareState objects. + * Device malware list * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WindowsDeviceMalwareStateCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsDeviceMalwareStateCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public WindowsDeviceMalwareStateCollectionResponse get(@jakarta.annotation.Nulla return this.requestAdapter.send(requestInfo, errorMapping, WindowsDeviceMalwareStateCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new windowsDeviceMalwareState object. + * Create new navigation property to detectedMalwareState for users * @param body The request body * @return a {@link WindowsDeviceMalwareState} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsDeviceMalwareState post(@jakarta.annotation.Nonnull final WindowsDeviceMalwareState body) { return post(body, null); } /** - * Create a new windowsDeviceMalwareState object. + * Create new navigation property to detectedMalwareState for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WindowsDeviceMalwareState} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsDeviceMalwareState post(@jakarta.annotation.Nonnull final WindowsDeviceMalwareState body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public WindowsDeviceMalwareState post(@jakarta.annotation.Nonnull final WindowsD return this.requestAdapter.send(requestInfo, errorMapping, WindowsDeviceMalwareState::createFromDiscriminatorValue); } /** - * List properties and relationships of the windowsDeviceMalwareState objects. + * Device malware list * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List properties and relationships of the windowsDeviceMalwareState objects. + * Device malware list * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new windowsDeviceMalwareState object. + * Create new navigation property to detectedMalwareState for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new windowsDeviceMalwareState object. + * Create new navigation property to detectedMalwareState for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public DetectedMalwareStateRequestBuilder withUrl(@jakarta.annotation.Nonnull fi return new DetectedMalwareStateRequestBuilder(rawUrl, requestAdapter); } /** - * List properties and relationships of the windowsDeviceMalwareState objects. + * Device malware list */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/manageddevices/item/windowsprotectionstate/detectedmalwarestate/item/WindowsDeviceMalwareStateItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/manageddevices/item/windowsprotectionstate/detectedmalwarestate/item/WindowsDeviceMalwareStateItemRequestBuilder.java index 55534119172..361485e9fba 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/manageddevices/item/windowsprotectionstate/detectedmalwarestate/item/WindowsDeviceMalwareStateItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/manageddevices/item/windowsprotectionstate/detectedmalwarestate/item/WindowsDeviceMalwareStateItemRequestBuilder.java @@ -37,18 +37,16 @@ public WindowsDeviceMalwareStateItemRequestBuilder(@jakarta.annotation.Nonnull f super(requestAdapter, "{+baseurl}/users/{user%2Did}/managedDevices/{managedDevice%2Did}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a windowsDeviceMalwareState. + * Delete navigation property detectedMalwareState for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a windowsDeviceMalwareState. + * Delete navigation property detectedMalwareState for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read properties and relationships of the windowsDeviceMalwareState object. + * Device malware list * @return a {@link WindowsDeviceMalwareState} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsDeviceMalwareState get() { return get(null); } /** - * Read properties and relationships of the windowsDeviceMalwareState object. + * Device malware list * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WindowsDeviceMalwareState} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsDeviceMalwareState get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public WindowsDeviceMalwareState get(@jakarta.annotation.Nullable final java.uti return this.requestAdapter.send(requestInfo, errorMapping, WindowsDeviceMalwareState::createFromDiscriminatorValue); } /** - * Update the properties of a windowsDeviceMalwareState object. + * Update the navigation property detectedMalwareState in users * @param body The request body * @return a {@link WindowsDeviceMalwareState} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsDeviceMalwareState patch(@jakarta.annotation.Nonnull final WindowsDeviceMalwareState body) { return patch(body, null); } /** - * Update the properties of a windowsDeviceMalwareState object. + * Update the navigation property detectedMalwareState in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WindowsDeviceMalwareState} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsDeviceMalwareState patch(@jakarta.annotation.Nonnull final WindowsDeviceMalwareState body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public WindowsDeviceMalwareState patch(@jakarta.annotation.Nonnull final Windows return this.requestAdapter.send(requestInfo, errorMapping, WindowsDeviceMalwareState::createFromDiscriminatorValue); } /** - * Deletes a windowsDeviceMalwareState. + * Delete navigation property detectedMalwareState for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a windowsDeviceMalwareState. + * Delete navigation property detectedMalwareState for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read properties and relationships of the windowsDeviceMalwareState object. + * Device malware list * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read properties and relationships of the windowsDeviceMalwareState object. + * Device malware list * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a windowsDeviceMalwareState object. + * Update the navigation property detectedMalwareState in users * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a windowsDeviceMalwareState object. + * Update the navigation property detectedMalwareState in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public WindowsDeviceMalwareStateItemRequestBuilder withUrl(@jakarta.annotation.N public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read properties and relationships of the windowsDeviceMalwareState object. + * Device malware list */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/manager/ManagerRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/manager/ManagerRequestBuilder.java index d3189eee93b..39571055e18 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/manager/ManagerRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/manager/ManagerRequestBuilder.java @@ -46,21 +46,19 @@ public ManagerRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/users/{user%2Did}/manager{?%24expand,%24select}", rawUrl); } /** - * Returns the user or organizational contact assigned as the user's manager. Optionally, you can expand the manager's chain up to the root node. + * The user or contact that is this user's manager. Read-only. Supports $expand. * @return a {@link DirectoryObject} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObject get() { return get(null); } /** - * Returns the user or organizational contact assigned as the user's manager. Optionally, you can expand the manager's chain up to the root node. + * The user or contact that is this user's manager. Read-only. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DirectoryObject} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObject get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -70,7 +68,7 @@ public DirectoryObject get(@jakarta.annotation.Nullable final java.util.function return this.requestAdapter.send(requestInfo, errorMapping, DirectoryObject::createFromDiscriminatorValue); } /** - * Returns the user or organizational contact assigned as the user's manager. Optionally, you can expand the manager's chain up to the root node. + * The user or contact that is this user's manager. Read-only. Supports $expand. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -78,7 +76,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Returns the user or organizational contact assigned as the user's manager. Optionally, you can expand the manager's chain up to the root node. + * The user or contact that is this user's manager. Read-only. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -100,7 +98,7 @@ public ManagerRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new ManagerRequestBuilder(rawUrl, requestAdapter); } /** - * Returns the user or organizational contact assigned as the user's manager. Optionally, you can expand the manager's chain up to the root node. + * The user or contact that is this user's manager. Read-only. Supports $expand. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/manager/ref/RefRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/manager/ref/RefRequestBuilder.java index 7ccc3509522..5b778f18fa4 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/manager/ref/RefRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/manager/ref/RefRequestBuilder.java @@ -36,18 +36,16 @@ public RefRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jakar super(requestAdapter, "{+baseurl}/users/{user%2Did}/manager/$ref", rawUrl); } /** - * Remove a user's manager. + * Delete ref of navigation property manager for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Remove a user's manager. + * Delete ref of navigation property manager for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -56,21 +54,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Returns the user or organizational contact assigned as the user's manager. Optionally, you can expand the manager's chain up to the root node. + * The user or contact that is this user's manager. Read-only. Supports $expand. * @return a {@link String} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public String get() { return get(null); } /** - * Returns the user or organizational contact assigned as the user's manager. Optionally, you can expand the manager's chain up to the root node. + * The user or contact that is this user's manager. Read-only. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link String} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public String get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -80,20 +76,18 @@ public String get(@jakarta.annotation.Nullable final java.util.function.Consumer return this.requestAdapter.sendPrimitive(requestInfo, errorMapping, String.class); } /** - * Assign a user's manager. + * Update the ref of navigation property manager in users * @param body The request body * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void put(@jakarta.annotation.Nonnull final ReferenceUpdate body) { put(body, null); } /** - * Assign a user's manager. + * Update the ref of navigation property manager in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void put(@jakarta.annotation.Nonnull final ReferenceUpdate body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { Objects.requireNonNull(body); @@ -103,7 +97,7 @@ public void put(@jakarta.annotation.Nonnull final ReferenceUpdate body, @jakarta this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Remove a user's manager. + * Delete ref of navigation property manager for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -111,7 +105,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Remove a user's manager. + * Delete ref of navigation property manager for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -123,7 +117,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Returns the user or organizational contact assigned as the user's manager. Optionally, you can expand the manager's chain up to the root node. + * The user or contact that is this user's manager. Read-only. Supports $expand. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -131,7 +125,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Returns the user or organizational contact assigned as the user's manager. Optionally, you can expand the manager's chain up to the root node. + * The user or contact that is this user's manager. Read-only. Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -143,7 +137,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Assign a user's manager. + * Update the ref of navigation property manager in users * @param body The request body * @return a {@link RequestInformation} */ @@ -152,7 +146,7 @@ public RequestInformation toPutRequestInformation(@jakarta.annotation.Nonnull fi return toPutRequestInformation(body, null); } /** - * Assign a user's manager. + * Update the ref of navigation property manager in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/users/item/memberof/MemberOfRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/memberof/MemberOfRequestBuilder.java index e6ab3c086a0..4efec02db45 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/memberof/MemberOfRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/memberof/MemberOfRequestBuilder.java @@ -89,7 +89,6 @@ public MemberOfRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ * The groups and directory roles that the user is a member of. Read-only. Nullable. Supports $expand. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get() { @@ -100,7 +99,6 @@ public DirectoryObjectCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/messages/MessagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/messages/MessagesRequestBuilder.java index 228d6dfa524..a886cdc48d7 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/messages/MessagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/messages/MessagesRequestBuilder.java @@ -72,7 +72,6 @@ public MessagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ * The messages in a mailbox or folder. Read-only. Nullable. * @return a {@link MessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MessageCollectionResponse get() { @@ -83,7 +82,6 @@ public MessageCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link MessageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public MessageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public MessageCollectionResponse get(@jakarta.annotation.Nullable final java.uti return this.requestAdapter.send(requestInfo, errorMapping, MessageCollectionResponse::createFromDiscriminatorValue); } /** - * Create a draft of a new message in either JSON or MIME format. When using JSON format, you can:- Include an attachment to the message.- Update the draft later to add content to the body or change other message properties. When using MIME format:- Provide the applicable Internet message headers and the MIME content, all encoded in base64 format in the request body.- /* Add any attachments and S/MIME properties to the MIME content. By default, this operation saves the draft in the Drafts folder. Send the draft message in a subsequent operation. Alternatively, send a new message in a single operation, or create a draft to forward, reply and reply-all to an existing message. + * Create new navigation property to messages for users * @param body The request body * @return a {@link Message} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Message post(@jakarta.annotation.Nonnull final Message body) { return post(body, null); } /** - * Create a draft of a new message in either JSON or MIME format. When using JSON format, you can:- Include an attachment to the message.- Update the draft later to add content to the body or change other message properties. When using MIME format:- Provide the applicable Internet message headers and the MIME content, all encoded in base64 format in the request body.- /* Add any attachments and S/MIME properties to the MIME content. By default, this operation saves the draft in the Drafts folder. Send the draft message in a subsequent operation. Alternatively, send a new message in a single operation, or create a draft to forward, reply and reply-all to an existing message. + * Create new navigation property to messages for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Message} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Message post(@jakarta.annotation.Nonnull final Message body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a draft of a new message in either JSON or MIME format. When using JSON format, you can:- Include an attachment to the message.- Update the draft later to add content to the body or change other message properties. When using MIME format:- Provide the applicable Internet message headers and the MIME content, all encoded in base64 format in the request body.- /* Add any attachments and S/MIME properties to the MIME content. By default, this operation saves the draft in the Drafts folder. Send the draft message in a subsequent operation. Alternatively, send a new message in a single operation, or create a draft to forward, reply and reply-all to an existing message. + * Create new navigation property to messages for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a draft of a new message in either JSON or MIME format. When using JSON format, you can:- Include an attachment to the message.- Update the draft later to add content to the body or change other message properties. When using MIME format:- Provide the applicable Internet message headers and the MIME content, all encoded in base64 format in the request body.- /* Add any attachments and S/MIME properties to the MIME content. By default, this operation saves the draft in the Drafts folder. Send the draft message in a subsequent operation. Alternatively, send a new message in a single operation, or create a draft to forward, reply and reply-all to an existing message. + * Create new navigation property to messages for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/users/item/messages/item/MessageItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/messages/item/MessageItemRequestBuilder.java index ba729ee0116..a7b6dc76906 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/messages/item/MessageItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/messages/item/MessageItemRequestBuilder.java @@ -145,18 +145,16 @@ public MessageItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/users/{user%2Did}/messages/{message%2Did}{?%24expand,%24select,includeHiddenMessages*}", rawUrl); } /** - * Delete a message in the specified user's mailbox, or delete a relationship of the message. + * Delete navigation property messages for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a message in the specified user's mailbox, or delete a relationship of the message. + * Delete navigation property messages for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -168,7 +166,6 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume * The messages in a mailbox or folder. Read-only. Nullable. * @return a {@link Message} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Message get() { @@ -179,7 +176,6 @@ public Message get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Message} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Message get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -189,23 +185,21 @@ public Message get(@jakarta.annotation.Nullable final java.util.function.Consume return this.requestAdapter.send(requestInfo, errorMapping, Message::createFromDiscriminatorValue); } /** - * Update the properties of an eventMessage object. + * Update the navigation property messages in users * @param body The request body * @return a {@link Message} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Message patch(@jakarta.annotation.Nonnull final Message body) { return patch(body, null); } /** - * Update the properties of an eventMessage object. + * Update the navigation property messages in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Message} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Message patch(@jakarta.annotation.Nonnull final Message body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -216,7 +210,7 @@ public Message patch(@jakarta.annotation.Nonnull final Message body, @jakarta.an return this.requestAdapter.send(requestInfo, errorMapping, Message::createFromDiscriminatorValue); } /** - * Delete a message in the specified user's mailbox, or delete a relationship of the message. + * Delete navigation property messages for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -224,7 +218,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a message in the specified user's mailbox, or delete a relationship of the message. + * Delete navigation property messages for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -256,7 +250,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of an eventMessage object. + * Update the navigation property messages in users * @param body The request body * @return a {@link RequestInformation} */ @@ -265,7 +259,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of an eventMessage object. + * Update the navigation property messages in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} diff --git a/src/main/java/com/microsoft/graph/generated/users/item/messages/item/attachments/AttachmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/messages/item/attachments/AttachmentsRequestBuilder.java index 392989202b2..c020a1dd07f 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/messages/item/attachments/AttachmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/messages/item/attachments/AttachmentsRequestBuilder.java @@ -69,21 +69,19 @@ public AttachmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/users/{user%2Did}/messages/{message%2Did}/attachments{?%24count,%24expand,%24filter,%24orderby,%24select}", rawUrl); } /** - * Retrieve a list of attachment objects. + * The fileAttachment and itemAttachment attachments for the message. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get() { return get(null); } /** - * Retrieve a list of attachment objects. + * The fileAttachment and itemAttachment attachments for the message. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttachmentCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public AttachmentCollectionResponse get(@jakarta.annotation.Nullable final java. return this.requestAdapter.send(requestInfo, errorMapping, AttachmentCollectionResponse::createFromDiscriminatorValue); } /** - * Use this API to add an attachment to a message. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. You can add an attachment to an existing message by posting to its attachments collection, or you canadd an attachment to a message that is being created and sent on the fly. This operation limits the size of the attachment you can add to under 3 MB. + * Create new navigation property to attachments for users * @param body The request body * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body) { return post(body, null); } /** - * Use this API to add an attachment to a message. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. You can add an attachment to an existing message by posting to its attachments collection, or you canadd an attachment to a message that is being created and sent on the fly. This operation limits the size of the attachment you can add to under 3 MB. + * Create new navigation property to attachments for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public Attachment post(@jakarta.annotation.Nonnull final Attachment body, @jakar return this.requestAdapter.send(requestInfo, errorMapping, Attachment::createFromDiscriminatorValue); } /** - * Retrieve a list of attachment objects. + * The fileAttachment and itemAttachment attachments for the message. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of attachment objects. + * The fileAttachment and itemAttachment attachments for the message. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Use this API to add an attachment to a message. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. You can add an attachment to an existing message by posting to its attachments collection, or you canadd an attachment to a message that is being created and sent on the fly. This operation limits the size of the attachment you can add to under 3 MB. + * Create new navigation property to attachments for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Use this API to add an attachment to a message. An attachment can be one of the following types: All these types of attachment resources are derived from the attachmentresource. You can add an attachment to an existing message by posting to its attachments collection, or you canadd an attachment to a message that is being created and sent on the fly. This operation limits the size of the attachment you can add to under 3 MB. + * Create new navigation property to attachments for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public AttachmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AttachmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of attachment objects. + * The fileAttachment and itemAttachment attachments for the message. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/messages/item/attachments/item/AttachmentItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/messages/item/attachments/item/AttachmentItemRequestBuilder.java index 9b6afa8b8d6..8c387cb7f38 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/messages/item/attachments/item/AttachmentItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/messages/item/attachments/item/AttachmentItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties, relationships, or raw contents of an attachment that is attached to a user event, message, or group post. An attachment can be one of the following types: All these types of attachments are derived from the attachment resource. + * The fileAttachment and itemAttachment attachments for the message. * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment get() { return get(null); } /** - * Read the properties, relationships, or raw contents of an attachment that is attached to a user event, message, or group post. An attachment can be one of the following types: All these types of attachments are derived from the attachment resource. + * The fileAttachment and itemAttachment attachments for the message. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Attachment} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Attachment get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -99,7 +97,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties, relationships, or raw contents of an attachment that is attached to a user event, message, or group post. An attachment can be one of the following types: All these types of attachments are derived from the attachment resource. + * The fileAttachment and itemAttachment attachments for the message. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -107,7 +105,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties, relationships, or raw contents of an attachment that is attached to a user event, message, or group post. An attachment can be one of the following types: All these types of attachments are derived from the attachment resource. + * The fileAttachment and itemAttachment attachments for the message. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -135,7 +133,7 @@ public AttachmentItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final St public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties, relationships, or raw contents of an attachment that is attached to a user event, message, or group post. An attachment can be one of the following types: All these types of attachments are derived from the attachment resource. + * The fileAttachment and itemAttachment attachments for the message. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/messages/item/extensions/ExtensionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/messages/item/extensions/ExtensionsRequestBuilder.java index 8407e93a3a9..60bfdfc2418 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/messages/item/extensions/ExtensionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/messages/item/extensions/ExtensionsRequestBuilder.java @@ -60,7 +60,7 @@ public ExtensionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/users/{user%2Did}/messages/{message%2Did}/extensions{?%24count,%24expand,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the message. Nullable. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public ExtensionCollectionResponse get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the message. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ExtensionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -82,23 +82,21 @@ public ExtensionCollectionResponse get(@jakarta.annotation.Nullable final java.u return this.requestAdapter.send(requestInfo, errorMapping, ExtensionCollectionResponse::createFromDiscriminatorValue); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body) { return post(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public Extension post(@jakarta.annotation.Nonnull final Extension body, @jakarta return this.requestAdapter.send(requestInfo, errorMapping, Extension::createFromDiscriminatorValue); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the message. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the message. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -129,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @return a {@link RequestInformation} */ @@ -138,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an open extension (openTypeExtension object) and add custom properties in a new or existing instance of a resource. You can create an open extension in a resource instance and store custom data to it all in the same operation, except for specific resources. The table in the Permissions section lists the resources that support open extensions. + * Create new navigation property to extensions for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -163,7 +161,7 @@ public ExtensionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new ExtensionsRequestBuilder(rawUrl, requestAdapter); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the message. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/messages/item/extensions/item/ExtensionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/messages/item/extensions/item/ExtensionItemRequestBuilder.java index e07d2f1e420..6f61bc1bbed 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/messages/item/extensions/item/ExtensionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/messages/item/extensions/item/ExtensionItemRequestBuilder.java @@ -37,18 +37,16 @@ public ExtensionItemRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/users/{user%2Did}/messages/{message%2Did}/extensions/{extension%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an open extension (openTypeExtension object) from the specified instance of a resource. For the list of resources that support open extensions, see the table in the Permissions section. + * Delete navigation property extensions for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an open extension (openTypeExtension object) from the specified instance of a resource. For the list of resources that support open extensions, see the table in the Permissions section. + * Delete navigation property extensions for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the message. Nullable. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get() { return get(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the message. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Extension} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Extension get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -106,7 +102,7 @@ public Extension patch(@jakarta.annotation.Nonnull final Extension body, @jakart return this.requestAdapter.send(requestInfo, errorMapping, Extension::createFromDiscriminatorValue); } /** - * Delete an open extension (openTypeExtension object) from the specified instance of a resource. For the list of resources that support open extensions, see the table in the Permissions section. + * Delete navigation property extensions for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -114,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an open extension (openTypeExtension object) from the specified instance of a resource. For the list of resources that support open extensions, see the table in the Permissions section. + * Delete navigation property extensions for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the message. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the message. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public ExtensionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get an open extension (openTypeExtension object) identified by name or fully qualified name. The table in the Permissions section lists the resources that support open extensions. The following table lists the three scenarios where you can get an open extension from a supported resource instance. + * The collection of open extensions defined for the message. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/messages/item/value/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/messages/item/value/ContentRequestBuilder.java index f44952767c3..ba9f9c2c3fd 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/messages/item/value/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/messages/item/value/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * Get media content for the navigation property messages from users * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/oauth2permissiongrants/Oauth2PermissionGrantsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/oauth2permissiongrants/Oauth2PermissionGrantsRequestBuilder.java index a4084453ed1..ee10ab8eb13 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/oauth2permissiongrants/Oauth2PermissionGrantsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/oauth2permissiongrants/Oauth2PermissionGrantsRequestBuilder.java @@ -59,21 +59,19 @@ public Oauth2PermissionGrantsRequestBuilder(@jakarta.annotation.Nonnull final St super(requestAdapter, "{+baseurl}/users/{user%2Did}/oauth2PermissionGrants{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of oAuth2PermissionGrant entities, which represent delegated permissions granted to enable a client application to access an API on behalf of the user. + * Get oauth2PermissionGrants from users * @return a {@link OAuth2PermissionGrantCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OAuth2PermissionGrantCollectionResponse get() { return get(null); } /** - * Retrieve a list of oAuth2PermissionGrant entities, which represent delegated permissions granted to enable a client application to access an API on behalf of the user. + * Get oauth2PermissionGrants from users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OAuth2PermissionGrantCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OAuth2PermissionGrantCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public OAuth2PermissionGrantCollectionResponse get(@jakarta.annotation.Nullable return this.requestAdapter.send(requestInfo, errorMapping, OAuth2PermissionGrantCollectionResponse::createFromDiscriminatorValue); } /** - * Retrieve a list of oAuth2PermissionGrant entities, which represent delegated permissions granted to enable a client application to access an API on behalf of the user. + * Get oauth2PermissionGrants from users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of oAuth2PermissionGrant entities, which represent delegated permissions granted to enable a client application to access an API on behalf of the user. + * Get oauth2PermissionGrants from users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public Oauth2PermissionGrantsRequestBuilder withUrl(@jakarta.annotation.Nonnull return new Oauth2PermissionGrantsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of oAuth2PermissionGrant entities, which represent delegated permissions granted to enable a client application to access an API on behalf of the user. + * Get oauth2PermissionGrants from users */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/NotebooksRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/NotebooksRequestBuilder.java index 5ecbc0b4475..f61b462aada 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/NotebooksRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/NotebooksRequestBuilder.java @@ -70,21 +70,19 @@ public NotebooksRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/users/{user%2Did}/onenote/notebooks{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of notebook objects. + * The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link NotebookCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public NotebookCollectionResponse get() { return get(null); } /** - * Retrieve a list of notebook objects. + * The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link NotebookCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public NotebookCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -104,23 +102,21 @@ public GetRecentNotebooksWithIncludePersonalNotebooksRequestBuilder getRecentNot return new GetRecentNotebooksWithIncludePersonalNotebooksRequestBuilder(pathParameters, requestAdapter, includePersonalNotebooks); } /** - * Create a new OneNote notebook. + * Create new navigation property to notebooks for users * @param body The request body * @return a {@link Notebook} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Notebook post(@jakarta.annotation.Nonnull final Notebook body) { return post(body, null); } /** - * Create a new OneNote notebook. + * Create new navigation property to notebooks for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Notebook} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Notebook post(@jakarta.annotation.Nonnull final Notebook body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -131,7 +127,7 @@ public Notebook post(@jakarta.annotation.Nonnull final Notebook body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, Notebook::createFromDiscriminatorValue); } /** - * Retrieve a list of notebook objects. + * The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -139,7 +135,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of notebook objects. + * The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -151,7 +147,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new OneNote notebook. + * Create new navigation property to notebooks for users * @param body The request body * @return a {@link RequestInformation} */ @@ -160,7 +156,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new OneNote notebook. + * Create new navigation property to notebooks for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -185,7 +181,7 @@ public NotebooksRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new NotebooksRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of notebook objects. + * The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/getrecentnotebookswithincludepersonalnotebooks/GetRecentNotebooksWithIncludePersonalNotebooksRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/getrecentnotebookswithincludepersonalnotebooks/GetRecentNotebooksWithIncludePersonalNotebooksRequestBuilder.java index 5f49921d6dd..b381a875254 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/getrecentnotebookswithincludepersonalnotebooks/GetRecentNotebooksWithIncludePersonalNotebooksRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/getrecentnotebookswithincludepersonalnotebooks/GetRecentNotebooksWithIncludePersonalNotebooksRequestBuilder.java @@ -38,19 +38,21 @@ public GetRecentNotebooksWithIncludePersonalNotebooksRequestBuilder(@jakarta.ann super(requestAdapter, "{+baseurl}/users/{user%2Did}/onenote/notebooks/getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks}){?%24count,%24filter,%24search,%24skip,%24top}", rawUrl); } /** - * Invoke function getRecentNotebooks + * Get a list of recentNotebook instances that have been accessed by the signed-in user. * @return a {@link GetRecentNotebooksWithIncludePersonalNotebooksGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetRecentNotebooksWithIncludePersonalNotebooksGetResponse get() { return get(null); } /** - * Invoke function getRecentNotebooks + * Get a list of recentNotebook instances that have been accessed by the signed-in user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GetRecentNotebooksWithIncludePersonalNotebooksGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetRecentNotebooksWithIncludePersonalNotebooksGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -60,7 +62,7 @@ public GetRecentNotebooksWithIncludePersonalNotebooksGetResponse get(@jakarta.an return this.requestAdapter.send(requestInfo, errorMapping, GetRecentNotebooksWithIncludePersonalNotebooksGetResponse::createFromDiscriminatorValue); } /** - * Invoke function getRecentNotebooks + * Get a list of recentNotebook instances that have been accessed by the signed-in user. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -68,7 +70,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getRecentNotebooks + * Get a list of recentNotebook instances that have been accessed by the signed-in user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -90,7 +92,7 @@ public GetRecentNotebooksWithIncludePersonalNotebooksRequestBuilder withUrl(@jak return new GetRecentNotebooksWithIncludePersonalNotebooksRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function getRecentNotebooks + * Get a list of recentNotebook instances that have been accessed by the signed-in user. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/item/NotebookItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/item/NotebookItemRequestBuilder.java index 65fe3c2cfbc..03d5802ccad 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/item/NotebookItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/item/NotebookItemRequestBuilder.java @@ -82,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a notebook object. + * The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link Notebook} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Notebook get() { return get(null); } /** - * Retrieve the properties and relationships of a notebook object. + * The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Notebook} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Notebook get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -151,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a notebook object. + * The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -159,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a notebook object. + * The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -211,7 +209,7 @@ public NotebookItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a notebook object. + * The collection of OneNote notebooks that are owned by the user or group. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/item/sectiongroups/SectionGroupsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/item/sectiongroups/SectionGroupsRequestBuilder.java index 3ce6d94755f..b6235099cee 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/item/sectiongroups/SectionGroupsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/item/sectiongroups/SectionGroupsRequestBuilder.java @@ -60,21 +60,19 @@ public SectionGroupsRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/users/{user%2Did}/onenote/notebooks/{notebook%2Did}/sectionGroups{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of section groups from the specified notebook. + * The section groups in the notebook. Read-only. Nullable. * @return a {@link SectionGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroupCollectionResponse get() { return get(null); } /** - * Retrieve a list of section groups from the specified notebook. + * The section groups in the notebook. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SectionGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroupCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public SectionGroupCollectionResponse get(@jakarta.annotation.Nullable final jav return this.requestAdapter.send(requestInfo, errorMapping, SectionGroupCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new section group in the specified notebook. + * Create new navigation property to sectionGroups for users * @param body The request body * @return a {@link SectionGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroup post(@jakarta.annotation.Nonnull final SectionGroup body) { return post(body, null); } /** - * Create a new section group in the specified notebook. + * Create new navigation property to sectionGroups for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SectionGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroup post(@jakarta.annotation.Nonnull final SectionGroup body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public SectionGroup post(@jakarta.annotation.Nonnull final SectionGroup body, @j return this.requestAdapter.send(requestInfo, errorMapping, SectionGroup::createFromDiscriminatorValue); } /** - * Retrieve a list of section groups from the specified notebook. + * The section groups in the notebook. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of section groups from the specified notebook. + * The section groups in the notebook. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new section group in the specified notebook. + * Create new navigation property to sectionGroups for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new section group in the specified notebook. + * Create new navigation property to sectionGroups for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public SectionGroupsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new SectionGroupsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of section groups from the specified notebook. + * The section groups in the notebook. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/item/sectiongroups/item/sectiongroups/SectionGroupsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/item/sectiongroups/item/sectiongroups/SectionGroupsRequestBuilder.java index c2a767d9f62..1d8cf251519 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/item/sectiongroups/item/sectiongroups/SectionGroupsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/item/sectiongroups/item/sectiongroups/SectionGroupsRequestBuilder.java @@ -59,21 +59,19 @@ public SectionGroupsRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/users/{user%2Did}/onenote/notebooks/{notebook%2Did}/sectionGroups/{sectionGroup%2Did}/sectionGroups{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of section groups from the specified section group. + * The section groups in the section. Read-only. Nullable. * @return a {@link SectionGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroupCollectionResponse get() { return get(null); } /** - * Retrieve a list of section groups from the specified section group. + * The section groups in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SectionGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroupCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public SectionGroupCollectionResponse get(@jakarta.annotation.Nullable final jav return this.requestAdapter.send(requestInfo, errorMapping, SectionGroupCollectionResponse::createFromDiscriminatorValue); } /** - * Retrieve a list of section groups from the specified section group. + * The section groups in the section. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of section groups from the specified section group. + * The section groups in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public SectionGroupsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new SectionGroupsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of section groups from the specified section group. + * The section groups in the section. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/item/sectiongroups/item/sections/SectionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/item/sectiongroups/item/sections/SectionsRequestBuilder.java index 1cdef65a4dc..d06eda97930 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/item/sectiongroups/item/sections/SectionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/item/sectiongroups/item/sections/SectionsRequestBuilder.java @@ -60,21 +60,19 @@ public SectionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/users/{user%2Did}/onenote/notebooks/{notebook%2Did}/sectionGroups/{sectionGroup%2Did}/sections{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of onenoteSection objects from the specified section group. + * The sections in the section group. Read-only. Nullable. * @return a {@link OnenoteSectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSectionCollectionResponse get() { return get(null); } /** - * Retrieve a list of onenoteSection objects from the specified section group. + * The sections in the section group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenoteSectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSectionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OnenoteSectionCollectionResponse get(@jakarta.annotation.Nullable final j return this.requestAdapter.send(requestInfo, errorMapping, OnenoteSectionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new onenoteSection in the specified section group. + * Create new navigation property to sections for users * @param body The request body * @return a {@link OnenoteSection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSection post(@jakarta.annotation.Nonnull final OnenoteSection body) { return post(body, null); } /** - * Create a new onenoteSection in the specified section group. + * Create new navigation property to sections for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenoteSection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSection post(@jakarta.annotation.Nonnull final OnenoteSection body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OnenoteSection post(@jakarta.annotation.Nonnull final OnenoteSection body return this.requestAdapter.send(requestInfo, errorMapping, OnenoteSection::createFromDiscriminatorValue); } /** - * Retrieve a list of onenoteSection objects from the specified section group. + * The sections in the section group. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of onenoteSection objects from the specified section group. + * The sections in the section group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new onenoteSection in the specified section group. + * Create new navigation property to sections for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new onenoteSection in the specified section group. + * Create new navigation property to sections for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public SectionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new SectionsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of onenoteSection objects from the specified section group. + * The sections in the section group. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/item/sectiongroups/item/sections/item/pages/PagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/item/sectiongroups/item/sections/item/pages/PagesRequestBuilder.java index d9ef30b84bd..3ba7701c190 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/item/sectiongroups/item/sections/item/pages/PagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/item/sectiongroups/item/sections/item/pages/PagesRequestBuilder.java @@ -60,21 +60,19 @@ public PagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/users/{user%2Did}/onenote/notebooks/{notebook%2Did}/sectionGroups/{sectionGroup%2Did}/sections/{onenoteSection%2Did}/pages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @return a {@link OnenotePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePageCollectionResponse get() { return get(null); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OnenotePageCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, OnenotePageCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for users * @param body The request body * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body) { return post(body, null); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body, @jak return this.requestAdapter.send(requestInfo, errorMapping, OnenotePage::createFromDiscriminatorValue); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new page in the specified section. + * Create new navigation property to pages for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public PagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new PagesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/item/sectiongroups/item/sections/item/pages/item/content/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/item/sectiongroups/item/sections/item/pages/item/content/ContentRequestBuilder.java index 53d41cea490..c3e164a9c63 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/item/sectiongroups/item/sections/item/pages/item/content/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/item/sectiongroups/item/sections/item/pages/item/content/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * The page's HTML content. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/item/sections/SectionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/item/sections/SectionsRequestBuilder.java index 6ad5c65e03f..6969e2ec60c 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/item/sections/SectionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/item/sections/SectionsRequestBuilder.java @@ -60,21 +60,19 @@ public SectionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/users/{user%2Did}/onenote/notebooks/{notebook%2Did}/sections{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of onenoteSection objects from the specified notebook. + * The sections in the notebook. Read-only. Nullable. * @return a {@link OnenoteSectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSectionCollectionResponse get() { return get(null); } /** - * Retrieve a list of onenoteSection objects from the specified notebook. + * The sections in the notebook. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenoteSectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSectionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OnenoteSectionCollectionResponse get(@jakarta.annotation.Nullable final j return this.requestAdapter.send(requestInfo, errorMapping, OnenoteSectionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new onenoteSection in the specified notebook. + * Create new navigation property to sections for users * @param body The request body * @return a {@link OnenoteSection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSection post(@jakarta.annotation.Nonnull final OnenoteSection body) { return post(body, null); } /** - * Create a new onenoteSection in the specified notebook. + * Create new navigation property to sections for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenoteSection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSection post(@jakarta.annotation.Nonnull final OnenoteSection body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OnenoteSection post(@jakarta.annotation.Nonnull final OnenoteSection body return this.requestAdapter.send(requestInfo, errorMapping, OnenoteSection::createFromDiscriminatorValue); } /** - * Retrieve a list of onenoteSection objects from the specified notebook. + * The sections in the notebook. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of onenoteSection objects from the specified notebook. + * The sections in the notebook. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new onenoteSection in the specified notebook. + * Create new navigation property to sections for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new onenoteSection in the specified notebook. + * Create new navigation property to sections for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public SectionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new SectionsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of onenoteSection objects from the specified notebook. + * The sections in the notebook. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/item/sections/item/pages/PagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/item/sections/item/pages/PagesRequestBuilder.java index 7a6da423105..6733d48cd73 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/item/sections/item/pages/PagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/item/sections/item/pages/PagesRequestBuilder.java @@ -60,21 +60,19 @@ public PagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/users/{user%2Did}/onenote/notebooks/{notebook%2Did}/sections/{onenoteSection%2Did}/pages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @return a {@link OnenotePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePageCollectionResponse get() { return get(null); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OnenotePageCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, OnenotePageCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for users * @param body The request body * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body) { return post(body, null); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body, @jak return this.requestAdapter.send(requestInfo, errorMapping, OnenotePage::createFromDiscriminatorValue); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new page in the specified section. + * Create new navigation property to pages for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public PagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new PagesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/item/sections/item/pages/item/content/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/item/sections/item/pages/item/content/ContentRequestBuilder.java index e67d92d7fc5..9d50af1f250 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/item/sections/item/pages/item/content/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/onenote/notebooks/item/sections/item/pages/item/content/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * The page's HTML content. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/onenote/operations/OperationsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/onenote/operations/OperationsRequestBuilder.java index c076d714c9a..9025de53a42 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/onenote/operations/OperationsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/onenote/operations/OperationsRequestBuilder.java @@ -60,7 +60,7 @@ public OperationsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/users/{user%2Did}/onenote/operations{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the status of a long-running OneNote operation. This applies to operations that return the Operation-Location header in the response, such as CopyNotebook, CopyToNotebook, CopyToSectionGroup, and CopyToSection. You can poll the Operation-Location endpoint until the status property returns completed or failed. If the status is completed, the resourceLocation property contains the resource endpoint URI. If the status is failed, the error and @api.diagnostics properties provide error information. + * The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. * @return a {@link OnenoteOperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public OnenoteOperationCollectionResponse get() { return get(null); } /** - * Get the status of a long-running OneNote operation. This applies to operations that return the Operation-Location header in the response, such as CopyNotebook, CopyToNotebook, CopyToSectionGroup, and CopyToSection. You can poll the Operation-Location endpoint until the status property returns completed or failed. If the status is completed, the resourceLocation property contains the resource endpoint URI. If the status is failed, the error and @api.diagnostics properties provide error information. + * The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenoteOperationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public OnenoteOperation post(@jakarta.annotation.Nonnull final OnenoteOperation return this.requestAdapter.send(requestInfo, errorMapping, OnenoteOperation::createFromDiscriminatorValue); } /** - * Get the status of a long-running OneNote operation. This applies to operations that return the Operation-Location header in the response, such as CopyNotebook, CopyToNotebook, CopyToSectionGroup, and CopyToSection. You can poll the Operation-Location endpoint until the status property returns completed or failed. If the status is completed, the resourceLocation property contains the resource endpoint URI. If the status is failed, the error and @api.diagnostics properties provide error information. + * The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the status of a long-running OneNote operation. This applies to operations that return the Operation-Location header in the response, such as CopyNotebook, CopyToNotebook, CopyToSectionGroup, and CopyToSection. You can poll the Operation-Location endpoint until the status property returns completed or failed. If the status is completed, the resourceLocation property contains the resource endpoint URI. If the status is failed, the error and @api.diagnostics properties provide error information. + * The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public OperationsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new OperationsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the status of a long-running OneNote operation. This applies to operations that return the Operation-Location header in the response, such as CopyNotebook, CopyToNotebook, CopyToSectionGroup, and CopyToSection. You can poll the Operation-Location endpoint until the status property returns completed or failed. If the status is completed, the resourceLocation property contains the resource endpoint URI. If the status is failed, the error and @api.diagnostics properties provide error information. + * The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/onenote/operations/item/OnenoteOperationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/onenote/operations/item/OnenoteOperationItemRequestBuilder.java index 63d63533fe2..8f248505f19 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/onenote/operations/item/OnenoteOperationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/onenote/operations/item/OnenoteOperationItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the status of a long-running OneNote operation. This applies to operations that return the Operation-Location header in the response, such as CopyNotebook, CopyToNotebook, CopyToSectionGroup, and CopyToSection. You can poll the Operation-Location endpoint until the status property returns completed or failed. If the status is completed, the resourceLocation property contains the resource endpoint URI. If the status is failed, the error and @api.diagnostics properties provide error information. + * The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. * @return a {@link OnenoteOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteOperation get() { return get(null); } /** - * Get the status of a long-running OneNote operation. This applies to operations that return the Operation-Location header in the response, such as CopyNotebook, CopyToNotebook, CopyToSectionGroup, and CopyToSection. You can poll the Operation-Location endpoint until the status property returns completed or failed. If the status is completed, the resourceLocation property contains the resource endpoint URI. If the status is failed, the error and @api.diagnostics properties provide error information. + * The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenoteOperation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteOperation get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the status of a long-running OneNote operation. This applies to operations that return the Operation-Location header in the response, such as CopyNotebook, CopyToNotebook, CopyToSectionGroup, and CopyToSection. You can poll the Operation-Location endpoint until the status property returns completed or failed. If the status is completed, the resourceLocation property contains the resource endpoint URI. If the status is failed, the error and @api.diagnostics properties provide error information. + * The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the status of a long-running OneNote operation. This applies to operations that return the Operation-Location header in the response, such as CopyNotebook, CopyToNotebook, CopyToSectionGroup, and CopyToSection. You can poll the Operation-Location endpoint until the status property returns completed or failed. If the status is completed, the resourceLocation property contains the resource endpoint URI. If the status is failed, the error and @api.diagnostics properties provide error information. + * The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public OnenoteOperationItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fi public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the status of a long-running OneNote operation. This applies to operations that return the Operation-Location header in the response, such as CopyNotebook, CopyToNotebook, CopyToSectionGroup, and CopyToSection. You can poll the Operation-Location endpoint until the status property returns completed or failed. If the status is completed, the resourceLocation property contains the resource endpoint URI. If the status is failed, the error and @api.diagnostics properties provide error information. + * The status of OneNote operations. Getting an operations collection isn't supported, but you can get the status of long-running operations if the Operation-Location header is returned in the response. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/onenote/pages/PagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/onenote/pages/PagesRequestBuilder.java index 22e0f74d497..eba0c305adc 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/onenote/pages/PagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/onenote/pages/PagesRequestBuilder.java @@ -60,21 +60,19 @@ public PagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/users/{user%2Did}/onenote/pages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of page objects. + * The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link OnenotePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePageCollectionResponse get() { return get(null); } /** - * Retrieve a list of page objects. + * The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OnenotePageCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, OnenotePageCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new OneNote page in the default section of the default notebook. To create a page in a different section in the default notebook, you can use the sectionName query parameter. Example: ../onenote/pages?sectionName=My%20section The POST /onenote/pages operation is used only to create pages in the current user's default notebook. If you're targeting other notebooks, you can create pages in a specified section. + * Create new navigation property to pages for users * @param body The request body * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body) { return post(body, null); } /** - * Create a new OneNote page in the default section of the default notebook. To create a page in a different section in the default notebook, you can use the sectionName query parameter. Example: ../onenote/pages?sectionName=My%20section The POST /onenote/pages operation is used only to create pages in the current user's default notebook. If you're targeting other notebooks, you can create pages in a specified section. + * Create new navigation property to pages for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body, @jak return this.requestAdapter.send(requestInfo, errorMapping, OnenotePage::createFromDiscriminatorValue); } /** - * Retrieve a list of page objects. + * The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of page objects. + * The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new OneNote page in the default section of the default notebook. To create a page in a different section in the default notebook, you can use the sectionName query parameter. Example: ../onenote/pages?sectionName=My%20section The POST /onenote/pages operation is used only to create pages in the current user's default notebook. If you're targeting other notebooks, you can create pages in a specified section. + * Create new navigation property to pages for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new OneNote page in the default section of the default notebook. To create a page in a different section in the default notebook, you can use the sectionName query parameter. Example: ../onenote/pages?sectionName=My%20section The POST /onenote/pages operation is used only to create pages in the current user's default notebook. If you're targeting other notebooks, you can create pages in a specified section. + * Create new navigation property to pages for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public PagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new PagesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of page objects. + * The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/onenote/pages/item/OnenotePageItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/onenote/pages/item/OnenotePageItemRequestBuilder.java index f517025e67f..ae64feacf68 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/onenote/pages/item/OnenotePageItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/onenote/pages/item/OnenotePageItemRequestBuilder.java @@ -91,18 +91,16 @@ public OnenotePageItemRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/users/{user%2Did}/onenote/pages/{onenotePage%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a OneNote page. + * Delete navigation property pages for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a OneNote page. + * Delete navigation property pages for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -111,21 +109,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a page object. Getting page information Access a page's metadata by page identifier: Getting page content You can use the page's content endpoint to get the HTML content of a page: The includeIDs=true query option is used to update pages. + * The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage get() { return get(null); } /** - * Retrieve the properties and relationships of a page object. Getting page information Access a page's metadata by page identifier: Getting page content You can use the page's content endpoint to get the HTML content of a page: The includeIDs=true query option is used to update pages. + * The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -160,7 +156,7 @@ public OnenotePage patch(@jakarta.annotation.Nonnull final OnenotePage body, @ja return this.requestAdapter.send(requestInfo, errorMapping, OnenotePage::createFromDiscriminatorValue); } /** - * Delete a OneNote page. + * Delete navigation property pages for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -168,7 +164,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a OneNote page. + * Delete navigation property pages for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -180,7 +176,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a page object. Getting page information Access a page's metadata by page identifier: Getting page content You can use the page's content endpoint to get the HTML content of a page: The includeIDs=true query option is used to update pages. + * The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -188,7 +184,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a page object. Getting page information Access a page's metadata by page identifier: Getting page content You can use the page's content endpoint to get the HTML content of a page: The includeIDs=true query option is used to update pages. + * The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -240,7 +236,7 @@ public OnenotePageItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final S public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a page object. Getting page information Access a page's metadata by page identifier: Getting page content You can use the page's content endpoint to get the HTML content of a page: The includeIDs=true query option is used to update pages. + * The pages in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/onenote/pages/item/content/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/onenote/pages/item/content/ContentRequestBuilder.java index 6c8306a8dc1..6a07cf7dd97 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/onenote/pages/item/content/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/onenote/pages/item/content/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * The page's HTML content. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/onenote/sectiongroups/SectionGroupsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/onenote/sectiongroups/SectionGroupsRequestBuilder.java index 75d6f1f9a53..7d0d86b35ed 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/onenote/sectiongroups/SectionGroupsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/onenote/sectiongroups/SectionGroupsRequestBuilder.java @@ -60,21 +60,19 @@ public SectionGroupsRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/users/{user%2Did}/onenote/sectionGroups{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of sectionGroup objects. + * The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link SectionGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroupCollectionResponse get() { return get(null); } /** - * Retrieve a list of sectionGroup objects. + * The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SectionGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroupCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public SectionGroup post(@jakarta.annotation.Nonnull final SectionGroup body, @j return this.requestAdapter.send(requestInfo, errorMapping, SectionGroup::createFromDiscriminatorValue); } /** - * Retrieve a list of sectionGroup objects. + * The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of sectionGroup objects. + * The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public SectionGroupsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new SectionGroupsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of sectionGroup objects. + * The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/onenote/sectiongroups/item/SectionGroupItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/onenote/sectiongroups/item/SectionGroupItemRequestBuilder.java index d6c9a88bc48..0f349bdf5c2 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/onenote/sectiongroups/item/SectionGroupItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/onenote/sectiongroups/item/SectionGroupItemRequestBuilder.java @@ -91,21 +91,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a sectionGroup object. + * The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link SectionGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroup get() { return get(null); } /** - * Retrieve the properties and relationships of a sectionGroup object. + * The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SectionGroup} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroup get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -160,7 +158,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a sectionGroup object. + * The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -168,7 +166,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a sectionGroup object. + * The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -220,7 +218,7 @@ public SectionGroupItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a sectionGroup object. + * The section groups in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/onenote/sectiongroups/item/sectiongroups/SectionGroupsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/onenote/sectiongroups/item/sectiongroups/SectionGroupsRequestBuilder.java index 3553956f967..27a263ef611 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/onenote/sectiongroups/item/sectiongroups/SectionGroupsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/onenote/sectiongroups/item/sectiongroups/SectionGroupsRequestBuilder.java @@ -59,21 +59,19 @@ public SectionGroupsRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/users/{user%2Did}/onenote/sectionGroups/{sectionGroup%2Did}/sectionGroups{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of section groups from the specified section group. + * The section groups in the section. Read-only. Nullable. * @return a {@link SectionGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroupCollectionResponse get() { return get(null); } /** - * Retrieve a list of section groups from the specified section group. + * The section groups in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link SectionGroupCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public SectionGroupCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public SectionGroupCollectionResponse get(@jakarta.annotation.Nullable final jav return this.requestAdapter.send(requestInfo, errorMapping, SectionGroupCollectionResponse::createFromDiscriminatorValue); } /** - * Retrieve a list of section groups from the specified section group. + * The section groups in the section. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of section groups from the specified section group. + * The section groups in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public SectionGroupsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new SectionGroupsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of section groups from the specified section group. + * The section groups in the section. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/onenote/sectiongroups/item/sections/SectionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/onenote/sectiongroups/item/sections/SectionsRequestBuilder.java index c23750854cd..5ebbfa73578 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/onenote/sectiongroups/item/sections/SectionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/onenote/sectiongroups/item/sections/SectionsRequestBuilder.java @@ -60,21 +60,19 @@ public SectionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/users/{user%2Did}/onenote/sectionGroups/{sectionGroup%2Did}/sections{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of onenoteSection objects from the specified section group. + * The sections in the section group. Read-only. Nullable. * @return a {@link OnenoteSectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSectionCollectionResponse get() { return get(null); } /** - * Retrieve a list of onenoteSection objects from the specified section group. + * The sections in the section group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenoteSectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSectionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OnenoteSectionCollectionResponse get(@jakarta.annotation.Nullable final j return this.requestAdapter.send(requestInfo, errorMapping, OnenoteSectionCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new onenoteSection in the specified section group. + * Create new navigation property to sections for users * @param body The request body * @return a {@link OnenoteSection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSection post(@jakarta.annotation.Nonnull final OnenoteSection body) { return post(body, null); } /** - * Create a new onenoteSection in the specified section group. + * Create new navigation property to sections for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenoteSection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSection post(@jakarta.annotation.Nonnull final OnenoteSection body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OnenoteSection post(@jakarta.annotation.Nonnull final OnenoteSection body return this.requestAdapter.send(requestInfo, errorMapping, OnenoteSection::createFromDiscriminatorValue); } /** - * Retrieve a list of onenoteSection objects from the specified section group. + * The sections in the section group. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of onenoteSection objects from the specified section group. + * The sections in the section group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new onenoteSection in the specified section group. + * Create new navigation property to sections for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new onenoteSection in the specified section group. + * Create new navigation property to sections for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public SectionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new SectionsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of onenoteSection objects from the specified section group. + * The sections in the section group. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/onenote/sectiongroups/item/sections/item/pages/PagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/onenote/sectiongroups/item/sections/item/pages/PagesRequestBuilder.java index d92d1668778..455027ef524 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/onenote/sectiongroups/item/sections/item/pages/PagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/onenote/sectiongroups/item/sections/item/pages/PagesRequestBuilder.java @@ -60,21 +60,19 @@ public PagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/users/{user%2Did}/onenote/sectionGroups/{sectionGroup%2Did}/sections/{onenoteSection%2Did}/pages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @return a {@link OnenotePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePageCollectionResponse get() { return get(null); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OnenotePageCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, OnenotePageCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for users * @param body The request body * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body) { return post(body, null); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body, @jak return this.requestAdapter.send(requestInfo, errorMapping, OnenotePage::createFromDiscriminatorValue); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new page in the specified section. + * Create new navigation property to pages for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public PagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new PagesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/onenote/sectiongroups/item/sections/item/pages/item/content/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/onenote/sectiongroups/item/sections/item/pages/item/content/ContentRequestBuilder.java index 27a680b0ce0..f141843ce06 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/onenote/sectiongroups/item/sections/item/pages/item/content/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/onenote/sectiongroups/item/sections/item/pages/item/content/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * The page's HTML content. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/onenote/sections/SectionsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/onenote/sections/SectionsRequestBuilder.java index 1707e13ae57..4c5c4382972 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/onenote/sections/SectionsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/onenote/sections/SectionsRequestBuilder.java @@ -60,21 +60,19 @@ public SectionsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/users/{user%2Did}/onenote/sections{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of onenoteSection objects. + * The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link OnenoteSectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSectionCollectionResponse get() { return get(null); } /** - * Retrieve a list of onenoteSection objects. + * The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenoteSectionCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSectionCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public OnenoteSection post(@jakarta.annotation.Nonnull final OnenoteSection body return this.requestAdapter.send(requestInfo, errorMapping, OnenoteSection::createFromDiscriminatorValue); } /** - * Retrieve a list of onenoteSection objects. + * The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of onenoteSection objects. + * The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public SectionsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new SectionsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of onenoteSection objects. + * The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/onenote/sections/item/OnenoteSectionItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/onenote/sections/item/OnenoteSectionItemRequestBuilder.java index 73db784381e..61b54faa531 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/onenote/sections/item/OnenoteSectionItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/onenote/sections/item/OnenoteSectionItemRequestBuilder.java @@ -100,21 +100,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a onenoteSection object. + * The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link OnenoteSection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSection get() { return get(null); } /** - * Retrieve the properties and relationships of a onenoteSection object. + * The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenoteSection} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenoteSection get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -169,7 +167,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a onenoteSection object. + * The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -177,7 +175,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a onenoteSection object. + * The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -229,7 +227,7 @@ public OnenoteSectionItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fina public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a onenoteSection object. + * The sections in all OneNote notebooks that are owned by the user or group. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/onenote/sections/item/pages/PagesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/onenote/sections/item/pages/PagesRequestBuilder.java index 62bea0b1ca2..5a9de48a5be 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/onenote/sections/item/pages/PagesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/onenote/sections/item/pages/PagesRequestBuilder.java @@ -60,21 +60,19 @@ public PagesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/users/{user%2Did}/onenote/sections/{onenoteSection%2Did}/pages{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @return a {@link OnenotePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePageCollectionResponse get() { return get(null); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePageCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePageCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OnenotePageCollectionResponse get(@jakarta.annotation.Nullable final java return this.requestAdapter.send(requestInfo, errorMapping, OnenotePageCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for users * @param body The request body * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body) { return post(body, null); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnenotePage} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OnenotePage post(@jakarta.annotation.Nonnull final OnenotePage body, @jak return this.requestAdapter.send(requestInfo, errorMapping, OnenotePage::createFromDiscriminatorValue); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new page in the specified section. + * Create new navigation property to pages for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new page in the specified section. + * Create new navigation property to pages for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public PagesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new PagesRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of page objects from the specified section. + * The collection of pages in the section. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/onenote/sections/item/pages/item/content/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/onenote/sections/item/pages/item/content/ContentRequestBuilder.java index f196f8dfc52..bc11abc06ca 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/onenote/sections/item/pages/item/content/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/onenote/sections/item/pages/item/content/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * The page's HTML content. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/OnlineMeetingsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/OnlineMeetingsRequestBuilder.java index 0dc3cf1a077..490cba76825 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/OnlineMeetingsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/OnlineMeetingsRequestBuilder.java @@ -69,21 +69,19 @@ public OnlineMeetingsRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/users/{user%2Did}/onlineMeetings{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the properties and relationships of an onlineMeeting object. For example, you can: Teams live event attendee report (deprecated) is an online meeting artifact. For details, see Online meeting artifacts and permissions. + * Information about a meeting, including the URL used to join a meeting, the attendees list, and the description. * @return a {@link OnlineMeetingCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnlineMeetingCollectionResponse get() { return get(null); } /** - * Retrieve the properties and relationships of an onlineMeeting object. For example, you can: Teams live event attendee report (deprecated) is an online meeting artifact. For details, see Online meeting artifacts and permissions. + * Information about a meeting, including the URL used to join a meeting, the attendees list, and the description. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnlineMeetingCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnlineMeetingCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public OnlineMeetingCollectionResponse get(@jakarta.annotation.Nullable final ja return this.requestAdapter.send(requestInfo, errorMapping, OnlineMeetingCollectionResponse::createFromDiscriminatorValue); } /** - * Create an online meeting on behalf of a user. + * Create new navigation property to onlineMeetings for users * @param body The request body * @return a {@link OnlineMeeting} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnlineMeeting post(@jakarta.annotation.Nonnull final OnlineMeeting body) { return post(body, null); } /** - * Create an online meeting on behalf of a user. + * Create new navigation property to onlineMeetings for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnlineMeeting} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnlineMeeting post(@jakarta.annotation.Nonnull final OnlineMeeting body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public OnlineMeeting post(@jakarta.annotation.Nonnull final OnlineMeeting body, return this.requestAdapter.send(requestInfo, errorMapping, OnlineMeeting::createFromDiscriminatorValue); } /** - * Retrieve the properties and relationships of an onlineMeeting object. For example, you can: Teams live event attendee report (deprecated) is an online meeting artifact. For details, see Online meeting artifacts and permissions. + * Information about a meeting, including the URL used to join a meeting, the attendees list, and the description. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of an onlineMeeting object. For example, you can: Teams live event attendee report (deprecated) is an online meeting artifact. For details, see Online meeting artifacts and permissions. + * Information about a meeting, including the URL used to join a meeting, the attendees list, and the description. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an online meeting on behalf of a user. + * Create new navigation property to onlineMeetings for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an online meeting on behalf of a user. + * Create new navigation property to onlineMeetings for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public OnlineMeetingsRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new OnlineMeetingsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the properties and relationships of an onlineMeeting object. For example, you can: Teams live event attendee report (deprecated) is an online meeting artifact. For details, see Online meeting artifacts and permissions. + * Information about a meeting, including the URL used to join a meeting, the attendees list, and the description. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/item/OnlineMeetingItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/item/OnlineMeetingItemRequestBuilder.java index ce606e384b9..867db3c7f61 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/item/OnlineMeetingItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/item/OnlineMeetingItemRequestBuilder.java @@ -100,18 +100,16 @@ public OnlineMeetingItemRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/users/{user%2Did}/onlineMeetings/{onlineMeeting%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete an onlineMeeting object. + * Delete navigation property onlineMeetings for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete an onlineMeeting object. + * Delete navigation property onlineMeetings for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -120,21 +118,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of an onlineMeeting object. For example, you can: Teams live event attendee report (deprecated) is an online meeting artifact. For details, see Online meeting artifacts and permissions. + * Information about a meeting, including the URL used to join a meeting, the attendees list, and the description. * @return a {@link OnlineMeeting} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnlineMeeting get() { return get(null); } /** - * Retrieve the properties and relationships of an onlineMeeting object. For example, you can: Teams live event attendee report (deprecated) is an online meeting artifact. For details, see Online meeting artifacts and permissions. + * Information about a meeting, including the URL used to join a meeting, the attendees list, and the description. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnlineMeeting} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnlineMeeting get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -144,23 +140,21 @@ public OnlineMeeting get(@jakarta.annotation.Nullable final java.util.function.C return this.requestAdapter.send(requestInfo, errorMapping, OnlineMeeting::createFromDiscriminatorValue); } /** - * Update the properties of the specified onlineMeeting object. Please see Request body section for the list of properties that support updating. + * Update the navigation property onlineMeetings in users * @param body The request body * @return a {@link OnlineMeeting} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnlineMeeting patch(@jakarta.annotation.Nonnull final OnlineMeeting body) { return patch(body, null); } /** - * Update the properties of the specified onlineMeeting object. Please see Request body section for the list of properties that support updating. + * Update the navigation property onlineMeetings in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OnlineMeeting} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OnlineMeeting patch(@jakarta.annotation.Nonnull final OnlineMeeting body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -171,7 +165,7 @@ public OnlineMeeting patch(@jakarta.annotation.Nonnull final OnlineMeeting body, return this.requestAdapter.send(requestInfo, errorMapping, OnlineMeeting::createFromDiscriminatorValue); } /** - * Delete an onlineMeeting object. + * Delete navigation property onlineMeetings for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -179,7 +173,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete an onlineMeeting object. + * Delete navigation property onlineMeetings for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -191,7 +185,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of an onlineMeeting object. For example, you can: Teams live event attendee report (deprecated) is an online meeting artifact. For details, see Online meeting artifacts and permissions. + * Information about a meeting, including the URL used to join a meeting, the attendees list, and the description. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -199,7 +193,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of an onlineMeeting object. For example, you can: Teams live event attendee report (deprecated) is an online meeting artifact. For details, see Online meeting artifacts and permissions. + * Information about a meeting, including the URL used to join a meeting, the attendees list, and the description. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -211,7 +205,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of the specified onlineMeeting object. Please see Request body section for the list of properties that support updating. + * Update the navigation property onlineMeetings in users * @param body The request body * @return a {@link RequestInformation} */ @@ -220,7 +214,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of the specified onlineMeeting object. Please see Request body section for the list of properties that support updating. + * Update the navigation property onlineMeetings in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -251,7 +245,7 @@ public OnlineMeetingItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of an onlineMeeting object. For example, you can: Teams live event attendee report (deprecated) is an online meeting artifact. For details, see Online meeting artifacts and permissions. + * Information about a meeting, including the URL used to join a meeting, the attendees list, and the description. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/item/attendancereports/item/attendancerecords/AttendanceRecordsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/item/attendancereports/item/attendancerecords/AttendanceRecordsRequestBuilder.java index b53761cbe6b..02b9452f627 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/item/attendancereports/item/attendancerecords/AttendanceRecordsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/item/attendancereports/item/attendancerecords/AttendanceRecordsRequestBuilder.java @@ -60,21 +60,19 @@ public AttendanceRecordsRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/users/{user%2Did}/onlineMeetings/{onlineMeeting%2Did}/attendanceReports/{meetingAttendanceReport%2Did}/attendanceRecords{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of attendanceRecord objects and their properties. + * List of attendance records of an attendance report. Read-only. * @return a {@link AttendanceRecordCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttendanceRecordCollectionResponse get() { return get(null); } /** - * Get a list of attendanceRecord objects and their properties. + * List of attendance records of an attendance report. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttendanceRecordCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttendanceRecordCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public AttendanceRecord post(@jakarta.annotation.Nonnull final AttendanceRecord return this.requestAdapter.send(requestInfo, errorMapping, AttendanceRecord::createFromDiscriminatorValue); } /** - * Get a list of attendanceRecord objects and their properties. + * List of attendance records of an attendance report. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of attendanceRecord objects and their properties. + * List of attendance records of an attendance report. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public AttendanceRecordsRequestBuilder withUrl(@jakarta.annotation.Nonnull final return new AttendanceRecordsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of attendanceRecord objects and their properties. + * List of attendance records of an attendance report. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/item/attendeereport/AttendeeReportRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/item/attendeereport/AttendeeReportRequestBuilder.java index 76cb4648bf1..a3ea9c2f93a 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/item/attendeereport/AttendeeReportRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/item/attendeereport/AttendeeReportRequestBuilder.java @@ -39,7 +39,6 @@ public AttendeeReportRequestBuilder(@jakarta.annotation.Nonnull final String raw * Get attendeeReport for the navigation property onlineMeetings from users * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -50,7 +49,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/item/getvirtualappointmentjoinweburl/GetVirtualAppointmentJoinWebUrlRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/item/getvirtualappointmentjoinweburl/GetVirtualAppointmentJoinWebUrlRequestBuilder.java index f97001228c0..74d0085b4b7 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/item/getvirtualappointmentjoinweburl/GetVirtualAppointmentJoinWebUrlRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/item/getvirtualappointmentjoinweburl/GetVirtualAppointmentJoinWebUrlRequestBuilder.java @@ -35,19 +35,21 @@ public GetVirtualAppointmentJoinWebUrlRequestBuilder(@jakarta.annotation.Nonnull super(requestAdapter, "{+baseurl}/users/{user%2Did}/onlineMeetings/{onlineMeeting%2Did}/getVirtualAppointmentJoinWebUrl()", rawUrl); } /** - * Invoke function getVirtualAppointmentJoinWebUrl + * Get a join web URL for a Microsoft Virtual Appointment. This web URL includes enhanced business-to-customer experiences such as mobile browser join and virtual lobby rooms. With Teams Premium, you can configure a custom lobby room experience for attendees by adding your company logo and access the Virtual Appointments usage report for organizational analytics. * @return a {@link GetVirtualAppointmentJoinWebUrlGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetVirtualAppointmentJoinWebUrlGetResponse get() { return get(null); } /** - * Invoke function getVirtualAppointmentJoinWebUrl + * Get a join web URL for a Microsoft Virtual Appointment. This web URL includes enhanced business-to-customer experiences such as mobile browser join and virtual lobby rooms. With Teams Premium, you can configure a custom lobby room experience for attendees by adding your company logo and access the Virtual Appointments usage report for organizational analytics. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link GetVirtualAppointmentJoinWebUrlGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public GetVirtualAppointmentJoinWebUrlGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -57,7 +59,7 @@ public GetVirtualAppointmentJoinWebUrlGetResponse get(@jakarta.annotation.Nullab return this.requestAdapter.send(requestInfo, errorMapping, GetVirtualAppointmentJoinWebUrlGetResponse::createFromDiscriminatorValue); } /** - * Invoke function getVirtualAppointmentJoinWebUrl + * Get a join web URL for a Microsoft Virtual Appointment. This web URL includes enhanced business-to-customer experiences such as mobile browser join and virtual lobby rooms. With Teams Premium, you can configure a custom lobby room experience for attendees by adding your company logo and access the Virtual Appointments usage report for organizational analytics. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -65,7 +67,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function getVirtualAppointmentJoinWebUrl + * Get a join web URL for a Microsoft Virtual Appointment. This web URL includes enhanced business-to-customer experiences such as mobile browser join and virtual lobby rooms. With Teams Premium, you can configure a custom lobby room experience for attendees by adding your company logo and access the Virtual Appointments usage report for organizational analytics. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ diff --git a/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/item/recordings/RecordingsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/item/recordings/RecordingsRequestBuilder.java index 9474ccc12f2..3515e5c9e56 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/item/recordings/RecordingsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/item/recordings/RecordingsRequestBuilder.java @@ -60,7 +60,7 @@ public RecordingsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/users/{user%2Did}/onlineMeetings/{onlineMeeting%2Did}/recordings{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a callRecording object associated with a scheduled onlineMeeting. This API doesn't support getting call recordings from channel meetings. For a recording, this API returns the metadata of the single recording associated with the online meeting. For the content of a recording, this API returns the stream of bytes associated with the recording. + * The recordings of an online meeting. Read-only. * @return a {@link CallRecordingCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code */ @@ -69,7 +69,7 @@ public CallRecordingCollectionResponse get() { return get(null); } /** - * Get a callRecording object associated with a scheduled onlineMeeting. This API doesn't support getting call recordings from channel meetings. For a recording, this API returns the metadata of the single recording associated with the online meeting. For the content of a recording, this API returns the stream of bytes associated with the recording. + * The recordings of an online meeting. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CallRecordingCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code @@ -107,7 +107,7 @@ public CallRecording post(@jakarta.annotation.Nonnull final CallRecording body, return this.requestAdapter.send(requestInfo, errorMapping, CallRecording::createFromDiscriminatorValue); } /** - * Get a callRecording object associated with a scheduled onlineMeeting. This API doesn't support getting call recordings from channel meetings. For a recording, this API returns the metadata of the single recording associated with the online meeting. For the content of a recording, this API returns the stream of bytes associated with the recording. + * The recordings of an online meeting. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -115,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a callRecording object associated with a scheduled onlineMeeting. This API doesn't support getting call recordings from channel meetings. For a recording, this API returns the metadata of the single recording associated with the online meeting. For the content of a recording, this API returns the stream of bytes associated with the recording. + * The recordings of an online meeting. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -161,7 +161,7 @@ public RecordingsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new RecordingsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a callRecording object associated with a scheduled onlineMeeting. This API doesn't support getting call recordings from channel meetings. For a recording, this API returns the metadata of the single recording associated with the online meeting. For the content of a recording, this API returns the stream of bytes associated with the recording. + * The recordings of an online meeting. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/item/recordings/item/CallRecordingItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/item/recordings/item/CallRecordingItemRequestBuilder.java index 2e742b0311f..cd57b6a5d1a 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/item/recordings/item/CallRecordingItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/item/recordings/item/CallRecordingItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get a callRecording object associated with a scheduled onlineMeeting. This API doesn't support getting call recordings from channel meetings. For a recording, this API returns the metadata of the single recording associated with the online meeting. For the content of a recording, this API returns the stream of bytes associated with the recording. + * The recordings of an online meeting. Read-only. * @return a {@link CallRecording} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CallRecording get() { return get(null); } /** - * Get a callRecording object associated with a scheduled onlineMeeting. This API doesn't support getting call recordings from channel meetings. For a recording, this API returns the metadata of the single recording associated with the online meeting. For the content of a recording, this API returns the stream of bytes associated with the recording. + * The recordings of an online meeting. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CallRecording} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CallRecording get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get a callRecording object associated with a scheduled onlineMeeting. This API doesn't support getting call recordings from channel meetings. For a recording, this API returns the metadata of the single recording associated with the online meeting. For the content of a recording, this API returns the stream of bytes associated with the recording. + * The recordings of an online meeting. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a callRecording object associated with a scheduled onlineMeeting. This API doesn't support getting call recordings from channel meetings. For a recording, this API returns the metadata of the single recording associated with the online meeting. For the content of a recording, this API returns the stream of bytes associated with the recording. + * The recordings of an online meeting. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public CallRecordingItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get a callRecording object associated with a scheduled onlineMeeting. This API doesn't support getting call recordings from channel meetings. For a recording, this API returns the metadata of the single recording associated with the online meeting. For the content of a recording, this API returns the stream of bytes associated with the recording. + * The recordings of an online meeting. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/item/transcripts/TranscriptsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/item/transcripts/TranscriptsRequestBuilder.java index f257a938283..66c14938d2d 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/item/transcripts/TranscriptsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/item/transcripts/TranscriptsRequestBuilder.java @@ -60,21 +60,19 @@ public TranscriptsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/users/{user%2Did}/onlineMeetings/{onlineMeeting%2Did}/transcripts{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of callTranscript objects associated with a scheduled onlineMeeting. This API doesn't support getting call transcripts from channel meetings. + * The transcripts of an online meeting. Read-only. * @return a {@link CallTranscriptCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CallTranscriptCollectionResponse get() { return get(null); } /** - * Retrieve the list of callTranscript objects associated with a scheduled onlineMeeting. This API doesn't support getting call transcripts from channel meetings. + * The transcripts of an online meeting. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CallTranscriptCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CallTranscriptCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public CallTranscript post(@jakarta.annotation.Nonnull final CallTranscript body return this.requestAdapter.send(requestInfo, errorMapping, CallTranscript::createFromDiscriminatorValue); } /** - * Retrieve the list of callTranscript objects associated with a scheduled onlineMeeting. This API doesn't support getting call transcripts from channel meetings. + * The transcripts of an online meeting. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of callTranscript objects associated with a scheduled onlineMeeting. This API doesn't support getting call transcripts from channel meetings. + * The transcripts of an online meeting. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public TranscriptsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new TranscriptsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of callTranscript objects associated with a scheduled onlineMeeting. This API doesn't support getting call transcripts from channel meetings. + * The transcripts of an online meeting. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/item/transcripts/item/CallTranscriptItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/item/transcripts/item/CallTranscriptItemRequestBuilder.java index 0ff578bddfe..74982d3a337 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/item/transcripts/item/CallTranscriptItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/item/transcripts/item/CallTranscriptItemRequestBuilder.java @@ -73,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve a callTranscript object associated with a scheduled onlineMeeting. This API doesn't support getting call transcripts from channel meetings. Retrieving the transcript returns the metadata of the single transcript associated with the online meeting. Retrieving the content of the transcript returns the stream of text associated with the transcript. + * The transcripts of an online meeting. Read-only. * @return a {@link CallTranscript} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CallTranscript get() { return get(null); } /** - * Retrieve a callTranscript object associated with a scheduled onlineMeeting. This API doesn't support getting call transcripts from channel meetings. Retrieving the transcript returns the metadata of the single transcript associated with the online meeting. Retrieving the content of the transcript returns the stream of text associated with the transcript. + * The transcripts of an online meeting. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link CallTranscript} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public CallTranscript get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -142,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve a callTranscript object associated with a scheduled onlineMeeting. This API doesn't support getting call transcripts from channel meetings. Retrieving the transcript returns the metadata of the single transcript associated with the online meeting. Retrieving the content of the transcript returns the stream of text associated with the transcript. + * The transcripts of an online meeting. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -150,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a callTranscript object associated with a scheduled onlineMeeting. This API doesn't support getting call transcripts from channel meetings. Retrieving the transcript returns the metadata of the single transcript associated with the online meeting. Retrieving the content of the transcript returns the stream of text associated with the transcript. + * The transcripts of an online meeting. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -202,7 +200,7 @@ public CallTranscriptItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fina public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve a callTranscript object associated with a scheduled onlineMeeting. This API doesn't support getting call transcripts from channel meetings. Retrieving the transcript returns the metadata of the single transcript associated with the online meeting. Retrieving the content of the transcript returns the stream of text associated with the transcript. + * The transcripts of an online meeting. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/item/transcripts/item/content/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/item/transcripts/item/content/ContentRequestBuilder.java index a752bd30e7f..5ad05158335 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/item/transcripts/item/content/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/item/transcripts/item/content/ContentRequestBuilder.java @@ -40,7 +40,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * The content of the transcript. Read-only. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -51,7 +50,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/item/transcripts/item/metadatacontent/MetadataContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/item/transcripts/item/metadatacontent/MetadataContentRequestBuilder.java index dd1b3369a41..de1aa44536c 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/item/transcripts/item/metadatacontent/MetadataContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/onlinemeetings/item/transcripts/item/metadatacontent/MetadataContentRequestBuilder.java @@ -39,7 +39,6 @@ public MetadataContentRequestBuilder(@jakarta.annotation.Nonnull final String ra * The time-aligned metadata of the utterances in the transcript. Read-only. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -50,7 +49,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/outlook/mastercategories/MasterCategoriesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/outlook/mastercategories/MasterCategoriesRequestBuilder.java index e30a25284fb..cdcd1ad5b6e 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/outlook/mastercategories/MasterCategoriesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/outlook/mastercategories/MasterCategoriesRequestBuilder.java @@ -60,21 +60,19 @@ public MasterCategoriesRequestBuilder(@jakarta.annotation.Nonnull final String r super(requestAdapter, "{+baseurl}/users/{user%2Did}/outlook/masterCategories{?%24count,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get all the categories that have been defined for a user. + * A list of categories defined for the user. * @return a {@link OutlookCategoryCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OutlookCategoryCollectionResponse get() { return get(null); } /** - * Get all the categories that have been defined for a user. + * A list of categories defined for the user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OutlookCategoryCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OutlookCategoryCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public OutlookCategoryCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, OutlookCategoryCollectionResponse::createFromDiscriminatorValue); } /** - * Create an outlookCategory object in the user's master list of categories. + * Create new navigation property to masterCategories for users * @param body The request body * @return a {@link OutlookCategory} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OutlookCategory post(@jakarta.annotation.Nonnull final OutlookCategory body) { return post(body, null); } /** - * Create an outlookCategory object in the user's master list of categories. + * Create new navigation property to masterCategories for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OutlookCategory} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OutlookCategory post(@jakarta.annotation.Nonnull final OutlookCategory body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public OutlookCategory post(@jakarta.annotation.Nonnull final OutlookCategory bo return this.requestAdapter.send(requestInfo, errorMapping, OutlookCategory::createFromDiscriminatorValue); } /** - * Get all the categories that have been defined for a user. + * A list of categories defined for the user. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get all the categories that have been defined for a user. + * A list of categories defined for the user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create an outlookCategory object in the user's master list of categories. + * Create new navigation property to masterCategories for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create an outlookCategory object in the user's master list of categories. + * Create new navigation property to masterCategories for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public MasterCategoriesRequestBuilder withUrl(@jakarta.annotation.Nonnull final return new MasterCategoriesRequestBuilder(rawUrl, requestAdapter); } /** - * Get all the categories that have been defined for a user. + * A list of categories defined for the user. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/outlook/mastercategories/item/OutlookCategoryItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/outlook/mastercategories/item/OutlookCategoryItemRequestBuilder.java index 99542312729..1402b54f6b5 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/outlook/mastercategories/item/OutlookCategoryItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/outlook/mastercategories/item/OutlookCategoryItemRequestBuilder.java @@ -37,18 +37,16 @@ public OutlookCategoryItemRequestBuilder(@jakarta.annotation.Nonnull final Strin super(requestAdapter, "{+baseurl}/users/{user%2Did}/outlook/masterCategories/{outlookCategory%2Did}{?%24select}", rawUrl); } /** - * Delete the specified outlookCategory object. + * Delete navigation property masterCategories for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete the specified outlookCategory object. + * Delete navigation property masterCategories for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the properties and relationships of the specified outlookCategory object. + * A list of categories defined for the user. * @return a {@link OutlookCategory} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OutlookCategory get() { return get(null); } /** - * Get the properties and relationships of the specified outlookCategory object. + * A list of categories defined for the user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OutlookCategory} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OutlookCategory get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public OutlookCategory get(@jakarta.annotation.Nullable final java.util.function return this.requestAdapter.send(requestInfo, errorMapping, OutlookCategory::createFromDiscriminatorValue); } /** - * Update the writable property, color, of the specified outlookCategory object. You can't modify the displayName property once you have created the category. + * Update the navigation property masterCategories in users * @param body The request body * @return a {@link OutlookCategory} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OutlookCategory patch(@jakarta.annotation.Nonnull final OutlookCategory body) { return patch(body, null); } /** - * Update the writable property, color, of the specified outlookCategory object. You can't modify the displayName property once you have created the category. + * Update the navigation property masterCategories in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link OutlookCategory} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public OutlookCategory patch(@jakarta.annotation.Nonnull final OutlookCategory body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public OutlookCategory patch(@jakarta.annotation.Nonnull final OutlookCategory b return this.requestAdapter.send(requestInfo, errorMapping, OutlookCategory::createFromDiscriminatorValue); } /** - * Delete the specified outlookCategory object. + * Delete navigation property masterCategories for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete the specified outlookCategory object. + * Delete navigation property masterCategories for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the properties and relationships of the specified outlookCategory object. + * A list of categories defined for the user. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the properties and relationships of the specified outlookCategory object. + * A list of categories defined for the user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the writable property, color, of the specified outlookCategory object. You can't modify the displayName property once you have created the category. + * Update the navigation property masterCategories in users * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the writable property, color, of the specified outlookCategory object. You can't modify the displayName property once you have created the category. + * Update the navigation property masterCategories in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public OutlookCategoryItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fin public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the properties and relationships of the specified outlookCategory object. + * A list of categories defined for the user. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/owneddevices/OwnedDevicesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/owneddevices/OwnedDevicesRequestBuilder.java index deca7f9508c..a205f2ea2ad 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/owneddevices/OwnedDevicesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/owneddevices/OwnedDevicesRequestBuilder.java @@ -89,7 +89,6 @@ public OwnedDevicesRequestBuilder(@jakarta.annotation.Nonnull final String rawUr * Devices that are owned by the user. Read-only. Nullable. Supports $expand and $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1). * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get() { @@ -100,7 +99,6 @@ public DirectoryObjectCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/ownedobjects/OwnedObjectsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/ownedobjects/OwnedObjectsRequestBuilder.java index 5d39819ef5b..ef90b847b9b 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/ownedobjects/OwnedObjectsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/ownedobjects/OwnedObjectsRequestBuilder.java @@ -89,7 +89,6 @@ public OwnedObjectsRequestBuilder(@jakarta.annotation.Nonnull final String rawUr * Directory objects that are owned by the user. Read-only. Nullable. Supports $expand, $select nested in $expand, and $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1). * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get() { @@ -100,7 +99,6 @@ public DirectoryObjectCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/people/PeopleRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/people/PeopleRequestBuilder.java index 227ad1e6283..225fe14cb32 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/people/PeopleRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/people/PeopleRequestBuilder.java @@ -59,21 +59,19 @@ public PeopleRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ja super(requestAdapter, "{+baseurl}/users/{user%2Did}/people{?%24count,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a collection of person objects ordered by their relevance to the user, which is determined by the user's communication and collaboration patterns, and business relationships. You can get this information via the People API. For examples, see the Examples section and the article Use the People API to get information about the people most relevant to you. + * People that are relevant to the user. Read-only. Nullable. * @return a {@link PersonCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PersonCollectionResponse get() { return get(null); } /** - * Retrieve a collection of person objects ordered by their relevance to the user, which is determined by the user's communication and collaboration patterns, and business relationships. You can get this information via the People API. For examples, see the Examples section and the article Use the People API to get information about the people most relevant to you. + * People that are relevant to the user. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PersonCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PersonCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public PersonCollectionResponse get(@jakarta.annotation.Nullable final java.util return this.requestAdapter.send(requestInfo, errorMapping, PersonCollectionResponse::createFromDiscriminatorValue); } /** - * Retrieve a collection of person objects ordered by their relevance to the user, which is determined by the user's communication and collaboration patterns, and business relationships. You can get this information via the People API. For examples, see the Examples section and the article Use the People API to get information about the people most relevant to you. + * People that are relevant to the user. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a collection of person objects ordered by their relevance to the user, which is determined by the user's communication and collaboration patterns, and business relationships. You can get this information via the People API. For examples, see the Examples section and the article Use the People API to get information about the people most relevant to you. + * People that are relevant to the user. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public PeopleRequestBuilder withUrl(@jakarta.annotation.Nonnull final String raw return new PeopleRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a collection of person objects ordered by their relevance to the user, which is determined by the user's communication and collaboration patterns, and business relationships. You can get this information via the People API. For examples, see the Examples section and the article Use the People API to get information about the people most relevant to you. + * People that are relevant to the user. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/permissiongrants/PermissionGrantsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/permissiongrants/PermissionGrantsRequestBuilder.java index f2c7d414264..e375ef55265 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/permissiongrants/PermissionGrantsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/permissiongrants/PermissionGrantsRequestBuilder.java @@ -60,21 +60,19 @@ public PermissionGrantsRequestBuilder(@jakarta.annotation.Nonnull final String r super(requestAdapter, "{+baseurl}/users/{user%2Did}/permissionGrants{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * List all resource-specific permission grants of a user. This list specifies the Microsoft Entra apps that have access to the user, along with the corresponding resource-specific access that each app has. + * List all resource-specific permission grants of a user. * @return a {@link ResourceSpecificPermissionGrantCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ResourceSpecificPermissionGrantCollectionResponse get() { return get(null); } /** - * List all resource-specific permission grants of a user. This list specifies the Microsoft Entra apps that have access to the user, along with the corresponding resource-specific access that each app has. + * List all resource-specific permission grants of a user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ResourceSpecificPermissionGrantCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ResourceSpecificPermissionGrantCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public ResourceSpecificPermissionGrant post(@jakarta.annotation.Nonnull final Re return this.requestAdapter.send(requestInfo, errorMapping, ResourceSpecificPermissionGrant::createFromDiscriminatorValue); } /** - * List all resource-specific permission grants of a user. This list specifies the Microsoft Entra apps that have access to the user, along with the corresponding resource-specific access that each app has. + * List all resource-specific permission grants of a user. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * List all resource-specific permission grants of a user. This list specifies the Microsoft Entra apps that have access to the user, along with the corresponding resource-specific access that each app has. + * List all resource-specific permission grants of a user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public PermissionGrantsRequestBuilder withUrl(@jakarta.annotation.Nonnull final return new PermissionGrantsRequestBuilder(rawUrl, requestAdapter); } /** - * List all resource-specific permission grants of a user. This list specifies the Microsoft Entra apps that have access to the user, along with the corresponding resource-specific access that each app has. + * List all resource-specific permission grants of a user. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/photo/PhotoRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/photo/PhotoRequestBuilder.java index 8434677250f..394695b0c68 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/photo/PhotoRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/photo/PhotoRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the specified profilePhoto or its metadata (profilePhoto properties). The supported sizes of HD photos on Microsoft 365 are as follows: 48x48, 64x64, 96x96, 120x120, 240x240,360x360, 432x432, 504x504, and 648x648. Photos can be any dimension if they're stored in Microsoft Entra ID. You can get the metadata of the largest available photo or specify a size to get the metadata for that photo size.If the size you request is unavailable, you can still get a smaller size that the user has uploaded and made available.For example, if the user uploads a photo that is 504x504 pixels, all but the 648x648 size of the photo is available for download. + * The user's profile photo. Read-only. * @return a {@link ProfilePhoto} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ProfilePhoto get() { return get(null); } /** - * Get the specified profilePhoto or its metadata (profilePhoto properties). The supported sizes of HD photos on Microsoft 365 are as follows: 48x48, 64x64, 96x96, 120x120, 240x240,360x360, 432x432, 504x504, and 648x648. Photos can be any dimension if they're stored in Microsoft Entra ID. You can get the metadata of the largest available photo or specify a size to get the metadata for that photo size.If the size you request is unavailable, you can still get a smaller size that the user has uploaded and made available.For example, if the user uploads a photo that is 504x504 pixels, all but the 648x648 size of the photo is available for download. + * The user's profile photo. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ProfilePhoto} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ProfilePhoto get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the specified profilePhoto or its metadata (profilePhoto properties). The supported sizes of HD photos on Microsoft 365 are as follows: 48x48, 64x64, 96x96, 120x120, 240x240,360x360, 432x432, 504x504, and 648x648. Photos can be any dimension if they're stored in Microsoft Entra ID. You can get the metadata of the largest available photo or specify a size to get the metadata for that photo size.If the size you request is unavailable, you can still get a smaller size that the user has uploaded and made available.For example, if the user uploads a photo that is 504x504 pixels, all but the 648x648 size of the photo is available for download. + * The user's profile photo. Read-only. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the specified profilePhoto or its metadata (profilePhoto properties). The supported sizes of HD photos on Microsoft 365 are as follows: 48x48, 64x64, 96x96, 120x120, 240x240,360x360, 432x432, 504x504, and 648x648. Photos can be any dimension if they're stored in Microsoft Entra ID. You can get the metadata of the largest available photo or specify a size to get the metadata for that photo size.If the size you request is unavailable, you can still get a smaller size that the user has uploaded and made available.For example, if the user uploads a photo that is 504x504 pixels, all but the 648x648 size of the photo is available for download. + * The user's profile photo. Read-only. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public PhotoRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the specified profilePhoto or its metadata (profilePhoto properties). The supported sizes of HD photos on Microsoft 365 are as follows: 48x48, 64x64, 96x96, 120x120, 240x240,360x360, 432x432, 504x504, and 648x648. Photos can be any dimension if they're stored in Microsoft Entra ID. You can get the metadata of the largest available photo or specify a size to get the metadata for that photo size.If the size you request is unavailable, you can still get a smaller size that the user has uploaded and made available.For example, if the user uploads a photo that is 504x504 pixels, all but the 648x648 size of the photo is available for download. + * The user's profile photo. Read-only. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/photo/value/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/photo/value/ContentRequestBuilder.java index 163ee5e6c24..494a6c515f8 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/photo/value/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/photo/value/ContentRequestBuilder.java @@ -39,7 +39,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * Get media content for the navigation property photo from users * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -50,7 +49,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/PlansRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/PlansRequestBuilder.java index 19e29940a43..42bd347cc32 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/PlansRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/PlansRequestBuilder.java @@ -60,21 +60,19 @@ public PlansRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/users/{user%2Did}/planner/plans{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of plannerplan objects shared with a user object. + * Read-only. Nullable. Returns the plannerTasks assigned to the user. * @return a {@link PlannerPlanCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerPlanCollectionResponse get() { return get(null); } /** - * Retrieve a list of plannerplan objects shared with a user object. + * Read-only. Nullable. Returns the plannerTasks assigned to the user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerPlanCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerPlanCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public PlannerPlan post(@jakarta.annotation.Nonnull final PlannerPlan body, @jak return this.requestAdapter.send(requestInfo, errorMapping, PlannerPlan::createFromDiscriminatorValue); } /** - * Retrieve a list of plannerplan objects shared with a user object. + * Read-only. Nullable. Returns the plannerTasks assigned to the user. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of plannerplan objects shared with a user object. + * Read-only. Nullable. Returns the plannerTasks assigned to the user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public PlansRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new PlansRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of plannerplan objects shared with a user object. + * Read-only. Nullable. Returns the plannerTasks assigned to the user. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/buckets/BucketsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/buckets/BucketsRequestBuilder.java index cf94c75f5e9..28f1b3b0c1e 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/buckets/BucketsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/buckets/BucketsRequestBuilder.java @@ -60,21 +60,19 @@ public BucketsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/users/{user%2Did}/planner/plans/{plannerPlan%2Did}/buckets{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of plannerBucket objects contained by a plannerPlan object. + * Read-only. Nullable. Collection of buckets in the plan. * @return a {@link PlannerBucketCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketCollectionResponse get() { return get(null); } /** - * Retrieve a list of plannerBucket objects contained by a plannerPlan object. + * Read-only. Nullable. Collection of buckets in the plan. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerBucketCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public PlannerBucket post(@jakarta.annotation.Nonnull final PlannerBucket body, return this.requestAdapter.send(requestInfo, errorMapping, PlannerBucket::createFromDiscriminatorValue); } /** - * Retrieve a list of plannerBucket objects contained by a plannerPlan object. + * Read-only. Nullable. Collection of buckets in the plan. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of plannerBucket objects contained by a plannerPlan object. + * Read-only. Nullable. Collection of buckets in the plan. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public BucketsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new BucketsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of plannerBucket objects contained by a plannerPlan object. + * Read-only. Nullable. Collection of buckets in the plan. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/buckets/item/tasks/TasksRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/buckets/item/tasks/TasksRequestBuilder.java index e1ea6856ca8..02aef359f6d 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/buckets/item/tasks/TasksRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/buckets/item/tasks/TasksRequestBuilder.java @@ -60,21 +60,19 @@ public TasksRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/users/{user%2Did}/planner/plans/{plannerPlan%2Did}/buckets/{plannerBucket%2Did}/tasks{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of plannerTask objects associated to a plannerBucket object. + * Read-only. Nullable. The collection of tasks in the bucket. * @return a {@link PlannerTaskCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskCollectionResponse get() { return get(null); } /** - * Retrieve a list of plannerTask objects associated to a plannerBucket object. + * Read-only. Nullable. The collection of tasks in the bucket. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerTaskCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public PlannerTask post(@jakarta.annotation.Nonnull final PlannerTask body, @jak return this.requestAdapter.send(requestInfo, errorMapping, PlannerTask::createFromDiscriminatorValue); } /** - * Retrieve a list of plannerTask objects associated to a plannerBucket object. + * Read-only. Nullable. The collection of tasks in the bucket. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of plannerTask objects associated to a plannerBucket object. + * Read-only. Nullable. The collection of tasks in the bucket. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public TasksRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new TasksRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of plannerTask objects associated to a plannerBucket object. + * Read-only. Nullable. The collection of tasks in the bucket. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/buckets/item/tasks/item/assignedtotaskboardformat/AssignedToTaskBoardFormatRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/buckets/item/tasks/item/assignedtotaskboardformat/AssignedToTaskBoardFormatRequestBuilder.java index fc87acfdb3c..e3a533341a4 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/buckets/item/tasks/item/assignedtotaskboardformat/AssignedToTaskBoardFormatRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/buckets/item/tasks/item/assignedtotaskboardformat/AssignedToTaskBoardFormatRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. * @return a {@link PlannerAssignedToTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerAssignedToTaskBoardTaskFormat get() { return get(null); } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerAssignedToTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerAssignedToTaskBoardTaskFormat get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,6 @@ public PlannerAssignedToTaskBoardTaskFormat get(@jakarta.annotation.Nullable fin * @param body The request body * @return a {@link PlannerAssignedToTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerAssignedToTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerAssignedToTaskBoardTaskFormat body) { @@ -95,7 +92,6 @@ public PlannerAssignedToTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull fi * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerAssignedToTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerAssignedToTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerAssignedToTaskBoardTaskFormat body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public AssignedToTaskBoardFormatRequestBuilder withUrl(@jakarta.annotation.Nonnu public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/buckets/item/tasks/item/buckettaskboardformat/BucketTaskBoardFormatRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/buckets/item/tasks/item/buckettaskboardformat/BucketTaskBoardFormatRequestBuilder.java index e4e25529d9e..2d73385fe10 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/buckets/item/tasks/item/buckettaskboardformat/BucketTaskBoardFormatRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/buckets/item/tasks/item/buckettaskboardformat/BucketTaskBoardFormatRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. * @return a {@link PlannerBucketTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketTaskBoardTaskFormat get() { return get(null); } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerBucketTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketTaskBoardTaskFormat get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,6 @@ public PlannerBucketTaskBoardTaskFormat get(@jakarta.annotation.Nullable final j * @param body The request body * @return a {@link PlannerBucketTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerBucketTaskBoardTaskFormat body) { @@ -95,7 +92,6 @@ public PlannerBucketTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerBucketTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerBucketTaskBoardTaskFormat body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public BucketTaskBoardFormatRequestBuilder withUrl(@jakarta.annotation.Nonnull f public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/buckets/item/tasks/item/details/DetailsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/buckets/item/tasks/item/details/DetailsRequestBuilder.java index e8e29573531..41b5aeccea7 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/buckets/item/tasks/item/details/DetailsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/buckets/item/tasks/item/details/DetailsRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. * @return a {@link PlannerTaskDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskDetails get() { return get(null); } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerTaskDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskDetails get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,6 @@ public PlannerTaskDetails get(@jakarta.annotation.Nullable final java.util.funct * @param body The request body * @return a {@link PlannerTaskDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskDetails patch(@jakarta.annotation.Nonnull final PlannerTaskDetails body) { @@ -95,7 +92,6 @@ public PlannerTaskDetails patch(@jakarta.annotation.Nonnull final PlannerTaskDet * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerTaskDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskDetails patch(@jakarta.annotation.Nonnull final PlannerTaskDetails body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public DetailsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/buckets/item/tasks/item/progresstaskboardformat/ProgressTaskBoardFormatRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/buckets/item/tasks/item/progresstaskboardformat/ProgressTaskBoardFormatRequestBuilder.java index 79080afb82b..5f554ea8cbc 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/buckets/item/tasks/item/progresstaskboardformat/ProgressTaskBoardFormatRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/buckets/item/tasks/item/progresstaskboardformat/ProgressTaskBoardFormatRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. * @return a {@link PlannerProgressTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerProgressTaskBoardTaskFormat get() { return get(null); } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerProgressTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerProgressTaskBoardTaskFormat get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,6 @@ public PlannerProgressTaskBoardTaskFormat get(@jakarta.annotation.Nullable final * @param body The request body * @return a {@link PlannerProgressTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerProgressTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerProgressTaskBoardTaskFormat body) { @@ -95,7 +92,6 @@ public PlannerProgressTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull fina * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerProgressTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerProgressTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerProgressTaskBoardTaskFormat body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public ProgressTaskBoardFormatRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/details/DetailsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/details/DetailsRequestBuilder.java index 0bb72be89d9..c0466626544 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/details/DetailsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/details/DetailsRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a plannerPlanDetails object. + * Read-only. Nullable. Extra details about the plan. * @return a {@link PlannerPlanDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerPlanDetails get() { return get(null); } /** - * Retrieve the properties and relationships of a plannerPlanDetails object. + * Read-only. Nullable. Extra details about the plan. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerPlanDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerPlanDetails get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,6 @@ public PlannerPlanDetails get(@jakarta.annotation.Nullable final java.util.funct * @param body The request body * @return a {@link PlannerPlanDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerPlanDetails patch(@jakarta.annotation.Nonnull final PlannerPlanDetails body) { @@ -95,7 +92,6 @@ public PlannerPlanDetails patch(@jakarta.annotation.Nonnull final PlannerPlanDet * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerPlanDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerPlanDetails patch(@jakarta.annotation.Nonnull final PlannerPlanDetails body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a plannerPlanDetails object. + * Read-only. Nullable. Extra details about the plan. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a plannerPlanDetails object. + * Read-only. Nullable. Extra details about the plan. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public DetailsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a plannerPlanDetails object. + * Read-only. Nullable. Extra details about the plan. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/tasks/TasksRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/tasks/TasksRequestBuilder.java index cfc8230f76a..430d5e9060a 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/tasks/TasksRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/tasks/TasksRequestBuilder.java @@ -60,21 +60,19 @@ public TasksRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/users/{user%2Did}/planner/plans/{plannerPlan%2Did}/tasks{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of plannerTask objects associated with a plannerPlan object. + * Read-only. Nullable. Collection of tasks in the plan. * @return a {@link PlannerTaskCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskCollectionResponse get() { return get(null); } /** - * Retrieve a list of plannerTask objects associated with a plannerPlan object. + * Read-only. Nullable. Collection of tasks in the plan. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerTaskCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public PlannerTask post(@jakarta.annotation.Nonnull final PlannerTask body, @jak return this.requestAdapter.send(requestInfo, errorMapping, PlannerTask::createFromDiscriminatorValue); } /** - * Retrieve a list of plannerTask objects associated with a plannerPlan object. + * Read-only. Nullable. Collection of tasks in the plan. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of plannerTask objects associated with a plannerPlan object. + * Read-only. Nullable. Collection of tasks in the plan. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public TasksRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new TasksRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of plannerTask objects associated with a plannerPlan object. + * Read-only. Nullable. Collection of tasks in the plan. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/tasks/item/assignedtotaskboardformat/AssignedToTaskBoardFormatRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/tasks/item/assignedtotaskboardformat/AssignedToTaskBoardFormatRequestBuilder.java index 1fb2ab16071..9dc1a07923e 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/tasks/item/assignedtotaskboardformat/AssignedToTaskBoardFormatRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/tasks/item/assignedtotaskboardformat/AssignedToTaskBoardFormatRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. * @return a {@link PlannerAssignedToTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerAssignedToTaskBoardTaskFormat get() { return get(null); } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerAssignedToTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerAssignedToTaskBoardTaskFormat get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,6 @@ public PlannerAssignedToTaskBoardTaskFormat get(@jakarta.annotation.Nullable fin * @param body The request body * @return a {@link PlannerAssignedToTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerAssignedToTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerAssignedToTaskBoardTaskFormat body) { @@ -95,7 +92,6 @@ public PlannerAssignedToTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull fi * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerAssignedToTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerAssignedToTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerAssignedToTaskBoardTaskFormat body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public AssignedToTaskBoardFormatRequestBuilder withUrl(@jakarta.annotation.Nonnu public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/tasks/item/buckettaskboardformat/BucketTaskBoardFormatRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/tasks/item/buckettaskboardformat/BucketTaskBoardFormatRequestBuilder.java index ac7d71ce012..5f0ab138707 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/tasks/item/buckettaskboardformat/BucketTaskBoardFormatRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/tasks/item/buckettaskboardformat/BucketTaskBoardFormatRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. * @return a {@link PlannerBucketTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketTaskBoardTaskFormat get() { return get(null); } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerBucketTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketTaskBoardTaskFormat get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,6 @@ public PlannerBucketTaskBoardTaskFormat get(@jakarta.annotation.Nullable final j * @param body The request body * @return a {@link PlannerBucketTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerBucketTaskBoardTaskFormat body) { @@ -95,7 +92,6 @@ public PlannerBucketTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerBucketTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerBucketTaskBoardTaskFormat body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public BucketTaskBoardFormatRequestBuilder withUrl(@jakarta.annotation.Nonnull f public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/tasks/item/details/DetailsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/tasks/item/details/DetailsRequestBuilder.java index c4b883293a1..a1178c0b20f 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/tasks/item/details/DetailsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/tasks/item/details/DetailsRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. * @return a {@link PlannerTaskDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskDetails get() { return get(null); } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerTaskDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskDetails get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,6 @@ public PlannerTaskDetails get(@jakarta.annotation.Nullable final java.util.funct * @param body The request body * @return a {@link PlannerTaskDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskDetails patch(@jakarta.annotation.Nonnull final PlannerTaskDetails body) { @@ -95,7 +92,6 @@ public PlannerTaskDetails patch(@jakarta.annotation.Nonnull final PlannerTaskDet * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerTaskDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskDetails patch(@jakarta.annotation.Nonnull final PlannerTaskDetails body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public DetailsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/tasks/item/progresstaskboardformat/ProgressTaskBoardFormatRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/tasks/item/progresstaskboardformat/ProgressTaskBoardFormatRequestBuilder.java index 6fdac07e644..00bf0b6d05e 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/tasks/item/progresstaskboardformat/ProgressTaskBoardFormatRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/planner/plans/item/tasks/item/progresstaskboardformat/ProgressTaskBoardFormatRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. * @return a {@link PlannerProgressTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerProgressTaskBoardTaskFormat get() { return get(null); } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerProgressTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerProgressTaskBoardTaskFormat get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,6 @@ public PlannerProgressTaskBoardTaskFormat get(@jakarta.annotation.Nullable final * @param body The request body * @return a {@link PlannerProgressTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerProgressTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerProgressTaskBoardTaskFormat body) { @@ -95,7 +92,6 @@ public PlannerProgressTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull fina * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerProgressTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerProgressTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerProgressTaskBoardTaskFormat body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public ProgressTaskBoardFormatRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/planner/tasks/TasksRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/planner/tasks/TasksRequestBuilder.java index 77c27a3c637..08620d93c47 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/planner/tasks/TasksRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/planner/tasks/TasksRequestBuilder.java @@ -60,21 +60,19 @@ public TasksRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/users/{user%2Did}/planner/tasks{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve a list of plannertask objects assigned to a User. + * Read-only. Nullable. Returns the plannerPlans shared with the user. * @return a {@link PlannerTaskCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskCollectionResponse get() { return get(null); } /** - * Retrieve a list of plannertask objects assigned to a User. + * Read-only. Nullable. Returns the plannerPlans shared with the user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerTaskCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public PlannerTask post(@jakarta.annotation.Nonnull final PlannerTask body, @jak return this.requestAdapter.send(requestInfo, errorMapping, PlannerTask::createFromDiscriminatorValue); } /** - * Retrieve a list of plannertask objects assigned to a User. + * Read-only. Nullable. Returns the plannerPlans shared with the user. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve a list of plannertask objects assigned to a User. + * Read-only. Nullable. Returns the plannerPlans shared with the user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public TasksRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new TasksRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve a list of plannertask objects assigned to a User. + * Read-only. Nullable. Returns the plannerPlans shared with the user. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/planner/tasks/item/assignedtotaskboardformat/AssignedToTaskBoardFormatRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/planner/tasks/item/assignedtotaskboardformat/AssignedToTaskBoardFormatRequestBuilder.java index 4d4c7765211..c17503ad8e7 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/planner/tasks/item/assignedtotaskboardformat/AssignedToTaskBoardFormatRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/planner/tasks/item/assignedtotaskboardformat/AssignedToTaskBoardFormatRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. * @return a {@link PlannerAssignedToTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerAssignedToTaskBoardTaskFormat get() { return get(null); } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerAssignedToTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerAssignedToTaskBoardTaskFormat get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,6 @@ public PlannerAssignedToTaskBoardTaskFormat get(@jakarta.annotation.Nullable fin * @param body The request body * @return a {@link PlannerAssignedToTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerAssignedToTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerAssignedToTaskBoardTaskFormat body) { @@ -95,7 +92,6 @@ public PlannerAssignedToTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull fi * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerAssignedToTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerAssignedToTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerAssignedToTaskBoardTaskFormat body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public AssignedToTaskBoardFormatRequestBuilder withUrl(@jakarta.annotation.Nonnu public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a plannerAssignedToTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by assignedTo. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/planner/tasks/item/buckettaskboardformat/BucketTaskBoardFormatRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/planner/tasks/item/buckettaskboardformat/BucketTaskBoardFormatRequestBuilder.java index 7cbf1e672bf..58b14a5c088 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/planner/tasks/item/buckettaskboardformat/BucketTaskBoardFormatRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/planner/tasks/item/buckettaskboardformat/BucketTaskBoardFormatRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. * @return a {@link PlannerBucketTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketTaskBoardTaskFormat get() { return get(null); } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerBucketTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketTaskBoardTaskFormat get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,6 @@ public PlannerBucketTaskBoardTaskFormat get(@jakarta.annotation.Nullable final j * @param body The request body * @return a {@link PlannerBucketTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerBucketTaskBoardTaskFormat body) { @@ -95,7 +92,6 @@ public PlannerBucketTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerBucketTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerBucketTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerBucketTaskBoardTaskFormat body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public BucketTaskBoardFormatRequestBuilder withUrl(@jakarta.annotation.Nonnull f public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of plannerBucketTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by bucket. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/planner/tasks/item/details/DetailsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/planner/tasks/item/details/DetailsRequestBuilder.java index 0b040f2e138..ecfa619e90f 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/planner/tasks/item/details/DetailsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/planner/tasks/item/details/DetailsRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. * @return a {@link PlannerTaskDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskDetails get() { return get(null); } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerTaskDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskDetails get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,6 @@ public PlannerTaskDetails get(@jakarta.annotation.Nullable final java.util.funct * @param body The request body * @return a {@link PlannerTaskDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskDetails patch(@jakarta.annotation.Nonnull final PlannerTaskDetails body) { @@ -95,7 +92,6 @@ public PlannerTaskDetails patch(@jakarta.annotation.Nonnull final PlannerTaskDet * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerTaskDetails} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerTaskDetails patch(@jakarta.annotation.Nonnull final PlannerTaskDetails body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public DetailsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a plannerTaskDetails object. + * Read-only. Nullable. More details about the task. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/planner/tasks/item/progresstaskboardformat/ProgressTaskBoardFormatRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/planner/tasks/item/progresstaskboardformat/ProgressTaskBoardFormatRequestBuilder.java index 79cef59e6ce..4123f45e935 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/planner/tasks/item/progresstaskboardformat/ProgressTaskBoardFormatRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/planner/tasks/item/progresstaskboardformat/ProgressTaskBoardFormatRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. * @return a {@link PlannerProgressTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerProgressTaskBoardTaskFormat get() { return get(null); } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerProgressTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerProgressTaskBoardTaskFormat get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,6 @@ public PlannerProgressTaskBoardTaskFormat get(@jakarta.annotation.Nullable final * @param body The request body * @return a {@link PlannerProgressTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerProgressTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerProgressTaskBoardTaskFormat body) { @@ -95,7 +92,6 @@ public PlannerProgressTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull fina * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link PlannerProgressTaskBoardTaskFormat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public PlannerProgressTaskBoardTaskFormat patch(@jakarta.annotation.Nonnull final PlannerProgressTaskBoardTaskFormat body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -186,7 +182,7 @@ public ProgressTaskBoardFormatRequestBuilder withUrl(@jakarta.annotation.Nonnull public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of plannerProgressTaskBoardTaskFormat object. + * Read-only. Nullable. Used to render the task correctly in the task board view when grouped by progress. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/presence/PresenceRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/presence/PresenceRequestBuilder.java index 24a60472129..b07777398e6 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/presence/PresenceRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/presence/PresenceRequestBuilder.java @@ -100,21 +100,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Set a presence status message for a user. An optional expiration date and time can be supplied. + * Get presence from users * @return a {@link Presence} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Presence get() { return get(null); } /** - * Set a presence status message for a user. An optional expiration date and time can be supplied. + * Get presence from users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Presence} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Presence get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -169,7 +167,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Set a presence status message for a user. An optional expiration date and time can be supplied. + * Get presence from users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -177,7 +175,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Set a presence status message for a user. An optional expiration date and time can be supplied. + * Get presence from users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -229,7 +227,7 @@ public PresenceRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Set a presence status message for a user. An optional expiration date and time can be supplied. + * Get presence from users */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/registereddevices/RegisteredDevicesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/registereddevices/RegisteredDevicesRequestBuilder.java index 8f7c4a5f189..b53b93d588b 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/registereddevices/RegisteredDevicesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/registereddevices/RegisteredDevicesRequestBuilder.java @@ -89,7 +89,6 @@ public RegisteredDevicesRequestBuilder(@jakarta.annotation.Nonnull final String * Devices that are registered for the user. Read-only. Nullable. Supports $expand and returns up to 100 objects. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get() { @@ -100,7 +99,6 @@ public DirectoryObjectCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/reminderviewwithstartdatetimewithenddatetime/ReminderViewWithStartDateTimeWithEndDateTimeRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/reminderviewwithstartdatetimewithenddatetime/ReminderViewWithStartDateTimeWithEndDateTimeRequestBuilder.java index 6502b300c83..f083fdf8d9a 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/reminderviewwithstartdatetimewithenddatetime/ReminderViewWithStartDateTimeWithEndDateTimeRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/reminderviewwithstartdatetimewithenddatetime/ReminderViewWithStartDateTimeWithEndDateTimeRequestBuilder.java @@ -43,6 +43,7 @@ public ReminderViewWithStartDateTimeWithEndDateTimeRequestBuilder(@jakarta.annot * Invoke function reminderView * @return a {@link ReminderViewWithStartDateTimeWithEndDateTimeGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public ReminderViewWithStartDateTimeWithEndDateTimeGetResponse get() { @@ -53,6 +54,7 @@ public ReminderViewWithStartDateTimeWithEndDateTimeGetResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ReminderViewWithStartDateTimeWithEndDateTimeGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public ReminderViewWithStartDateTimeWithEndDateTimeGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/settings/SettingsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/settings/SettingsRequestBuilder.java index 1ca1f158707..80d80752a09 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/settings/SettingsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/settings/SettingsRequestBuilder.java @@ -73,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the user and organization userSettings object.To learn how to update the properties of the userSettings object, see update user settings. + * Get settings from users * @return a {@link UserSettings} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserSettings get() { return get(null); } /** - * Read the user and organization userSettings object.To learn how to update the properties of the userSettings object, see update user settings. + * Get settings from users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UserSettings} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserSettings get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -97,23 +95,21 @@ public UserSettings get(@jakarta.annotation.Nullable final java.util.function.Co return this.requestAdapter.send(requestInfo, errorMapping, UserSettings::createFromDiscriminatorValue); } /** - * Update the properties of the userSettings object. Users in the same organization can have different settings based on their preference or on the organization policies. To get the user current settings, see current user settings. + * Update the navigation property settings in users * @param body The request body * @return a {@link UserSettings} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserSettings patch(@jakarta.annotation.Nonnull final UserSettings body) { return patch(body, null); } /** - * Update the properties of the userSettings object. Users in the same organization can have different settings based on their preference or on the organization policies. To get the user current settings, see current user settings. + * Update the navigation property settings in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UserSettings} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserSettings patch(@jakarta.annotation.Nonnull final UserSettings body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -144,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the user and organization userSettings object.To learn how to update the properties of the userSettings object, see update user settings. + * Get settings from users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -152,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the user and organization userSettings object.To learn how to update the properties of the userSettings object, see update user settings. + * Get settings from users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -164,7 +160,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of the userSettings object. Users in the same organization can have different settings based on their preference or on the organization policies. To get the user current settings, see current user settings. + * Update the navigation property settings in users * @param body The request body * @return a {@link RequestInformation} */ @@ -173,7 +169,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of the userSettings object. Users in the same organization can have different settings based on their preference or on the organization policies. To get the user current settings, see current user settings. + * Update the navigation property settings in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -204,7 +200,7 @@ public SettingsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the user and organization userSettings object.To learn how to update the properties of the userSettings object, see update user settings. + * Get settings from users */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/settings/shiftpreferences/ShiftPreferencesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/settings/shiftpreferences/ShiftPreferencesRequestBuilder.java index 024db995120..a46a56ee5dc 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/settings/shiftpreferences/ShiftPreferencesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/settings/shiftpreferences/ShiftPreferencesRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the properties and relationships of a shiftPreferences object by ID. + * Get shiftPreferences from users * @return a {@link ShiftPreferences} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ShiftPreferences get() { return get(null); } /** - * Retrieve the properties and relationships of a shiftPreferences object by ID. + * Get shiftPreferences from users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ShiftPreferences} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ShiftPreferences get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -79,23 +77,21 @@ public ShiftPreferences get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, ShiftPreferences::createFromDiscriminatorValue); } /** - * Update the properties and relationships of a shiftPreferences object. + * Update the navigation property shiftPreferences in users * @param body The request body * @return a {@link ShiftPreferences} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ShiftPreferences patch(@jakarta.annotation.Nonnull final ShiftPreferences body) { return patch(body, null); } /** - * Update the properties and relationships of a shiftPreferences object. + * Update the navigation property shiftPreferences in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ShiftPreferences} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ShiftPreferences patch(@jakarta.annotation.Nonnull final ShiftPreferences body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the properties and relationships of a shiftPreferences object by ID. + * Get shiftPreferences from users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the properties and relationships of a shiftPreferences object by ID. + * Get shiftPreferences from users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties and relationships of a shiftPreferences object. + * Update the navigation property shiftPreferences in users * @param body The request body * @return a {@link RequestInformation} */ @@ -155,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties and relationships of a shiftPreferences object. + * Update the navigation property shiftPreferences in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -186,7 +182,7 @@ public ShiftPreferencesRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the properties and relationships of a shiftPreferences object by ID. + * Get shiftPreferences from users */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/settings/windows/WindowsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/settings/windows/WindowsRequestBuilder.java index f4ce5829bf0..677b2e91959 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/settings/windows/WindowsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/settings/windows/WindowsRequestBuilder.java @@ -60,21 +60,19 @@ public WindowsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j super(requestAdapter, "{+baseurl}/users/{user%2Did}/settings/windows{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of windowsSetting objects and their properties for the signed in user. + * Get windows from users * @return a {@link WindowsSettingCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsSettingCollectionResponse get() { return get(null); } /** - * Get a list of windowsSetting objects and their properties for the signed in user. + * Get windows from users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WindowsSettingCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsSettingCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public WindowsSetting post(@jakarta.annotation.Nonnull final WindowsSetting body return this.requestAdapter.send(requestInfo, errorMapping, WindowsSetting::createFromDiscriminatorValue); } /** - * Get a list of windowsSetting objects and their properties for the signed in user. + * Get windows from users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of windowsSetting objects and their properties for the signed in user. + * Get windows from users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public WindowsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String ra return new WindowsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of windowsSetting objects and their properties for the signed in user. + * Get windows from users */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/settings/windows/item/WindowsSettingItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/settings/windows/item/WindowsSettingItemRequestBuilder.java index 834d98debc6..04f88691312 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/settings/windows/item/WindowsSettingItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/settings/windows/item/WindowsSettingItemRequestBuilder.java @@ -64,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a windowsSetting object by passing the ID of the setting in the URL. This method gets the setting for the signed-in user. + * Get windows from users * @return a {@link WindowsSetting} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsSetting get() { return get(null); } /** - * Read the properties and relationships of a windowsSetting object by passing the ID of the setting in the URL. This method gets the setting for the signed-in user. + * Get windows from users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WindowsSetting} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsSetting get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +131,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a windowsSetting object by passing the ID of the setting in the URL. This method gets the setting for the signed-in user. + * Get windows from users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +139,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a windowsSetting object by passing the ID of the setting in the URL. This method gets the setting for the signed-in user. + * Get windows from users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +191,7 @@ public WindowsSettingItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fina public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a windowsSetting object by passing the ID of the setting in the URL. This method gets the setting for the signed-in user. + * Get windows from users */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/settings/windows/item/instances/InstancesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/settings/windows/item/instances/InstancesRequestBuilder.java index 609907f863e..b7cbffc2de5 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/settings/windows/item/instances/InstancesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/settings/windows/item/instances/InstancesRequestBuilder.java @@ -60,21 +60,19 @@ public InstancesRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, super(requestAdapter, "{+baseurl}/users/{user%2Did}/settings/windows/{windowsSetting%2Did}/instances{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of windowsSettingInstance objects and their properties for the signed-in user. + * A collection of setting values for a given windowsSetting. * @return a {@link WindowsSettingInstanceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsSettingInstanceCollectionResponse get() { return get(null); } /** - * Get a list of windowsSettingInstance objects and their properties for the signed-in user. + * A collection of setting values for a given windowsSetting. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WindowsSettingInstanceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsSettingInstanceCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public WindowsSettingInstance post(@jakarta.annotation.Nonnull final WindowsSett return this.requestAdapter.send(requestInfo, errorMapping, WindowsSettingInstance::createFromDiscriminatorValue); } /** - * Get a list of windowsSettingInstance objects and their properties for the signed-in user. + * A collection of setting values for a given windowsSetting. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of windowsSettingInstance objects and their properties for the signed-in user. + * A collection of setting values for a given windowsSetting. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public InstancesRequestBuilder withUrl(@jakarta.annotation.Nonnull final String return new InstancesRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of windowsSettingInstance objects and their properties for the signed-in user. + * A collection of setting values for a given windowsSetting. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/settings/windows/item/instances/item/WindowsSettingInstanceItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/settings/windows/item/instances/item/WindowsSettingInstanceItemRequestBuilder.java index 9641fdc13e5..adfd42d6761 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/settings/windows/item/instances/item/WindowsSettingInstanceItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/settings/windows/item/instances/item/WindowsSettingInstanceItemRequestBuilder.java @@ -55,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a windowsSettingInstance object by passing the Windows setting ID and Windows setting instance ID in the URL. This method gets a windowsSettingInstance for the signed-in user. + * A collection of setting values for a given windowsSetting. * @return a {@link WindowsSettingInstance} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsSettingInstance get() { return get(null); } /** - * Read the properties and relationships of a windowsSettingInstance object by passing the Windows setting ID and Windows setting instance ID in the URL. This method gets a windowsSettingInstance for the signed-in user. + * A collection of setting values for a given windowsSetting. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link WindowsSettingInstance} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public WindowsSettingInstance get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -124,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a windowsSettingInstance object by passing the Windows setting ID and Windows setting instance ID in the URL. This method gets a windowsSettingInstance for the signed-in user. + * A collection of setting values for a given windowsSetting. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -132,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a windowsSettingInstance object by passing the Windows setting ID and Windows setting instance ID in the URL. This method gets a windowsSettingInstance for the signed-in user. + * A collection of setting values for a given windowsSetting. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -184,7 +182,7 @@ public WindowsSettingInstanceItemRequestBuilder withUrl(@jakarta.annotation.Nonn public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a windowsSettingInstance object by passing the Windows setting ID and Windows setting instance ID in the URL. This method gets a windowsSettingInstance for the signed-in user. + * A collection of setting values for a given windowsSetting. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/sponsors/SponsorsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/sponsors/SponsorsRequestBuilder.java index cc25d860464..a65d74f1e14 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/sponsors/SponsorsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/sponsors/SponsorsRequestBuilder.java @@ -59,21 +59,19 @@ public SponsorsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @ super(requestAdapter, "{+baseurl}/users/{user%2Did}/sponsors{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get a user's sponsors. Sponsors are users and groups that are responsible for this guest's privileges in the tenant and for keeping the guest's information and access up to date. + * The users and groups responsible for this guest user's privileges in the tenant and keep the guest user's information and access updated. (HTTP Methods: GET, POST, DELETE.). Supports $expand. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get() { return get(null); } /** - * Get a user's sponsors. Sponsors are users and groups that are responsible for this guest's privileges in the tenant and for keeping the guest's information and access up to date. + * The users and groups responsible for this guest user's privileges in the tenant and keep the guest user's information and access updated. (HTTP Methods: GET, POST, DELETE.). Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -83,7 +81,7 @@ public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final return this.requestAdapter.send(requestInfo, errorMapping, DirectoryObjectCollectionResponse::createFromDiscriminatorValue); } /** - * Get a user's sponsors. Sponsors are users and groups that are responsible for this guest's privileges in the tenant and for keeping the guest's information and access up to date. + * The users and groups responsible for this guest user's privileges in the tenant and keep the guest user's information and access updated. (HTTP Methods: GET, POST, DELETE.). Supports $expand. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -91,7 +89,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a user's sponsors. Sponsors are users and groups that are responsible for this guest's privileges in the tenant and for keeping the guest's information and access up to date. + * The users and groups responsible for this guest user's privileges in the tenant and keep the guest user's information and access updated. (HTTP Methods: GET, POST, DELETE.). Supports $expand. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -113,7 +111,7 @@ public SponsorsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r return new SponsorsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a user's sponsors. Sponsors are users and groups that are responsible for this guest's privileges in the tenant and for keeping the guest's information and access up to date. + * The users and groups responsible for this guest user's privileges in the tenant and keep the guest user's information and access updated. (HTTP Methods: GET, POST, DELETE.). Supports $expand. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/teamwork/TeamworkRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/teamwork/TeamworkRequestBuilder.java index 76fe6c36367..540edd595ad 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/teamwork/TeamworkRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/teamwork/TeamworkRequestBuilder.java @@ -82,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Get the userTeamwork settings for a specified user, which includes the Microsoft Teams region and the locale chosen by the user. + * A container for Microsoft Teams features available for the user. Read-only. Nullable. * @return a {@link UserTeamwork} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserTeamwork get() { return get(null); } /** - * Get the userTeamwork settings for a specified user, which includes the Microsoft Teams region and the locale chosen by the user. + * A container for Microsoft Teams features available for the user. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UserTeamwork} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserTeamwork get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -151,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Get the userTeamwork settings for a specified user, which includes the Microsoft Teams region and the locale chosen by the user. + * A container for Microsoft Teams features available for the user. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -159,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the userTeamwork settings for a specified user, which includes the Microsoft Teams region and the locale chosen by the user. + * A container for Microsoft Teams features available for the user. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -211,7 +209,7 @@ public TeamworkRequestBuilder withUrl(@jakarta.annotation.Nonnull final String r public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Get the userTeamwork settings for a specified user, which includes the Microsoft Teams region and the locale chosen by the user. + * A container for Microsoft Teams features available for the user. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/teamwork/associatedteams/AssociatedTeamsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/teamwork/associatedteams/AssociatedTeamsRequestBuilder.java index a23b91f77e1..118d9f6efd0 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/teamwork/associatedteams/AssociatedTeamsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/teamwork/associatedteams/AssociatedTeamsRequestBuilder.java @@ -60,21 +60,19 @@ public AssociatedTeamsRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/users/{user%2Did}/teamwork/associatedTeams{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the list of teams in Microsoft Teams that a user is associated with.Currently, a user can be associated with a team in two different ways: + * The list of associatedTeamInfo objects that a user is associated with. * @return a {@link AssociatedTeamInfoCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AssociatedTeamInfoCollectionResponse get() { return get(null); } /** - * Get the list of teams in Microsoft Teams that a user is associated with.Currently, a user can be associated with a team in two different ways: + * The list of associatedTeamInfo objects that a user is associated with. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AssociatedTeamInfoCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AssociatedTeamInfoCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -109,7 +107,7 @@ public AssociatedTeamInfo post(@jakarta.annotation.Nonnull final AssociatedTeamI return this.requestAdapter.send(requestInfo, errorMapping, AssociatedTeamInfo::createFromDiscriminatorValue); } /** - * Get the list of teams in Microsoft Teams that a user is associated with.Currently, a user can be associated with a team in two different ways: + * The list of associatedTeamInfo objects that a user is associated with. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -117,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the list of teams in Microsoft Teams that a user is associated with.Currently, a user can be associated with a team in two different ways: + * The list of associatedTeamInfo objects that a user is associated with. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -163,7 +161,7 @@ public AssociatedTeamsRequestBuilder withUrl(@jakarta.annotation.Nonnull final S return new AssociatedTeamsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the list of teams in Microsoft Teams that a user is associated with.Currently, a user can be associated with a team in two different ways: + * The list of associatedTeamInfo objects that a user is associated with. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/teamwork/installedapps/InstalledAppsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/teamwork/installedapps/InstalledAppsRequestBuilder.java index 0ac064569b5..3616927c59d 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/teamwork/installedapps/InstalledAppsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/teamwork/installedapps/InstalledAppsRequestBuilder.java @@ -60,21 +60,19 @@ public InstalledAppsRequestBuilder(@jakarta.annotation.Nonnull final String rawU super(requestAdapter, "{+baseurl}/users/{user%2Did}/teamwork/installedApps{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Retrieve the list of apps installed in the personal scope of the specified user. + * The apps installed in the personal scope of this user. * @return a {@link UserScopeTeamsAppInstallationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserScopeTeamsAppInstallationCollectionResponse get() { return get(null); } /** - * Retrieve the list of apps installed in the personal scope of the specified user. + * The apps installed in the personal scope of this user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UserScopeTeamsAppInstallationCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserScopeTeamsAppInstallationCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public UserScopeTeamsAppInstallationCollectionResponse get(@jakarta.annotation.N return this.requestAdapter.send(requestInfo, errorMapping, UserScopeTeamsAppInstallationCollectionResponse::createFromDiscriminatorValue); } /** - * Install an app in the personal scope of the specified user. + * Create new navigation property to installedApps for users * @param body The request body * @return a {@link UserScopeTeamsAppInstallation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserScopeTeamsAppInstallation post(@jakarta.annotation.Nonnull final UserScopeTeamsAppInstallation body) { return post(body, null); } /** - * Install an app in the personal scope of the specified user. + * Create new navigation property to installedApps for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UserScopeTeamsAppInstallation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserScopeTeamsAppInstallation post(@jakarta.annotation.Nonnull final UserScopeTeamsAppInstallation body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public UserScopeTeamsAppInstallation post(@jakarta.annotation.Nonnull final User return this.requestAdapter.send(requestInfo, errorMapping, UserScopeTeamsAppInstallation::createFromDiscriminatorValue); } /** - * Retrieve the list of apps installed in the personal scope of the specified user. + * The apps installed in the personal scope of this user. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the list of apps installed in the personal scope of the specified user. + * The apps installed in the personal scope of this user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Install an app in the personal scope of the specified user. + * Create new navigation property to installedApps for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Install an app in the personal scope of the specified user. + * Create new navigation property to installedApps for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public InstalledAppsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Str return new InstalledAppsRequestBuilder(rawUrl, requestAdapter); } /** - * Retrieve the list of apps installed in the personal scope of the specified user. + * The apps installed in the personal scope of this user. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/teamwork/installedapps/item/UserScopeTeamsAppInstallationItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/teamwork/installedapps/item/UserScopeTeamsAppInstallationItemRequestBuilder.java index 764e70b93eb..7b807b19cb0 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/teamwork/installedapps/item/UserScopeTeamsAppInstallationItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/teamwork/installedapps/item/UserScopeTeamsAppInstallationItemRequestBuilder.java @@ -64,18 +64,16 @@ public UserScopeTeamsAppInstallationItemRequestBuilder(@jakarta.annotation.Nonnu super(requestAdapter, "{+baseurl}/users/{user%2Did}/teamwork/installedApps/{userScopeTeamsAppInstallation%2Did}{?%24expand,%24select}", rawUrl); } /** - * Uninstall an app from the personal scope of the specified user. + * Delete navigation property installedApps for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Uninstall an app from the personal scope of the specified user. + * Delete navigation property installedApps for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -84,21 +82,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Retrieve the app installed in the personal scope of the specified user. + * The apps installed in the personal scope of this user. * @return a {@link UserScopeTeamsAppInstallation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserScopeTeamsAppInstallation get() { return get(null); } /** - * Retrieve the app installed in the personal scope of the specified user. + * The apps installed in the personal scope of this user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link UserScopeTeamsAppInstallation} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public UserScopeTeamsAppInstallation get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -133,7 +129,7 @@ public UserScopeTeamsAppInstallation patch(@jakarta.annotation.Nonnull final Use return this.requestAdapter.send(requestInfo, errorMapping, UserScopeTeamsAppInstallation::createFromDiscriminatorValue); } /** - * Uninstall an app from the personal scope of the specified user. + * Delete navigation property installedApps for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -141,7 +137,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Uninstall an app from the personal scope of the specified user. + * Delete navigation property installedApps for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -153,7 +149,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Retrieve the app installed in the personal scope of the specified user. + * The apps installed in the personal scope of this user. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -161,7 +157,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Retrieve the app installed in the personal scope of the specified user. + * The apps installed in the personal scope of this user. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -213,7 +209,7 @@ public UserScopeTeamsAppInstallationItemRequestBuilder withUrl(@jakarta.annotati public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Retrieve the app installed in the personal scope of the specified user. + * The apps installed in the personal scope of this user. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/teamwork/installedapps/item/chat/ChatRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/teamwork/installedapps/item/chat/ChatRequestBuilder.java index 1cadaa57767..6d69b568690 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/teamwork/installedapps/item/chat/ChatRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/teamwork/installedapps/item/chat/ChatRequestBuilder.java @@ -37,21 +37,19 @@ public ChatRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jaka super(requestAdapter, "{+baseurl}/users/{user%2Did}/teamwork/installedApps/{userScopeTeamsAppInstallation%2Did}/chat{?%24expand,%24select}", rawUrl); } /** - * Retrieve the chat of the specified user and Teams app. + * The chat between the user and Teams app. * @return a {@link Chat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Chat get() { return get(null); } /** - * Retrieve the chat of the specified user and Teams app. + * The chat between the user and Teams app. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link Chat} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public Chat get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -61,7 +59,7 @@ public Chat get(@jakarta.annotation.Nullable final java.util.function.ConsumerFind more info here */ @jakarta.annotation.Nullable public TodoTaskListCollectionResponse get() { return get(null); } /** - * Get a list of the todoTaskList objects and their properties. + * The task lists in the users mailbox. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TodoTaskListCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TodoTaskListCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public TodoTaskListCollectionResponse get(@jakarta.annotation.Nullable final jav return this.requestAdapter.send(requestInfo, errorMapping, TodoTaskListCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new lists object. + * Create new navigation property to lists for users * @param body The request body * @return a {@link TodoTaskList} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TodoTaskList post(@jakarta.annotation.Nonnull final TodoTaskList body) { return post(body, null); } /** - * Create a new lists object. + * Create new navigation property to lists for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TodoTaskList} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TodoTaskList post(@jakarta.annotation.Nonnull final TodoTaskList body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public TodoTaskList post(@jakarta.annotation.Nonnull final TodoTaskList body, @j return this.requestAdapter.send(requestInfo, errorMapping, TodoTaskList::createFromDiscriminatorValue); } /** - * Get a list of the todoTaskList objects and their properties. + * The task lists in the users mailbox. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the todoTaskList objects and their properties. + * The task lists in the users mailbox. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new lists object. + * Create new navigation property to lists for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new lists object. + * Create new navigation property to lists for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public ListsRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new ListsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the todoTaskList objects and their properties. + * The task lists in the users mailbox. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/delta/DeltaRequestBuilder.java index 48f6842fbbf..a13093a652b 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/users/{user%2Did}/todo/lists/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Get a set of todoTaskList resources that have been added, deleted, or removed in Microsoft To Do. A delta function call for todoTaskList is similar to a GET request, except that by appropriately applying state tokens in one or more of these calls, you can query for incremental changes in the todoTaskList. This allows you to maintain and synchronize a local store of a user's todoTaskList without having to fetch all the todoTaskList from the server every time. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Get a set of todoTaskList resources that have been added, deleted, or removed in Microsoft To Do. A delta function call for todoTaskList is similar to a GET request, except that by appropriately applying state tokens in one or more of these calls, you can query for incremental changes in the todoTaskList. This allows you to maintain and synchronize a local store of a user's todoTaskList without having to fetch all the todoTaskList from the server every time. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Get a set of todoTaskList resources that have been added, deleted, or removed in Microsoft To Do. A delta function call for todoTaskList is similar to a GET request, except that by appropriately applying state tokens in one or more of these calls, you can query for incremental changes in the todoTaskList. This allows you to maintain and synchronize a local store of a user's todoTaskList without having to fetch all the todoTaskList from the server every time. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Get a set of todoTaskList resources that have been added, deleted, or removed in Microsoft To Do. A delta function call for todoTaskList is similar to a GET request, except that by appropriately applying state tokens in one or more of these calls, you can query for incremental changes in the todoTaskList. This allows you to maintain and synchronize a local store of a user's todoTaskList without having to fetch all the todoTaskList from the server every time. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Get a set of todoTaskList resources that have been added, deleted, or removed in Microsoft To Do. A delta function call for todoTaskList is similar to a GET request, except that by appropriately applying state tokens in one or more of these calls, you can query for incremental changes in the todoTaskList. This allows you to maintain and synchronize a local store of a user's todoTaskList without having to fetch all the todoTaskList from the server every time. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/TodoTaskListItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/TodoTaskListItemRequestBuilder.java index 54edc7504fb..887faec7ebe 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/TodoTaskListItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/TodoTaskListItemRequestBuilder.java @@ -55,18 +55,16 @@ public TodoTaskListItemRequestBuilder(@jakarta.annotation.Nonnull final String r super(requestAdapter, "{+baseurl}/users/{user%2Did}/todo/lists/{todoTaskList%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a todoTaskList object. + * Delete navigation property lists for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a todoTaskList object. + * Delete navigation property lists for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -75,21 +73,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a todoTaskList object. + * The task lists in the users mailbox. * @return a {@link TodoTaskList} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TodoTaskList get() { return get(null); } /** - * Read the properties and relationships of a todoTaskList object. + * The task lists in the users mailbox. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TodoTaskList} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TodoTaskList get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -99,23 +95,21 @@ public TodoTaskList get(@jakarta.annotation.Nullable final java.util.function.Co return this.requestAdapter.send(requestInfo, errorMapping, TodoTaskList::createFromDiscriminatorValue); } /** - * Update the properties of a todoTaskList object. + * Update the navigation property lists in users * @param body The request body * @return a {@link TodoTaskList} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TodoTaskList patch(@jakarta.annotation.Nonnull final TodoTaskList body) { return patch(body, null); } /** - * Update the properties of a todoTaskList object. + * Update the navigation property lists in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TodoTaskList} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TodoTaskList patch(@jakarta.annotation.Nonnull final TodoTaskList body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,7 +120,7 @@ public TodoTaskList patch(@jakarta.annotation.Nonnull final TodoTaskList body, @ return this.requestAdapter.send(requestInfo, errorMapping, TodoTaskList::createFromDiscriminatorValue); } /** - * Deletes a todoTaskList object. + * Delete navigation property lists for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -134,7 +128,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a todoTaskList object. + * Delete navigation property lists for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +140,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a todoTaskList object. + * The task lists in the users mailbox. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -154,7 +148,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a todoTaskList object. + * The task lists in the users mailbox. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -166,7 +160,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a todoTaskList object. + * Update the navigation property lists in users * @param body The request body * @return a {@link RequestInformation} */ @@ -175,7 +169,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a todoTaskList object. + * Update the navigation property lists in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -206,7 +200,7 @@ public TodoTaskListItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a todoTaskList object. + * The task lists in the users mailbox. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/tasks/TasksRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/tasks/TasksRequestBuilder.java index 07a2a9fe600..5373dba6e3f 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/tasks/TasksRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/tasks/TasksRequestBuilder.java @@ -69,21 +69,19 @@ public TasksRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/users/{user%2Did}/todo/lists/{todoTaskList%2Did}/tasks{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the todoTask resources from the tasks navigation property of a specified todoTaskList. + * The tasks in this task list. Read-only. Nullable. * @return a {@link TodoTaskCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TodoTaskCollectionResponse get() { return get(null); } /** - * Get the todoTask resources from the tasks navigation property of a specified todoTaskList. + * The tasks in this task list. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TodoTaskCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TodoTaskCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public TodoTaskCollectionResponse get(@jakarta.annotation.Nullable final java.ut return this.requestAdapter.send(requestInfo, errorMapping, TodoTaskCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new task object in a specified todoTaskList. + * Create new navigation property to tasks for users * @param body The request body * @return a {@link TodoTask} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TodoTask post(@jakarta.annotation.Nonnull final TodoTask body) { return post(body, null); } /** - * Create a new task object in a specified todoTaskList. + * Create new navigation property to tasks for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TodoTask} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TodoTask post(@jakarta.annotation.Nonnull final TodoTask body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public TodoTask post(@jakarta.annotation.Nonnull final TodoTask body, @jakarta.a return this.requestAdapter.send(requestInfo, errorMapping, TodoTask::createFromDiscriminatorValue); } /** - * Get the todoTask resources from the tasks navigation property of a specified todoTaskList. + * The tasks in this task list. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the todoTask resources from the tasks navigation property of a specified todoTaskList. + * The tasks in this task list. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new task object in a specified todoTaskList. + * Create new navigation property to tasks for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new task object in a specified todoTaskList. + * Create new navigation property to tasks for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public TasksRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new TasksRequestBuilder(rawUrl, requestAdapter); } /** - * Get the todoTask resources from the tasks navigation property of a specified todoTaskList. + * The tasks in this task list. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/tasks/delta/DeltaRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/tasks/delta/DeltaRequestBuilder.java index cd8cbfc4cf2..04ecb3503db 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/tasks/delta/DeltaRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/tasks/delta/DeltaRequestBuilder.java @@ -36,19 +36,21 @@ public DeltaRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @jak super(requestAdapter, "{+baseurl}/users/{user%2Did}/todo/lists/{todoTaskList%2Did}/tasks/delta(){?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Invoke function delta + * Get a set of todoTask resources that have been added, deleted, or updated in a specified todoTaskList. A delta function call for todoTask resources in a todoTaskList is similar to a GET request, except that by appropriately applying state tokens in one or more of these calls, you can query for incremental changes in the todoTask in that todoTaskList. This allows you to maintain and synchronize a local store of a user's todoTask resources without having to fetch the entire set from the server every time. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get() { return get(null); } /** - * Invoke function delta + * Get a set of todoTask resources that have been added, deleted, or updated in a specified todoTaskList. A delta function call for todoTask resources in a todoTaskList is similar to a GET request, except that by appropriately applying state tokens in one or more of these calls, you can query for incremental changes in the todoTask in that todoTaskList. This allows you to maintain and synchronize a local store of a user's todoTask resources without having to fetch the entire set from the server every time. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DeltaGetResponse} * @throws ODataError When receiving a 4XX or 5XX status code + * @see Find more info here */ @jakarta.annotation.Nullable public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -58,7 +60,7 @@ public DeltaGetResponse get(@jakarta.annotation.Nullable final java.util.functio return this.requestAdapter.send(requestInfo, errorMapping, DeltaGetResponse::createFromDiscriminatorValue); } /** - * Invoke function delta + * Get a set of todoTask resources that have been added, deleted, or updated in a specified todoTaskList. A delta function call for todoTask resources in a todoTaskList is similar to a GET request, except that by appropriately applying state tokens in one or more of these calls, you can query for incremental changes in the todoTask in that todoTaskList. This allows you to maintain and synchronize a local store of a user's todoTask resources without having to fetch the entire set from the server every time. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -66,7 +68,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Invoke function delta + * Get a set of todoTask resources that have been added, deleted, or updated in a specified todoTaskList. A delta function call for todoTask resources in a todoTaskList is similar to a GET request, except that by appropriately applying state tokens in one or more of these calls, you can query for incremental changes in the todoTask in that todoTaskList. This allows you to maintain and synchronize a local store of a user's todoTask resources without having to fetch the entire set from the server every time. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -88,7 +90,7 @@ public DeltaRequestBuilder withUrl(@jakarta.annotation.Nonnull final String rawU return new DeltaRequestBuilder(rawUrl, requestAdapter); } /** - * Invoke function delta + * Get a set of todoTask resources that have been added, deleted, or updated in a specified todoTaskList. A delta function call for todoTask resources in a todoTaskList is similar to a GET request, except that by appropriately applying state tokens in one or more of these calls, you can query for incremental changes in the todoTask in that todoTaskList. This allows you to maintain and synchronize a local store of a user's todoTask resources without having to fetch the entire set from the server every time. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/tasks/item/TodoTaskItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/tasks/item/TodoTaskItemRequestBuilder.java index e2fb13d33da..c0acf5b33cf 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/tasks/item/TodoTaskItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/tasks/item/TodoTaskItemRequestBuilder.java @@ -82,18 +82,16 @@ public TodoTaskItemRequestBuilder(@jakarta.annotation.Nonnull final String rawUr super(requestAdapter, "{+baseurl}/users/{user%2Did}/todo/lists/{todoTaskList%2Did}/tasks/{todoTask%2Did}{?%24expand,%24select}", rawUrl); } /** - * Deletes a todoTask object. + * Delete navigation property tasks for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Deletes a todoTask object. + * Delete navigation property tasks for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -102,21 +100,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a todoTask object. + * The tasks in this task list. Read-only. Nullable. * @return a {@link TodoTask} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TodoTask get() { return get(null); } /** - * Read the properties and relationships of a todoTask object. + * The tasks in this task list. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TodoTask} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TodoTask get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -126,23 +122,21 @@ public TodoTask get(@jakarta.annotation.Nullable final java.util.function.Consum return this.requestAdapter.send(requestInfo, errorMapping, TodoTask::createFromDiscriminatorValue); } /** - * Update the properties of a todoTask object. + * Update the navigation property tasks in users * @param body The request body * @return a {@link TodoTask} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TodoTask patch(@jakarta.annotation.Nonnull final TodoTask body) { return patch(body, null); } /** - * Update the properties of a todoTask object. + * Update the navigation property tasks in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link TodoTask} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public TodoTask patch(@jakarta.annotation.Nonnull final TodoTask body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -153,7 +147,7 @@ public TodoTask patch(@jakarta.annotation.Nonnull final TodoTask body, @jakarta. return this.requestAdapter.send(requestInfo, errorMapping, TodoTask::createFromDiscriminatorValue); } /** - * Deletes a todoTask object. + * Delete navigation property tasks for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -161,7 +155,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Deletes a todoTask object. + * Delete navigation property tasks for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -173,7 +167,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a todoTask object. + * The tasks in this task list. Read-only. Nullable. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -181,7 +175,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a todoTask object. + * The tasks in this task list. Read-only. Nullable. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -193,7 +187,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a todoTask object. + * Update the navigation property tasks in users * @param body The request body * @return a {@link RequestInformation} */ @@ -202,7 +196,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a todoTask object. + * Update the navigation property tasks in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -233,7 +227,7 @@ public TodoTaskItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final Stri public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a todoTask object. + * The tasks in this task list. Read-only. Nullable. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/tasks/item/attachments/AttachmentsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/tasks/item/attachments/AttachmentsRequestBuilder.java index 5a630116c4c..7d6cb94f503 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/tasks/item/attachments/AttachmentsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/tasks/item/attachments/AttachmentsRequestBuilder.java @@ -69,21 +69,19 @@ public AttachmentsRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl super(requestAdapter, "{+baseurl}/users/{user%2Did}/todo/lists/{todoTaskList%2Did}/tasks/{todoTask%2Did}/attachments{?%24count,%24filter,%24orderby,%24select,%24skip,%24top}", rawUrl); } /** - * Get a list of the taskFileAttachment objects and their properties. The contentBytes property will not be returned in the response. Use the Get attachment API to view the contentBytes. + * A collection of file attachments for the task. * @return a {@link AttachmentBaseCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentBaseCollectionResponse get() { return get(null); } /** - * Get a list of the taskFileAttachment objects and their properties. The contentBytes property will not be returned in the response. Use the Get attachment API to view the contentBytes. + * A collection of file attachments for the task. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttachmentBaseCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentBaseCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -93,23 +91,21 @@ public AttachmentBaseCollectionResponse get(@jakarta.annotation.Nullable final j return this.requestAdapter.send(requestInfo, errorMapping, AttachmentBaseCollectionResponse::createFromDiscriminatorValue); } /** - * Add a new taskFileAttachment object to a todoTask. This operation limits the size of the attachment you can add to under 3 MB. If the size of the file attachments is more than 3 MB, create an upload session to upload the attachments. + * Create new navigation property to attachments for users * @param body The request body * @return a {@link AttachmentBase} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentBase post(@jakarta.annotation.Nonnull final AttachmentBase body) { return post(body, null); } /** - * Add a new taskFileAttachment object to a todoTask. This operation limits the size of the attachment you can add to under 3 MB. If the size of the file attachments is more than 3 MB, create an upload session to upload the attachments. + * Create new navigation property to attachments for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttachmentBase} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentBase post(@jakarta.annotation.Nonnull final AttachmentBase body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -120,7 +116,7 @@ public AttachmentBase post(@jakarta.annotation.Nonnull final AttachmentBase body return this.requestAdapter.send(requestInfo, errorMapping, AttachmentBase::createFromDiscriminatorValue); } /** - * Get a list of the taskFileAttachment objects and their properties. The contentBytes property will not be returned in the response. Use the Get attachment API to view the contentBytes. + * A collection of file attachments for the task. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -128,7 +124,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get a list of the taskFileAttachment objects and their properties. The contentBytes property will not be returned in the response. Use the Get attachment API to view the contentBytes. + * A collection of file attachments for the task. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Add a new taskFileAttachment object to a todoTask. This operation limits the size of the attachment you can add to under 3 MB. If the size of the file attachments is more than 3 MB, create an upload session to upload the attachments. + * Create new navigation property to attachments for users * @param body The request body * @return a {@link RequestInformation} */ @@ -149,7 +145,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Add a new taskFileAttachment object to a todoTask. This operation limits the size of the attachment you can add to under 3 MB. If the size of the file attachments is more than 3 MB, create an upload session to upload the attachments. + * Create new navigation property to attachments for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -174,7 +170,7 @@ public AttachmentsRequestBuilder withUrl(@jakarta.annotation.Nonnull final Strin return new AttachmentsRequestBuilder(rawUrl, requestAdapter); } /** - * Get a list of the taskFileAttachment objects and their properties. The contentBytes property will not be returned in the response. Use the Get attachment API to view the contentBytes. + * A collection of file attachments for the task. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/tasks/item/attachments/item/AttachmentBaseItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/tasks/item/attachments/item/AttachmentBaseItemRequestBuilder.java index 96dcebbc0ef..1158f64514c 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/tasks/item/attachments/item/AttachmentBaseItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/tasks/item/attachments/item/AttachmentBaseItemRequestBuilder.java @@ -46,18 +46,16 @@ public AttachmentBaseItemRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/users/{user%2Did}/todo/lists/{todoTaskList%2Did}/tasks/{todoTask%2Did}/attachments/{attachmentBase%2Did}{?%24select}", rawUrl); } /** - * Delete a taskFileAttachment object from a todoTask resource. + * Delete navigation property attachments for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a taskFileAttachment object from a todoTask resource. + * Delete navigation property attachments for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -66,21 +64,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a taskFileAttachment object. + * A collection of file attachments for the task. * @return a {@link AttachmentBase} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentBase get() { return get(null); } /** - * Read the properties and relationships of a taskFileAttachment object. + * A collection of file attachments for the task. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link AttachmentBase} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public AttachmentBase get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -90,7 +86,7 @@ public AttachmentBase get(@jakarta.annotation.Nullable final java.util.function. return this.requestAdapter.send(requestInfo, errorMapping, AttachmentBase::createFromDiscriminatorValue); } /** - * Delete a taskFileAttachment object from a todoTask resource. + * Delete navigation property attachments for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -98,7 +94,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a taskFileAttachment object from a todoTask resource. + * Delete navigation property attachments for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -110,7 +106,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a taskFileAttachment object. + * A collection of file attachments for the task. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -118,7 +114,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a taskFileAttachment object. + * A collection of file attachments for the task. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -146,7 +142,7 @@ public AttachmentBaseItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fina public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a taskFileAttachment object. + * A collection of file attachments for the task. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/tasks/item/attachments/item/value/ContentRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/tasks/item/attachments/item/value/ContentRequestBuilder.java index 49b17cafef7..10ebb192178 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/tasks/item/attachments/item/value/ContentRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/tasks/item/attachments/item/value/ContentRequestBuilder.java @@ -39,7 +39,6 @@ public ContentRequestBuilder(@jakarta.annotation.Nonnull final String rawUrl, @j * Get media content for the navigation property attachments from users * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get() { @@ -50,7 +49,6 @@ public InputStream get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link InputStream} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public InputStream get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/tasks/item/checklistitems/ChecklistItemsRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/tasks/item/checklistitems/ChecklistItemsRequestBuilder.java index e7f7fea19f1..a695b5cd061 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/tasks/item/checklistitems/ChecklistItemsRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/tasks/item/checklistitems/ChecklistItemsRequestBuilder.java @@ -60,21 +60,19 @@ public ChecklistItemsRequestBuilder(@jakarta.annotation.Nonnull final String raw super(requestAdapter, "{+baseurl}/users/{user%2Did}/todo/lists/{todoTaskList%2Did}/tasks/{todoTask%2Did}/checklistItems{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get the checklistItem resources associated to a todoTask from the checklistItems navigation property. + * A collection of checklistItems linked to a task. * @return a {@link ChecklistItemCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChecklistItemCollectionResponse get() { return get(null); } /** - * Get the checklistItem resources associated to a todoTask from the checklistItems navigation property. + * A collection of checklistItems linked to a task. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChecklistItemCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChecklistItemCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public ChecklistItemCollectionResponse get(@jakarta.annotation.Nullable final ja return this.requestAdapter.send(requestInfo, errorMapping, ChecklistItemCollectionResponse::createFromDiscriminatorValue); } /** - * Create a new checklistItem object. + * Create new navigation property to checklistItems for users * @param body The request body * @return a {@link ChecklistItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChecklistItem post(@jakarta.annotation.Nonnull final ChecklistItem body) { return post(body, null); } /** - * Create a new checklistItem object. + * Create new navigation property to checklistItems for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChecklistItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChecklistItem post(@jakarta.annotation.Nonnull final ChecklistItem body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public ChecklistItem post(@jakarta.annotation.Nonnull final ChecklistItem body, return this.requestAdapter.send(requestInfo, errorMapping, ChecklistItem::createFromDiscriminatorValue); } /** - * Get the checklistItem resources associated to a todoTask from the checklistItems navigation property. + * A collection of checklistItems linked to a task. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get the checklistItem resources associated to a todoTask from the checklistItems navigation property. + * A collection of checklistItems linked to a task. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a new checklistItem object. + * Create new navigation property to checklistItems for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a new checklistItem object. + * Create new navigation property to checklistItems for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public ChecklistItemsRequestBuilder withUrl(@jakarta.annotation.Nonnull final St return new ChecklistItemsRequestBuilder(rawUrl, requestAdapter); } /** - * Get the checklistItem resources associated to a todoTask from the checklistItems navigation property. + * A collection of checklistItems linked to a task. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/tasks/item/checklistitems/item/ChecklistItemItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/tasks/item/checklistitems/item/ChecklistItemItemRequestBuilder.java index c8576214da7..99fe749d49b 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/tasks/item/checklistitems/item/ChecklistItemItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/tasks/item/checklistitems/item/ChecklistItemItemRequestBuilder.java @@ -37,18 +37,16 @@ public ChecklistItemItemRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/users/{user%2Did}/todo/lists/{todoTaskList%2Did}/tasks/{todoTask%2Did}/checklistItems/{checklistItem%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a checklistItem object. + * Delete navigation property checklistItems for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a checklistItem object. + * Delete navigation property checklistItems for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a checklistItem object. + * A collection of checklistItems linked to a task. * @return a {@link ChecklistItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChecklistItem get() { return get(null); } /** - * Read the properties and relationships of a checklistItem object. + * A collection of checklistItems linked to a task. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChecklistItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChecklistItem get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public ChecklistItem get(@jakarta.annotation.Nullable final java.util.function.C return this.requestAdapter.send(requestInfo, errorMapping, ChecklistItem::createFromDiscriminatorValue); } /** - * Update the properties of a checklistItem object. + * Update the navigation property checklistItems in users * @param body The request body * @return a {@link ChecklistItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChecklistItem patch(@jakarta.annotation.Nonnull final ChecklistItem body) { return patch(body, null); } /** - * Update the properties of a checklistItem object. + * Update the navigation property checklistItems in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link ChecklistItem} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public ChecklistItem patch(@jakarta.annotation.Nonnull final ChecklistItem body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public ChecklistItem patch(@jakarta.annotation.Nonnull final ChecklistItem body, return this.requestAdapter.send(requestInfo, errorMapping, ChecklistItem::createFromDiscriminatorValue); } /** - * Delete a checklistItem object. + * Delete navigation property checklistItems for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a checklistItem object. + * Delete navigation property checklistItems for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a checklistItem object. + * A collection of checklistItems linked to a task. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a checklistItem object. + * A collection of checklistItems linked to a task. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a checklistItem object. + * Update the navigation property checklistItems in users * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a checklistItem object. + * Update the navigation property checklistItems in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public ChecklistItemItemRequestBuilder withUrl(@jakarta.annotation.Nonnull final public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a checklistItem object. + * A collection of checklistItems linked to a task. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/tasks/item/linkedresources/LinkedResourcesRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/tasks/item/linkedresources/LinkedResourcesRequestBuilder.java index 59100feb8a2..9742069b55b 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/tasks/item/linkedresources/LinkedResourcesRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/tasks/item/linkedresources/LinkedResourcesRequestBuilder.java @@ -60,21 +60,19 @@ public LinkedResourcesRequestBuilder(@jakarta.annotation.Nonnull final String ra super(requestAdapter, "{+baseurl}/users/{user%2Did}/todo/lists/{todoTaskList%2Did}/tasks/{todoTask%2Did}/linkedResources{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", rawUrl); } /** - * Get information of one or more items in a partner application, based on which a specified task was created. The information is represented in a linkedResource object for each item. It includes an external ID for the item in the partner application, and if applicable, a deep link to that item in the application. + * A collection of resources linked to the task. * @return a {@link LinkedResourceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LinkedResourceCollectionResponse get() { return get(null); } /** - * Get information of one or more items in a partner application, based on which a specified task was created. The information is represented in a linkedResource object for each item. It includes an external ID for the item in the partner application, and if applicable, a deep link to that item in the application. + * A collection of resources linked to the task. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link LinkedResourceCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LinkedResourceCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -84,23 +82,21 @@ public LinkedResourceCollectionResponse get(@jakarta.annotation.Nullable final j return this.requestAdapter.send(requestInfo, errorMapping, LinkedResourceCollectionResponse::createFromDiscriminatorValue); } /** - * Create a linkedResource object to associate a specified task with an item in a partner application. For example, you can associate a task with an email item in Outlook that spurred the task, and you can create a linkedResource object to track its association. You can also create a linkedResource object while creating a task. + * Create new navigation property to linkedResources for users * @param body The request body * @return a {@link LinkedResource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LinkedResource post(@jakarta.annotation.Nonnull final LinkedResource body) { return post(body, null); } /** - * Create a linkedResource object to associate a specified task with an item in a partner application. For example, you can associate a task with an email item in Outlook that spurred the task, and you can create a linkedResource object to track its association. You can also create a linkedResource object while creating a task. + * Create new navigation property to linkedResources for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link LinkedResource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LinkedResource post(@jakarta.annotation.Nonnull final LinkedResource body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -111,7 +107,7 @@ public LinkedResource post(@jakarta.annotation.Nonnull final LinkedResource body return this.requestAdapter.send(requestInfo, errorMapping, LinkedResource::createFromDiscriminatorValue); } /** - * Get information of one or more items in a partner application, based on which a specified task was created. The information is represented in a linkedResource object for each item. It includes an external ID for the item in the partner application, and if applicable, a deep link to that item in the application. + * A collection of resources linked to the task. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -119,7 +115,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Get information of one or more items in a partner application, based on which a specified task was created. The information is represented in a linkedResource object for each item. It includes an external ID for the item in the partner application, and if applicable, a deep link to that item in the application. + * A collection of resources linked to the task. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -131,7 +127,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Create a linkedResource object to associate a specified task with an item in a partner application. For example, you can associate a task with an email item in Outlook that spurred the task, and you can create a linkedResource object to track its association. You can also create a linkedResource object while creating a task. + * Create new navigation property to linkedResources for users * @param body The request body * @return a {@link RequestInformation} */ @@ -140,7 +136,7 @@ public RequestInformation toPostRequestInformation(@jakarta.annotation.Nonnull f return toPostRequestInformation(body, null); } /** - * Create a linkedResource object to associate a specified task with an item in a partner application. For example, you can associate a task with an email item in Outlook that spurred the task, and you can create a linkedResource object to track its association. You can also create a linkedResource object while creating a task. + * Create new navigation property to linkedResources for users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -165,7 +161,7 @@ public LinkedResourcesRequestBuilder withUrl(@jakarta.annotation.Nonnull final S return new LinkedResourcesRequestBuilder(rawUrl, requestAdapter); } /** - * Get information of one or more items in a partner application, based on which a specified task was created. The information is represented in a linkedResource object for each item. It includes an external ID for the item in the partner application, and if applicable, a deep link to that item in the application. + * A collection of resources linked to the task. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/tasks/item/linkedresources/item/LinkedResourceItemRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/tasks/item/linkedresources/item/LinkedResourceItemRequestBuilder.java index e1a36889a33..22b183841ce 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/tasks/item/linkedresources/item/LinkedResourceItemRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/todo/lists/item/tasks/item/linkedresources/item/LinkedResourceItemRequestBuilder.java @@ -37,18 +37,16 @@ public LinkedResourceItemRequestBuilder(@jakarta.annotation.Nonnull final String super(requestAdapter, "{+baseurl}/users/{user%2Did}/todo/lists/{todoTaskList%2Did}/tasks/{todoTask%2Did}/linkedResources/{linkedResource%2Did}{?%24expand,%24select}", rawUrl); } /** - * Delete a linkedResource object. + * Delete navigation property linkedResources for users * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete() { delete(null); } /** - * Delete a linkedResource object. + * Delete navigation property linkedResources for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ public void delete(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { final RequestInformation requestInfo = toDeleteRequestInformation(requestConfiguration); @@ -57,21 +55,19 @@ public void delete(@jakarta.annotation.Nullable final java.util.function.Consume this.requestAdapter.sendPrimitive(requestInfo, errorMapping, Void.class); } /** - * Read the properties and relationships of a linkedResource object. + * A collection of resources linked to the task. * @return a {@link LinkedResource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LinkedResource get() { return get(null); } /** - * Read the properties and relationships of a linkedResource object. + * A collection of resources linked to the task. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link LinkedResource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LinkedResource get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -81,23 +77,21 @@ public LinkedResource get(@jakarta.annotation.Nullable final java.util.function. return this.requestAdapter.send(requestInfo, errorMapping, LinkedResource::createFromDiscriminatorValue); } /** - * Update the properties of a linkedResource object. + * Update the navigation property linkedResources in users * @param body The request body * @return a {@link LinkedResource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LinkedResource patch(@jakarta.annotation.Nonnull final LinkedResource body) { return patch(body, null); } /** - * Update the properties of a linkedResource object. + * Update the navigation property linkedResources in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link LinkedResource} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public LinkedResource patch(@jakarta.annotation.Nonnull final LinkedResource body, @jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { @@ -108,7 +102,7 @@ public LinkedResource patch(@jakarta.annotation.Nonnull final LinkedResource bod return this.requestAdapter.send(requestInfo, errorMapping, LinkedResource::createFromDiscriminatorValue); } /** - * Delete a linkedResource object. + * Delete navigation property linkedResources for users * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -116,7 +110,7 @@ public RequestInformation toDeleteRequestInformation() { return toDeleteRequestInformation(null); } /** - * Delete a linkedResource object. + * Delete navigation property linkedResources for users * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -128,7 +122,7 @@ public RequestInformation toDeleteRequestInformation(@jakarta.annotation.Nullabl return requestInfo; } /** - * Read the properties and relationships of a linkedResource object. + * A collection of resources linked to the task. * @return a {@link RequestInformation} */ @jakarta.annotation.Nonnull @@ -136,7 +130,7 @@ public RequestInformation toGetRequestInformation() { return toGetRequestInformation(null); } /** - * Read the properties and relationships of a linkedResource object. + * A collection of resources linked to the task. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} */ @@ -148,7 +142,7 @@ public RequestInformation toGetRequestInformation(@jakarta.annotation.Nullable f return requestInfo; } /** - * Update the properties of a linkedResource object. + * Update the navigation property linkedResources in users * @param body The request body * @return a {@link RequestInformation} */ @@ -157,7 +151,7 @@ public RequestInformation toPatchRequestInformation(@jakarta.annotation.Nonnull return toPatchRequestInformation(body, null); } /** - * Update the properties of a linkedResource object. + * Update the navigation property linkedResources in users * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link RequestInformation} @@ -188,7 +182,7 @@ public LinkedResourceItemRequestBuilder withUrl(@jakarta.annotation.Nonnull fina public class DeleteRequestConfiguration extends BaseRequestConfiguration { } /** - * Read the properties and relationships of a linkedResource object. + * A collection of resources linked to the task. */ @jakarta.annotation.Generated("com.microsoft.kiota") public class GetQueryParameters implements QueryParameters { diff --git a/src/main/java/com/microsoft/graph/generated/users/item/transitivememberof/TransitiveMemberOfRequestBuilder.java b/src/main/java/com/microsoft/graph/generated/users/item/transitivememberof/TransitiveMemberOfRequestBuilder.java index 1d46070e34f..c3f03ca445e 100644 --- a/src/main/java/com/microsoft/graph/generated/users/item/transitivememberof/TransitiveMemberOfRequestBuilder.java +++ b/src/main/java/com/microsoft/graph/generated/users/item/transitivememberof/TransitiveMemberOfRequestBuilder.java @@ -89,7 +89,6 @@ public TransitiveMemberOfRequestBuilder(@jakarta.annotation.Nonnull final String * The groups, including nested groups, and directory roles that a user is a member of. Nullable. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get() { @@ -100,7 +99,6 @@ public DirectoryObjectCollectionResponse get() { * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @return a {@link DirectoryObjectCollectionResponse} * @throws ODataError When receiving a 4XX or 5XX status code - * @see Find more info here */ @jakarta.annotation.Nullable public DirectoryObjectCollectionResponse get(@jakarta.annotation.Nullable final java.util.function.Consumer requestConfiguration) { From 28d7cc7e9555b6ee631e51094110f9bb7945c8d7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Apr 2024 05:16:33 +0000 Subject: [PATCH 19/25] build(deps): bump com.microsoft.graph:microsoft-graph-core Bumps [com.microsoft.graph:microsoft-graph-core](https://github.com/microsoftgraph/msgraph-sdk-java-core) from 3.1.8 to 3.1.9. - [Release notes](https://github.com/microsoftgraph/msgraph-sdk-java-core/releases) - [Changelog](https://github.com/microsoftgraph/msgraph-sdk-java-core/blob/dev/CHANGELOG.md) - [Commits](https://github.com/microsoftgraph/msgraph-sdk-java-core/compare/v3.1.8...v3.1.9) --- updated-dependencies: - dependency-name: com.microsoft.graph:microsoft-graph-core dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- gradle/dependencies.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/dependencies.gradle b/gradle/dependencies.gradle index 120ed2f6c4d..bf95fe0c56b 100644 --- a/gradle/dependencies.gradle +++ b/gradle/dependencies.gradle @@ -8,7 +8,7 @@ dependencies { implementation 'jakarta.annotation:jakarta.annotation-api:3.0.0' // Core Http library - api 'com.microsoft.graph:microsoft-graph-core:3.1.8' + api 'com.microsoft.graph:microsoft-graph-core:3.1.9' implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.1.6' implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.1.6' implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.1.6' From 099aae58eb6b86e8c6a31d0ab2342bcf2d105a35 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Apr 2024 05:31:23 +0000 Subject: [PATCH 20/25] build(deps): bump com.microsoft.graph:microsoft-graph-core in /android Bumps [com.microsoft.graph:microsoft-graph-core](https://github.com/microsoftgraph/msgraph-sdk-java-core) from 3.1.8 to 3.1.9. - [Release notes](https://github.com/microsoftgraph/msgraph-sdk-java-core/releases) - [Changelog](https://github.com/microsoftgraph/msgraph-sdk-java-core/blob/dev/CHANGELOG.md) - [Commits](https://github.com/microsoftgraph/msgraph-sdk-java-core/compare/v3.1.8...v3.1.9) --- updated-dependencies: - dependency-name: com.microsoft.graph:microsoft-graph-core dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- gradle/dependencies.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle/dependencies.gradle b/gradle/dependencies.gradle index 120ed2f6c4d..bf95fe0c56b 100644 --- a/gradle/dependencies.gradle +++ b/gradle/dependencies.gradle @@ -8,7 +8,7 @@ dependencies { implementation 'jakarta.annotation:jakarta.annotation-api:3.0.0' // Core Http library - api 'com.microsoft.graph:microsoft-graph-core:3.1.8' + api 'com.microsoft.graph:microsoft-graph-core:3.1.9' implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.1.6' implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.1.6' implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.1.6' From ca5122a7fc5bca909be854bf09656396717a3b9d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Apr 2024 06:09:29 +0000 Subject: [PATCH 21/25] build(deps): bump the kiota-dependencies group Bumps the kiota-dependencies group in /android with 6 updates: | Package | From | To | | --- | --- | --- | | [com.microsoft.kiota:microsoft-kiota-authentication-azure](https://github.com/microsoft/kiota-java) | `1.1.6` | `1.1.7` | | [com.microsoft.kiota:microsoft-kiota-http-okHttp](https://github.com/microsoft/kiota-java) | `1.1.6` | `1.1.7` | | [com.microsoft.kiota:microsoft-kiota-serialization-json](https://github.com/microsoft/kiota-java) | `1.1.6` | `1.1.7` | | [com.microsoft.kiota:microsoft-kiota-serialization-text](https://github.com/microsoft/kiota-java) | `1.1.6` | `1.1.7` | | [com.microsoft.kiota:microsoft-kiota-serialization-form](https://github.com/microsoft/kiota-java) | `1.1.6` | `1.1.7` | | [com.microsoft.kiota:microsoft-kiota-serialization-multipart](https://github.com/microsoft/kiota-java) | `1.1.6` | `1.1.7` | Updates `com.microsoft.kiota:microsoft-kiota-authentication-azure` from 1.1.6 to 1.1.7 - [Release notes](https://github.com/microsoft/kiota-java/releases) - [Changelog](https://github.com/microsoft/kiota-java/blob/main/CHANGELOG.md) - [Commits](https://github.com/microsoft/kiota-java/compare/v1.1.6...v1.1.7) Updates `com.microsoft.kiota:microsoft-kiota-http-okHttp` from 1.1.6 to 1.1.7 - [Release notes](https://github.com/microsoft/kiota-java/releases) - [Changelog](https://github.com/microsoft/kiota-java/blob/main/CHANGELOG.md) - [Commits](https://github.com/microsoft/kiota-java/compare/v1.1.6...v1.1.7) Updates `com.microsoft.kiota:microsoft-kiota-serialization-json` from 1.1.6 to 1.1.7 - [Release notes](https://github.com/microsoft/kiota-java/releases) - [Changelog](https://github.com/microsoft/kiota-java/blob/main/CHANGELOG.md) - [Commits](https://github.com/microsoft/kiota-java/compare/v1.1.6...v1.1.7) Updates `com.microsoft.kiota:microsoft-kiota-serialization-text` from 1.1.6 to 1.1.7 - [Release notes](https://github.com/microsoft/kiota-java/releases) - [Changelog](https://github.com/microsoft/kiota-java/blob/main/CHANGELOG.md) - [Commits](https://github.com/microsoft/kiota-java/compare/v1.1.6...v1.1.7) Updates `com.microsoft.kiota:microsoft-kiota-serialization-form` from 1.1.6 to 1.1.7 - [Release notes](https://github.com/microsoft/kiota-java/releases) - [Changelog](https://github.com/microsoft/kiota-java/blob/main/CHANGELOG.md) - [Commits](https://github.com/microsoft/kiota-java/compare/v1.1.6...v1.1.7) Updates `com.microsoft.kiota:microsoft-kiota-serialization-multipart` from 1.1.6 to 1.1.7 - [Release notes](https://github.com/microsoft/kiota-java/releases) - [Changelog](https://github.com/microsoft/kiota-java/blob/main/CHANGELOG.md) - [Commits](https://github.com/microsoft/kiota-java/compare/v1.1.6...v1.1.7) --- updated-dependencies: - dependency-name: com.microsoft.kiota:microsoft-kiota-authentication-azure dependency-type: direct:production update-type: version-update:semver-patch dependency-group: kiota-dependencies - dependency-name: com.microsoft.kiota:microsoft-kiota-http-okHttp dependency-type: direct:production update-type: version-update:semver-patch dependency-group: kiota-dependencies - dependency-name: com.microsoft.kiota:microsoft-kiota-serialization-json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: kiota-dependencies - dependency-name: com.microsoft.kiota:microsoft-kiota-serialization-text dependency-type: direct:production update-type: version-update:semver-patch dependency-group: kiota-dependencies - dependency-name: com.microsoft.kiota:microsoft-kiota-serialization-form dependency-type: direct:production update-type: version-update:semver-patch dependency-group: kiota-dependencies - dependency-name: com.microsoft.kiota:microsoft-kiota-serialization-multipart dependency-type: direct:production update-type: version-update:semver-patch dependency-group: kiota-dependencies ... Signed-off-by: dependabot[bot] --- gradle/dependencies.gradle | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/gradle/dependencies.gradle b/gradle/dependencies.gradle index bf95fe0c56b..62475d92f98 100644 --- a/gradle/dependencies.gradle +++ b/gradle/dependencies.gradle @@ -9,10 +9,10 @@ dependencies { // Core Http library api 'com.microsoft.graph:microsoft-graph-core:3.1.9' - implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.1.6' - implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.1.6' - implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.1.6' - implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.1.6' - implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.1.6' - implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.1.6' + implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.1.7' + implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.1.7' + implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.1.7' + implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.1.7' + implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.1.7' + implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.1.7' } From f4d06ab0a3161aaea389123b412ec22da186e3af Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Apr 2024 08:45:42 +0000 Subject: [PATCH 22/25] build(deps): bump com.microsoft.graph:microsoft-graph-core Bumps [com.microsoft.graph:microsoft-graph-core](https://github.com/microsoftgraph/msgraph-sdk-java-core) from 3.1.8 to 3.1.9. - [Release notes](https://github.com/microsoftgraph/msgraph-sdk-java-core/releases) - [Changelog](https://github.com/microsoftgraph/msgraph-sdk-java-core/blob/dev/CHANGELOG.md) - [Commits](https://github.com/microsoftgraph/msgraph-sdk-java-core/compare/v3.1.8...v3.1.9) --- updated-dependencies: - dependency-name: com.microsoft.graph:microsoft-graph-core dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 67176e1cf80..d06bde26de0 100644 --- a/pom.xml +++ b/pom.xml @@ -30,7 +30,7 @@ com.microsoft.graph microsoft-graph-core - 3.1.8 + 3.1.9 org.junit.jupiter From a3aac4144e0e657875fdfc5d9bf81460ab7f5d5b Mon Sep 17 00:00:00 2001 From: Philip Gichuhi Date: Wed, 24 Apr 2024 18:12:12 +0300 Subject: [PATCH 23/25] Bump version --- README.md | 3 ++- gradle.properties | 3 ++- src/main/java/com/microsoft/graph/info/Constants.java | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1116305e892..aac1569932d 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ repositories { dependencies { // Include the sdk as a dependency // x-release-please-start-version - implementation 'com.microsoft.graph:microsoft-graph:6.6.0' + implementation 'com.microsoft.graph:microsoft-graph:6.7.0' // x-release-please-end // This dependency is only needed if you are using a TokenCredential object for authentication implementation 'com.azure:azure-identity:1.11.0' @@ -125,3 +125,4 @@ Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the [MI + diff --git a/gradle.properties b/gradle.properties index 3cb5da81c90..963b17e521d 100644 --- a/gradle.properties +++ b/gradle.properties @@ -29,7 +29,7 @@ mavenArtifactId = microsoft-graph mavenMajorVersion = 6 # x-release-please-end # x-release-please-start-minor -mavenMinorVersion = 6 +mavenMinorVersion = 7 # x-release-please-end # x-release-please-start-patch mavenPatchVersion = 0 @@ -132,5 +132,6 @@ mavenCentralPublishingEnabled=true + diff --git a/src/main/java/com/microsoft/graph/info/Constants.java b/src/main/java/com/microsoft/graph/info/Constants.java index 62059f7adad..34b0cd6ad9e 100644 --- a/src/main/java/com/microsoft/graph/info/Constants.java +++ b/src/main/java/com/microsoft/graph/info/Constants.java @@ -4,7 +4,8 @@ public final class Constants { /** The SDK version */ // x-release-please-start-version - public static final String VERSION_NAME = "6.6.0"; + public static final String VERSION_NAME = "6.7.0"; // x-release-please-end } + From a1dde49265fe6daf0c62862789ba4666a4cf2f15 Mon Sep 17 00:00:00 2001 From: Philip Gichuhi Date: Wed, 24 Apr 2024 18:14:28 +0300 Subject: [PATCH 24/25] Update CHANGELOG --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d98af2b77dd..e8a5b0bb0e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. +## [6.7.0] - 2024-04-24 + +### Added + +- Weekly generated v1.0 models and request builders using Kiota + ## [6.6.0] - 2024-04-16 ### Added From ea1a4c7471276f00662bd73741c4fa88bff35359 Mon Sep 17 00:00:00 2001 From: Philip Gichuhi Date: Wed, 24 Apr 2024 18:15:52 +0300 Subject: [PATCH 25/25] Bump kiota and graph core dependencies --- gradle/dependencies.gradle | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/gradle/dependencies.gradle b/gradle/dependencies.gradle index 120ed2f6c4d..62475d92f98 100644 --- a/gradle/dependencies.gradle +++ b/gradle/dependencies.gradle @@ -8,11 +8,11 @@ dependencies { implementation 'jakarta.annotation:jakarta.annotation-api:3.0.0' // Core Http library - api 'com.microsoft.graph:microsoft-graph-core:3.1.8' - implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.1.6' - implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.1.6' - implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.1.6' - implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.1.6' - implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.1.6' - implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.1.6' + api 'com.microsoft.graph:microsoft-graph-core:3.1.9' + implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.1.7' + implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.1.7' + implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.1.7' + implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.1.7' + implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.1.7' + implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.1.7' }